/*home page start*/
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family:'Times New Roman', Times, serif;
    
    /* Ensure all elements have no margin or padding and use border-box for box-sizing */
}

body {
    margin: 0;
    
    
    /* Remove default margin from the body */
}

/*home page starts*/
/*navbar start*/
/*navbar start*/
nav {
    width: 100%;
    background: linear-gradient(to right, #0f5d8e,#85c226);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    padding-left: 20px;
    padding-right: 350px;
    z-index: 999;
    font-size: 25px;
    /* Style the navigation bar with full width, background gradient, flex layout, and padding */
}
nav img, nav h2 {
    display: inline-block;
    vertical-align: middle;
  }
  
  nav h2 {
    
    font-size: 35px;
    color: white;
  }

#icon {
    width: 60px;
    
    /* Set width for the navigation icon */
}

#nav-links {
    list-style: none;
    margin-left: auto;
    padding: 0;
    display: flex;
    width: 25%;
    /* Style the navigation links container with no list style, margin, or padding, and display as flex */
}

#nav-links li {
    margin: 0 10px;
    /* Set margin between navigation links */
}

#nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    display: block;
    /* Style the links with white color, no text decoration, padding, and block display */
}

#toggle-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    /* Style the toggle button for small screens */
}
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
    /* Initially hide the dropdown menu and style it */
}

.dropdown-menu.active {
    display: block;
    /* Display the dropdown menu when the active class is added */
}

.dropdown-menu li {
    border-bottom: 1px solid #85c226;
    /* Add border to the dropdown items */
}

.dropdown-menu li:last-child {
    border-bottom: none;
    /* Remove border from the last dropdown item */
}

.dropdown-menu a {
    padding: 10px;
    /* Add padding to the dropdown links */
}
/* Large screens (Desktops) */
@media only screen and (min-width: 1200px) and (orientation: portrait) {
  nav {
    padding-right: 350px;
  }
  #nav-links {
    width: 25%;
  }
}

/* Medium screens (Laptops) */
@media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
  nav {
    padding-right: 250px;
  }
  #nav-links {
    width: 30%;
  }
}

/* mediam screens (Tablets) */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  nav {
    padding-right: 373px;
    width: 700px;
  }
  nav h2{
      font-size: 30px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 70px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) and (orientation: portrait) {
   nav {
    padding-right: 373px;
    width: 920px;
  }
  nav h2{
      font-size: 30px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 70px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/*Tablet small*/
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: portrait) {
    nav {
    padding-right: 373px;
    width: 750px;
  }
  nav h2{
      font-size: 30px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 100px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/*small mobile*/
@media only screen and (max-width: 375px) and (orientation: portrait) {
   nav {
    padding-right: 373px;
    width: 410px;
    
  }
  nav h2{
      font-size: 10px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 70px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/* mediam mobile*/
@media only screen and (max-width: 320px) and (orientation: portrait) {
    nav {
        padding-right: 60px;
        width: 410px;
        
    }
    
    #icon {
        width: 50px;
    }
    nav h2 {
        font-size: 30px;
        margin-left: 5px;
    }
    #nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hide nav links by default on small screens */
    }
    #nav-links.active {
        display: flex; /* Show nav links when toggle button is active */
    }
    #nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    #toggle-btn {
    display: block;
    position: relative;
    left: 20px;
    }
}
/*large mna*/
@media only screen and (max-width: 425px) and (orientation: portrait) {
    nav {
    padding-right: 373px;
    width: 460px;
    font-size: 20px;
  }
  nav h2{
      font-size: 20px;
      margin-left: 10px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 140px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}


/*navbar end */

/*whatsapp link*/
.whatsapp_float {
    position: fixed;
    bottom: 40px;
    right: 20px;
    display: block;
    z-index: 9999;
}
/*phone link*/
.phonenum {
    position: fixed;
    bottom: 80px;
    right: -9px;
    display: block;
    z-index: 9999;
    
}

/*text and bg img start*/
@keyframes slideShow {
    0% {
        background-image: url('img/slider2.jpg');
    }
    
    40% {
        background-image: url('img/slider1.jpg');
        

    }
    80%{
        background-image: url('img/slider3.jpg');
        
    }
    
    100% {
        background-image: url('img/bg.png');
    }
}

.textbg {
    padding: 0px 20px 100px;
    background-size: cover;
    background-position: center;
    text-align: left;
    min-height: 1000px;
    display: flex;
    align-items: center;
    animation: slideShow 30s infinite;
    /* Add sliding background images animation */
}

.textbox {
    max-width: 600px;
    
    padding: 20px;
    border-radius: 8px;
    /* Style the text box with a max-width, background color, padding, and rounded corners */
}

.textbox h1 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 70px;
    color: #0f5d8e;
}




.textbox p {
    margin-bottom: 20px;
    font-size: 25px;
    text-align: justify;
    
    background-blend-mode: lighten;
    /* Style the paragraph inside the text box */
}

.textbox a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(to right, #85c226, #0f5d8e);
    padding: 10px 30px;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #85c226;
    /* Style the call-to-action link inside the text box */
}

.textbox a:hover {
    color: #0f5d8e;
    background: none;
}
/*mobile */
@media screen and (max-width: 767px) and (orientation: portrait) {
    /* Styles for screens smaller than 768px (e.g., mobile phones) */
    .textbg {
        padding: 145px 10px 50px;
        min-height: auto;
    }
    .textbox {
        max-width: 100%;
    }
    .textbox h1 {
        font-size: 50px;
    }
    .textbox p {
        font-size: 20px;
    }
    .textbox a {
        font-size: 20px;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
    /* Styles for screens between 768px and 991px (e.g., tablets) */
    .textbg {
        padding: 0 20px 80px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
    /* Styles for screens between 992px and 1199px (e.g., small laptops) */
    .textbg {
        padding: 0 40px 100px;
    }
}

@media screen and (min-width: 1200px) and (orientation: portrait) {
    /* Styles for screens larger than 1199px (e.g., desktops and extra-large screens) */
    .textbg {
        padding: 0 60px 120px;
    }
}


/*text in bg end*/
/*About section start*/
/* Base styles */
section {
    padding: 100px 0;
    
}

.about .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    text-align: center;
    color: #0f5d8e;
}

.about .title::before {
    content: '';
    position: absolute;
    width: 200px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.about .title::after {
    content: 'WHO WE ARE';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}

.about .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    perspective: 1000px;
    
}
@keyframes openBook {
    0% {
      transform: rotateY(-90deg); /* initial state */
    }
    
    100% {
      transform: rotateY(0deg); /* final state */
    }
  }
.about .about-content .right {
    width: 50%;
    color: white;
    padding-top: 200px;
    padding-right: 200px;
    transform-origin: left; /* set the transform origin to the left */
    backface-visibility: hidden; /* prevent the backface from being visible */
    transform: translateX(-100%) rotateY(-90deg); /* initial state */
    animation: openPage 1s forwards ; /* add animation */
    animation-delay: 0.1s; /* add a delay to start the animation */
}
@keyframes openPage {
    0% {
      transform: translateX(-100%) rotateY(-90deg); /* initial state */
    }
    
    100% {
      transform: translateX(0) rotateY(0deg); /* final state */
    }
  }
.about .about-content .right .text {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 10px;
    
}

.about .about-content .right p {
    text-align: justify;
    font-size: 25px;
}

.about .about-content .right a {
    display: inline-block;
    text-decoration: none;
    color: white;
    background-image: linear-gradient(to right, #85c226, #0f5d8e);
    padding: 10px 30px;
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #85c226;
}
.right .text{
    transform: rotateY(-90deg); /* initial state */
    animation: openBook 10s forwards infinite alternate; /* add animation */
    animation-delay: 0s; /* add a delay to start the animation */
}

.about .about-content .right a:hover {
    color: #0f5d8e;
    background: none;
}

.about .max-width {
    max-width: 2000px;
    padding: 0 10px;
    margin: auto;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about .about-content .right {
        width: 100%;
        padding: 0 20px;
        color: #000;
    }

    .about .about-content .right .text {
        font-size: 40px;
    }

    .about .about-content .right p {
        font-size: 17px;
        padding: 0 10px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    .about .about-content .right a {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) and (orientation: portrait) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about .about-content .right {
        width: 100%;
        padding: 0 20px;
        color: #000;
        
    }

    .about .about-content .right .text {
        font-size: 40px;
        
    }

    .about .about-content .right p {
        font-size: 20px;
        padding: 0 10px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    .about .about-content .right a {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}


.logo .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-align: center;
    color: #0f5d8e;
}


.logo .title::before {
    content: '';
    position: absolute;
    width: 300px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.logo .title::after {
    content: 'UNITY FOR SUCCESS';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}

.logos {
    background: linear-gradient(to right, #85c226, #0f5d8e);
    overflow: hidden;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logos-slide {
    display: flex;
    width: calc(100% * 16); /* 16 logos */
    animation: slide 10s linear infinite; /* Adjusted duration for smoother transition */
}

.logos-slide img {
    height: 100px;
    margin: 0 20px; /* Adjust margin for better spacing */
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-10%); /* Slide through half the width (8 logos) */
    }
}


/* our achivements start*/

.counter-container .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 45px;
    text-align: center;
    color: #0f5d8e;
}


.counter-container .title::before {
    content: '';
    position: absolute;
    width: 300px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.counter-container .title::after {
    content: 'SUCCESS POINTS';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}
.counter-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    height: 300px; /* Adjusted height for the new text block */
    
}
.counters {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.counter {
    text-align: center;
}
.number {
    font-size: 3em;
    color: #101010;
}
.label {
    font-size: 1.5em;
    background: linear-gradient(to right, #94e316, #0598f3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/*about ends*/
/*logo start*/


/*logo ends*/
/* services in home page start*/

.servicehome .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-align: center;
    color: #0f5d8e;
}


.servicehome .title::before {
    content: '';
    position: absolute;
    width: 400px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.servicehome .title::after {
    content: 'OUR OFFERING';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}
.services {
    padding: 5% 10% 5% 1%;
    max-width: 100%;
    margin: auto;
    background: linear-gradient(144deg, #aced44 40%, #246ebc 39%);
    
}

.services h1:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 15px;
    height: 3px;
    background-color: aliceblue;
}

.cards {
    display: grid;
    
    grid-template-columns: repeat(3, 1fr); /* Three columns layout */
    gap: 70px;
    width: 1350px;
    
    filter: drop-shadow(-19px 19px 13px #0b0b0b); 
    /*animation: card 8s ease 2s infinite normal forwards; */
    
}

.card {
    background-color: white;
    border-radius: 25px;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s;
    position: relative;
    width: 100%;
    padding-top: 100%; /* This makes the card a square */
}
@keyframes card {
    0% {
        animation-timing-function: ease-in;
        opacity: 0;
        transform: translateY(-250px);
    }

    2.15% {
        animation-timing-function: ease-out;
        opacity: 1;
        transform: translateY(0);
    }

    2.96% {
        animation-timing-function: ease-in;
        transform: translateY(-65px);
    }

    3.87% {
        animation-timing-function: ease-out;
        transform: translateY(0);
    }

    4.03% {
        transform: translateY(0); /* Start of pause */
    }

    96.77% {
        transform: translateY(0); /* End of pause */
    }

    96.77% {
        animation-timing-function: ease-in;
        transform: translateY(-28px);
    }

    98.92% {
        animation-timing-function: ease-out;
        transform: translateY(0);
    }

    99.46% {
        animation-timing-function: ease-in;
        transform: translateY(-8px);
    }

    100% {
        animation-timing-function: ease-out;
        transform: translateY(0);
    }
}
.card:hover {
    transform: scale(1.05);
}

.sbox {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.sbox i {
    font-size: 30px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: #090909;
    color: white;
    transition: background 0.3s, color 0.3s;
    
}

.sbox h3 {
    font-size: 30px;
    margin: 10px 0;
}

.sbox p {
    margin: 20px;
    text-align: justify;
    
   
}

.sbox a {
    text-decoration: none;
    color: #85c226;
    font-size: 18px;
    font-weight: 500;
    background: white;
    padding: 7px 15px;
    border-radius: 15px;
    transition: background 0.3s, transform 0.3s;
}

.sbox a:hover {
    background: transparent;
    border: 1px solid #85c226;
    transform: scale(1.1);
}

.card:hover .sbox i {
    background: rgb(243, 245, 244);
    color: #0f5d8e;
}

.card:after {
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: 0.5s;
}

.card:hover:after {
    transform: rotate(13deg);
    background-color: #8dcaf0;
}
.sbox:hover a{
    background-color: #ffff;
    
}

/* Responsive adjustments */

@media screen and (max-width: 1200px) and (orientation: portrait) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens smaller than 1200px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }
}
@media screen and (max-width: 608px) and (max-height: 990px) and (orientation: portrait) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens smaller than 1200px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 45px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 16px; /* Decreasing link size */
    }
}

@media screen and (max-width: 768px) and (orientation: portrait) {
    .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: portrait) {
  .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 25px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 20px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media screen and (max-width: 480px) and (orientation: portrait) {
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens between 768px and 1024px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }

    .services {
        padding: 20px; /* Adjusting padding for tablet screens */
    }

    .sbox i {
        font-size: 24px; /* Adjusting icon size for tablet screens */
    }

    .sbox h3 {
        font-size: 20px; /* Adjusting heading size for tablet screens */
    }

    .sbox p {
        font-size: 16px; /* Adjusting paragraph size for tablet screens */
    }

    .sbox a {
        font-size: 18px; /* Adjusting link size for tablet screens */
    }
}
@media screen and (min-width: 1500px) and (max-width: 3000px) and (orientation: portrait) {
    .cards {
        grid-template-columns: repeat(3, 1fr); /* Two columns layout for screens between 768px and 1024px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
        
        
    }

    .services {
        padding: 20px ; /* Adjusting padding for tablet screens */
    }

    .sbox i {
        font-size: 24px; /* Adjusting icon size for tablet screens */
    }

    .sbox h3 {
        font-size: 30px; /* Adjusting heading size for tablet screens */
    }

    .sbox p {
        font-size: 25px; /* Adjusting paragraph size for tablet screens */
    }

    .sbox a {
        font-size: 18px; /* Adjusting link size for tablet screens */
    }
}

/*home page ends*/





/*footer start*/
footer {
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #85c226, #0f5d8e);
    color: #fff;
    padding: 60px 0px 30px;
    border-top-left-radius: 125px;
    border-top-right-radius: 125px;
    font-size: 20px;
    line-height: 20px; 
   
    /* Style the footer with full width, background gradient, padding, and rounded top corners */
}

footer .row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    

    /* Style the row within the footer with width, margin, and flex properties */
}

footer .col {
    flex-basis: 25%;
    padding: 10px;
    
    /* Style the columns in the footer */
}


footer .col:nth-child(2), .col:nth-child(3), .col:nth-child(4) {
    flex-basis: 5%;
    /* Adjust flex-basis for specific columns */
}

footer .col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    
    /* Style the headings in the footer columns */
}


footer .col ul li {
    list-style: none;
    margin-bottom: 12px;
    
    /* Style the list items in the footer columns */
}

footer .col ul li a {
    text-decoration: none;
    color: white;
    /* Style the links in the footer columns */
}
footer .col p a{
    text-decoration: none;
    color: #fff; 
    
}



.social-icons .fa-brands {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 30px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
    /* Style the social media icons */
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #fff;
    margin: 20px auto;
    /* Style the horizontal rule in the footer */
}

.copyright {
    text-align: center;
    /* Center the copyright text */
}

.underline {
    width: 100%;
    height: 5px;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0px;
    overflow: hidden;
    /* Style the underline effect */
}

.underline span {
    width: 25px;
    height: 100%;
    background: #000;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moving 2s linear infinite;
    /* Style the moving span for underline effect */
}

@keyframes moving {
    0% {
        left: -20px;
    }
    100% {
        left: 100%;
    }
    /* Define keyframes for moving animation */
}

/* For screens up to 767px (mobile) */
@media (max-width: 767px) and (orientation: portrait) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 100%;
    }
}

/* For screens between 768px and 991px (tablet) */
@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 50%;
    }
}

/* For screens between 992px and 1199px (laptop) */
@media (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
    .row {
        width: 90%;
    }
    .col {
        flex-basis: 33.33%;
    }
}

/* For screens between 1200px and 1439px (desktop) */
@media (min-width: 1200px) and (max-width: 1439px) and (orientation: portrait) {
    .row {
        width: 80%;
    }
    .col {
        flex-basis: 25%;
    }
}

/* For screens above 1440px (extra-large screens) */
@media (min-width: 1440px) and (max-width:1800px) and (orientation: portrait) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 10%;
    }
}

/*footer end*/



/*about us page start*/
.aboutpg {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}
.aboutpg .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.aboutpg .title::before {
    content: '';
    position: absolute;
    width: 200px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}

.aboutpg-content {
    flex: 3;
    padding: 30px;
}
.aboutpg p{
    text-align: justify;
    font-size: 25px;
    padding:0 0 0 40px;
    
}



.form-container {
    flex: 2;
    border: 2px;

    
}
.form-container h2{
    padding: 20px 0 0px 0;
    text-align: center;
    
}
.form-container .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.form-container .title::before {
    content: '';
    position: absolute;
    width: 320px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}
.allforms{
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow :  5px 5px 10px 10px rgb(123, 128, 125);
    width: 60%;
    margin-left: 140px;
}

.allforms label {
    margin-top: 20px;
    font-size: 20px;
    box-shadow: 10px;
}

.allforms input, .message {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 2px rgb(159, 175, 204);;
    border-radius: 30px 30px 30px 30px;
}

.allforms .submit-button1 {
    margin-top: 20px;
    padding: 10px;
    background:linear-gradient(to right, #94e316,#0f5d8e);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 30px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 2px rgb(159, 175, 204);;
    border-radius: 30px 30px 30px 30px;
}

.submit-button1 :hover {
    background-color: #0056b3;
}
@media screen and (max-width: 480px) and (orientation: portrait) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}

/* Tablets and iPads (portrait and landscape) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    .allforms {
        width: 70%;
        margin: 0 auto;
        padding: 30px;
    }

    .form-container .title {
        font-size: 35px;
    }

    .form-container .title::before {
        width: 280px;
    }
}

/* Laptops and Desktops */
@media screen and (min-width: 1025px) and (orientation: portrait) {
    .allforms {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container .title {
        font-size: 40px;
    }

    .form-container .title::before {
        width: 320px;
    }
}
@media screen and (min-width: 800px) and (max-width: 2000px) and (orientation: portrait) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}

/* Mission and Vision section */
section {
    padding: 100px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #000;
}

.mission1 .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    text-align: center;
    color: #0f5d8e;
}

.mission1 .title::before {
    content: '';
    position: absolute;
    width: 200px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.mission1 .title::after {
    content: 'TRUST US';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}
/* Keyframes for fade-in */

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(30px);
    }
    100% {
        transform: translateY(0);
    }
}

.mission {
    background-image: url('img/vission2.jpg');
    background-repeat: no-repeat;
    background-size: 2000px;
}

.mission .mission-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.mission .mission-content .left {
    padding: 20px;
    border-radius: 10px;
    margin-left: auto;
    width: 60%;
    animation: float 2s infinite;
}

.mission .mission-content .left .text {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 10px;
}

.mission .mission-content .left p {
    text-align: justify;
    font-size: 25px;
}

.mission .max-width {
    max-width: 1700px;
    padding: 0 10px;
    margin: auto;
}


/* Media Queries for Responsive Design */
@media (max-width: 1200px) and (orientation: portrait) {
    .mission .mission-content .left {
        width: 50%;
    }

    .mission .mission-content .left .text {
        font-size: 50px;
    }

    .mission .mission-content .left p {
        font-size: 20px;
    }
}

@media (max-width: 992px) and (orientation: portrait) {
    .mission .mission-content .left {
        width: 60%;
    }

    .mission .mission-content .left .text {
        font-size: 45px;
    }

    .mission .mission-content .left p {
        font-size: 18px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .mission .mission-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission .mission-content .left {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
        animation: none; /* Disable slide-in animation for mobile view */
    }

    .mission .mission-content .left .text {
        font-size: 40px;
    }

    .mission .mission-content .left p {
        font-size: 16px;
    }

    .mission {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    section {
        padding: 50px 0;
    }

    .mission1 .title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .mission1 .title::before {
        width: 150px;
    }

    .mission1 .title::after {
        font-size: 16px;
    }

    .mission .mission-content .left .text {
        font-size: 35px;
    }

    .mission .mission-content .left p {
        font-size: 14px;
    }

    .mission {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

section {
    padding: 50px 0;
}

.vision1 .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    text-align: center;
    color: #0f5d8e;
}

.vision1 .title::before {
    content: '';
    position: absolute;
    width: 350px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.vision1 .title::after {
    content: 'PEAK QUEST';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}
/* Keyframes for pulse */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.03);
    }
    100% {
        transform: scale(1);
    }
}

/* Keyframes for bounce-in */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.vision {
    background-image: url('img/mission2.jpg');
    bottom: 90px;
    
}

.vision .vision-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
    animation: pulse 20s infinite; /* Apply pulse animation */
}

.vision .vision-content .right {
    width: 45%;
    padding: 20px;
    border-radius: 10px;
    margin-right: auto; /* Move to the right */
    width: 45%;
    animation: bounceIn 2s ease-out; /* Apply bounce-in animation */
}

.vision .vision-content .right .text {
    font-size: 65px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vision .vision-content .right p {
    text-align: justify;
    font-size: 25px;
}

.vision .max-width {
    max-width: 1900px;
    padding: 0 10px;
    margin: auto;
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) and (orientation: portrait) {
    .vision .vision-content .right {
        width: 50%;
    }

    .vision .vision-content .right .text {
        font-size: 50px;
    }

    .vision .vision-content .right p {
        font-size: 20px;
    }
}

@media (max-width: 992px) and (orientation: portrait) {
    .vision .vision-content .right {
        width: 60%;
    }

    .vision .vision-content .right .text {
        font-size: 45px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) and (orientation: portrait) {
    .vision .vision-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .vision .vision-content .right {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .vision .vision-content .right .text {
        font-size: 40px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }

    .vision {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

@media (max-width: 576px) and (orientation: portrait) {
    section {
        padding: 50px 0;
    }

    .vision1 .title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .vision1 .title::before {
        width: 150px;
    }

    .vision1 .title::after {
        font-size: 16px;
    }

    .vision .vision-content .right .text {
        font-size: 35px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }

    .vision {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

/*vision ends*/


/*about us page end*/

/* contact us page start*/


.image-container { 
    position: relative;
    width: 100%; /* adjust the width to be less than the height */ 
    height: 400px;
  }
.image-container img {  
    filter: blur(1px);
    width: 100%; 
    height: 120%;
    object-fit: cover;
    padding-top: 100px;
}
.textcontact {
    position: absolute; 
    top: 60%;
    left: 50%;  
    transform: translate(-50%, -50%);
    -webkit-mask: text;  
    mask: text;
    font-size: 28px;
    text-align: justify;
    color: black;
    font-family: "Comic Sans MS", cursive, fantasy;

  }

.textcontact h1 {
    text-align: center;
    color: #0f5d8e;
    font-size: 45px;
}

.info-wrap{
    width:35%;
    height: 815px;
    padding-left: 50px;
    float: left;
    display: block;
    border-radius: 30px 0px 0px 30px;
    /* background: linear-gradient(144deg, #85c226 0%, #0056b3 49%); */
    color:black;
    
}
.info-title{
    text-align: center;
    font-size: 35px;
    letter-spacing: 0.5px;
    color: #0f5d8e;
    
}
.contactpg h2{
    padding: 20px 0 0px 0;
    text-align: center;
    
}
.contactpg .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.contactpg .title::before {
    content: '';
    position: absolute;
    width: 320px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}


.info-sub-title{
    font-size: 20px;
    font-weight: 300;
    margin-top: 17px;
    letter-spacing: 0.5px;
    line-height: 26px;
    text-align: center;
    font-family: Helvetica, Arial, sans-serif;
    
}

.info-details {
    list-style: none;
    margin: 30px 0px;
}

.info-details span{
    font-size: 30px;
}

.info-details p{
    padding-left: 50px;
    font-size: 24px;
}

.info-details li {
    margin-top: 25px;
    font-size: 18px;
    color: black;
    display: inline-block;
    width: 55%;
    vertical-align: top;
    margin-right: 10px;
}

.info-details li i {
    background: #0f5d8e;
    padding: 12px;
    color: white;
    border-radius: 50%;
    margin-right: 5px;
}
.info-details li a i {
    background: #0f5d8e;
    padding: 9px;
    color: white;
    border-radius: 50%;
    margin-right: 5px;
}
.info-details li a {
    color: black;
    text-decoration: none;
    font-size: 24px;
}

.info-details li a:hover {
    color: #000;
}

.social-icons {
    list-style: none;
    text-align: center;
    margin: 20px 0px;
    
}

.social-icons li {
    display: inline-block;
    padding-right: 30px;
}

.social-icons li i {
    background: #0f5d8e;
    color: #fff;
    padding: 15px;
    font-size: 20px;
    border-radius: 22%;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s;
}

.social-icons li i:hover {
    background: #fff;
    color: #000000;
}
.contactpg-content {
    flex: 3;
    padding: 30px;
}
.contactpg {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
}
.abtform-container {
    flex: 2;
    border: 2px;

    
}
.abtform-container h2{
    padding: 20px 0 0px 0;
    text-align: center;
    
}
.abtform-container .title {
    
    position: relative;
    font-size: 40px;
    
    margin-bottom: 0px;
    padding-bottom: 30px;
    text-align: center;
    color: #0f5d8e;
}


.abtform-container .title::before {
    content: '';
    position: absolute;
    width: 300px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.abtform-container .title::after {
    content: 'CONNECT WITH US';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}

/* Small screens */
@media only screen and (max-width: 320px) {
    .textcontact {
      font-size: 15px;
      top: 150%;
    }
    .textcontact h1 {
      font-size: 18px;
    }
    .image-container {
      height: 200px;
    }
    .info-details span{
    font-size: 20px;
    }
    .info-details p{
        font-size: 18px;
    }
    .info-details li a {

    font-size: 18px;
    }
  }
  
  /* Medium-small screens */
  @media only screen and (max-width: 375px) {
    .textcontact {
      font-size: 15px;
      top: 120%;
    }
    .textcontact h1 {
      font-size: 19px;
    }
    .image-container {
      height: 250px;
    }
    .info-details span{
    font-size: 20px;
    }
    .info-details p{
        font-size: 18px;
    }
    .info-details li a {

    font-size: 18px;
    }
  }
  
  /* Large-small screens */
  @media only screen and (max-width: 425px) {
    .textcontact {
      font-size: 19px;
      top: 75%;
    }
    .textcontact h1 {
      font-size: 23px;
    }
    .image-container {
      height: 370px;
    }
    .info-details span{
    font-size: 20px;
    }
    .info-details p{
        font-size: 18px;
    }
    .info-details li a {
        font-size: 18px;
    }
  }
  
  /* Tablets */
  @media only screen and (min-width: 426px) and (max-width: 768px) {
    .textcontact {
      font-size: 18px;
      top: 80%;
    }
    .textcontact h1 {
      font-size: 24px;
    }
    .image-container {
      height: 350px;
    }
    .info-details p{
        font-size: 30px;
    }
    .info-details li a {
        font-size: 30px;
    }
    
  }
  
  /* Small desktops */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {
    .textcontact {
      font-size: 20px;
      top: 60%;
    }
    .textcontact h1 {
      font-size: 28px;
    }
    .image-container {
      height: 400px;
    }
    .info-details p{
        font-size: 30px;
    }
    .info-details li a {
        font-size: 30px;
    }
    
  }
  
  /* Medium desktops */
  @media only screen and (min-width: 1025px) and (max-width: 1440px) {
    .textcontact {
      font-size: 22px;
      top: 50%;
    }
    .textcontact h1 {
      font-size: 32px;
    }
    .image-container {
      height: 450px;
    }
    .info-details p{
        font-size: 27px;
    }
    .info-details li a {
        font-size: 27px;
    }
    
  }
  
  /* Large desktops */
  @media only screen and (min-width: 1441px) {
    .textcontact {
      font-size: 24px;
    }
    .textcontact h1 {
      font-size: 36px;
    }
    .image-container {
      height: 500px;
    }
    .info-details p{
        font-size: 27px;
    }
    .info-details li a {
        font-size: 27px;
    }
  }
  /* Small screens */
@media only screen and (max-width: 320px) {
    
    .contactpg {
      flex-direction: column;
      padding: 20px 0;
    }
    .title {
      font-size: 25px;
    }
  }
  
  /* Medium-small screens */
  @media only screen and (max-width: 375px) {
    
    .contactpg {
      flex-direction: column;
      padding: 30px 0;
    }
    .title {
      font-size: 28px;
    }
  }
  
  /* Large-small screens */
  @media only screen and (max-width: 425px) {

    .contactpg {
      flex-direction: column;
      padding: 40px 0;
    }
    .title {
      font-size: 30px;
    }
  }
  
  /* Tablets */
  @media only screen and (min-width: 426px) and (max-width: 768px) {

    .contactpg {
      flex-direction: column;
      padding: 50px 0;
    }
    .title {
      font-size: 35px;
    }
  }
  
  /* Small desktops */
  @media only screen and (min-width: 769px) and (max-width: 1024px) {

    .contactpg {
      flex-direction: row;
      padding: 60px 0;
    }
    .title {
      font-size: 40px;
    }
    .info-details li {
      width: 45%;
    }
  }
  
  /* Medium desktops */
  @media only screen and (min-width: 1025px) and (max-width: 1440px) {
 
    .contactpg {
      flex-direction: row;
      padding: 70px 0;
    }
    .info-details li {
      width: 45%;
    }
  }
  
  /* Large desktops */
  @media only screen and (min-width: 1441px) {

    .contactpg {
      flex-direction: row;
      padding: 80px 0;
    }
    .info-details li {
      width: 45%;
    }
  }


/* thank you pg */
.container{
    width:100%;
    height: 1000px;
    display:flex;
    align-items:center;
    justify-content:center;
    background-image: url('img/thankyou.jpeg');
    background-repeat: no-repeat;
    background-size: cover;

    
}
.btn {
    margin-top: 20px;
    padding: 10px;
    background:linear-gradient(to right, #94e316,#0f5d8e);
    color: #fff;
    border: none;
    cursor: pointer;
}
.popup p{
    font-size: 20px;
}
.popup a{
    margin-top: 20px;
    padding: 10px;
    background: white;
    color: #0f5d8e;
    border: none;
    cursor: pointer;
    font-family: Garamond, serif;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 2px rgb(159, 175, 204);;
    border-radius: 30px 30px 30px 30px;
    font-size: 30px;
}
.popup{
    width:400px;
    background:linear-gradient(to right, #94e316,#0f5d8e);
    border-radius: 6px;
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    padding:0 30px 30px;
    color:white;
    


}
.popup img{
    width:100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow:0 2px 5px rgba(0,0,0,0.2);
}
.popup h2{
    font-size: 60px;
    font-weight:500;
    margin:30px 0 10px;

}




/*services page start*/

.form-container {
    flex: 2;
    border: 2px;

    
}
.form-container h2{
    padding: 20px 0 0px 0;
    text-align: center;
    
}
.form-container .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.form-container .title::before {
    content: '';
    position: absolute;
    width: 320px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}
.allforms{
    display: flex;
    flex-direction: column;
    padding: 40px;
    border: 2px solid black;
    border-radius: 10px;
    box-shadow :  5px 5px 10px 10px rgb(123, 128, 125);
    width: 60%;
    margin-left: 140px;
}

.allforms label {
    margin-top: 20px;
    font-size: 20px;
    box-shadow: 10px;
}

.allforms input, .message {
    margin-top: 5px;
    padding: 10px;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    box-shadow: 2px 2px 2px 2px rgb(159, 175, 204);;
    border-radius: 30px 30px 30px 30px;
}

.allforms .submit-button1 {
    margin-top: 20px;
    padding: 10px;
    background:linear-gradient(to right, #94e316,#0f5d8e);
    color: #fff;
    border: none;
    cursor: pointer;
}

.submit-button1 :hover {
    background-color: #0056b3;
}
@media screen and (max-width: 480px) and (orientation: portrait) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}

/* Tablets and iPads (portrait and landscape) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait) {
    .allforms {
        width: 70%;
        margin: 0 auto;
        padding: 30px;
    }

    .form-container .title {
        font-size: 35px;
    }

    .form-container .title::before {
        width: 280px;
    }
}

/* Laptops and Desktops */
@media screen and (min-width: 1025px) and (orientation: portrait) {
    .allforms {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container .title {
        font-size: 40px;
    }

    .form-container .title::before {
        width: 320px;
    }
}

/* Base code */
.connect {
    background: linear-gradient(144deg, #85c226 0%, #0056b3 49%);
    text-align: center;
}

.connect h1 {
    color: white;
    font-size: 60px;
    align-items: center;
    animation: slideFromLeft 6s ease-in-out infinite;
}

.connect a {
    display: inline-block;
    text-decoration: none;
    color: white;
    margin: 20px;
    background: black;
    padding: 5px 30px;
    font-size: 30px;
    font-style: oblique;
    margin-top: 50px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 5px solid black;
    animation: rotateAndScale 1.5s ease-out;
}

/* Animation Keyframes */
@keyframes slideFromLeft {
    from {
        transform: translateX(-10%);
        opacity: 1;
    }
    to {
        transform: translateX(0);
        opacity: 2;
    }
}

@keyframes rotateAndScale {
    0% {
        transform: rotate(-45deg) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: rotate(0deg) scale(1.2);
        opacity: 1;
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}



.servicespg {
    display: flex;
    flex-wrap: wrap;
    padding: 100px 0;
    background-image: url('img/servicesbg.jpg');
    background-repeat: no-repeat;
    background-size:cover;
    
    
}
.servicespg .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.servicespg .title::before {
    content: '';
    position: absolute;
    width: 200px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}

.servicespg-content {
    flex: 3;
    padding: 30px;
   
}

.servicespg p {
    text-align: justify;
    font-size: 25px;
    padding: 0 0 0 40px;
    
    
}




.servicesqa {
    display: flex;
    flex-wrap: wrap;
    padding: 70px 0;
}
.servicesqa .title1{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: left;
    color: #0f5d8e;
}
.servicesqa .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.servicesqa .title::before {
    content: '';
    position: absolute;
    width: 650px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}

.servicesqa-content {
    flex: 2.3;
    padding: 30px;
}
.servicesqa p{
    text-align: justify;
    font-size: 25px;
    padding:0 0 0 40px;
    
}

/* Mobile devices (max-width: 480px) */
@media only screen and (max-width: 480px) and (orientation: portrait) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 1;
      padding: 20px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 16px;
      padding: 0 20px;
    }
    
    
    }
  
  
  @media screen and (min-width: 800px) and (max-width: 2000px) and (orientation: portrait) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 1;
      padding: 20px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 16px;
      padding: 0 20px;
    }
    
  }
    
  /* Tablet devices (max-width: 768px) */
  @media only screen and (max-width: 768px) and (orientation: portrait) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content{
      flex: 1;
      padding: 25px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 18px;
      padding: 0 30px;
    }
    
  }
  
  /* Desktop devices (min-width: 1024px) */
  @media only screen and (min-width: 1024px) and (orientation: portrait) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: row;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 3;
      padding: 30px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 22px;
      padding: 0 40px;
    }
  }


  
/* Tablets and above */
@media (max-width: 992px) and (orientation: portrait) {
    .servicesqa {
        padding: 50px 0;
    }
    .servicesqa .title, .servicesqa .title1 {
        font-size: 35px;
    }
    .servicesqa .title::before {
        width: 500px;
    }
    .servicesqa-content {
        padding: 20px;
    }
    .servicesqa p {
        font-size: 20px;
        padding: 0 0 0 30px;
    }
}

/* Mobile and below */
@media (max-width: 768px) and (orientation: portrait) {
    .servicesqa {
        padding: 30px 0;
    }
    .servicesqa .title, .servicesqa .title1 {
        font-size: 30px;
    }
    .servicesqa .title::before {
        width: 350px;
    }
    .servicesqa-content {
        padding: 15px;
    }
    .servicesqa p {
        font-size: 18px;
        padding: 0 0 0 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) and (orientation: portrait) {
    .servicesqa .title, .servicesqa .title1 {
        font-size: 25px;
    }
    .servicesqa .title::before {
        width: 200px;
    }
    .servicesqa-content {
        padding: 10px;
    }
    .servicesqa p {
        font-size: 16px;
        padding: 0;
    }
}
.tags1 .title{
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 0px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
.tags1 .title::before {
    content: '';
    position: absolute;
    width: 220px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #85c226;
    
}
.tags1 .heading h3{   
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 30px;
    font-weight: 500;
    margin-top: 15px;
    padding-bottom: 10px;
    text-align: center;
    color: #0f5d8e;
}
@keyframes scaleUp {
    from {
        transform: scale(0.9);
        opacity: 1;
    }
    to {
        transform: scale(1);
        opacity: 2;
    }
}

.tags1 {
    background-color: #f7f7f7;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 5s ease-in-out;
}

.servicelists {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.servicelists li {
    padding: 10px;
    flex-basis: calc(25% - 10px);
    margin-bottom: -1px;
    margin-right: -1px;
    font-size: 20px;
    animation: scaleUp 5s ease forwards infinite;
}

.servicelists li:before {
    content: "\f0a9";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #337ab7;
}

/* Large screens (1200px and up) */
@media only screen and (min-width: 1200px) and (orientation: portrait) {
    .servicelists li {
       flex-basis: calc(20% - 10px);
     }
   }
   
   /* Medium screens (992px to 1199px) */
   @media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
    .servicelists li {
       flex-basis: calc(25% - 10px);
     }
   }
   
   /* Small screens (768px to 991px) */
   @media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
    .servicelists li {
       flex-basis: calc(33.33% - 10px);
     }
   }
   
   /* Extra small screens (480px to 767px) */
   @media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: portrait) {
    .servicelists li {
       flex-basis: calc(50% - 10px);
     }
   }
   
   /* Mobile screens (below 480px) */
   @media only screen and (max-width: 479px) and (orientation: portrait) {
    .servicelists li {
       flex-basis: 100%;
     }
    .tags1 {
       padding: 10px;
     }
    .tags1.title {
       font-size: 30px;
     }
    .tags1.heading h3 {
       font-size: 25px;
     }
   }

  .popup1 {
    /* Hidden by default */
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   justify-content: right;
   align-items: center;
   padding: 100px 0px 10px 1px;
   z-index: 999;
   
}
.popup1 h3{
    color:#0f5d8e;
    font-style: inherit;
    }
.popup1-content {
   background-color: white;
   padding: 20px;
   border-radius: 5px;
   width: 250px;
   text-align: center;
   position: relative;
}

.close {
   position: absolute;
   top: 10px;
   right: 10px;
   font-size: 20px;
   cursor: pointer;
}
.popup1 a{
    margin-top: 20px;
    padding: 10px;
    background:linear-gradient(to right, #94e316,#0f5d8e);
    color: #fff;
    border: none;
    cursor: pointer;
}
/* Add this media query to make the popup responsive */

@media only screen and (max-width: 768px) and (orientation: portrait) {
    .popup1 {
      padding: 50px 0px 10px 1px;
    }
    .popup1-content {
      width: 50%;
      padding: 15px;
      font-size: 19px;
    }
    .popup1 a {
      padding: 8px;
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 480px) and (orientation: portrait) {
    .popup1 {
      padding: 30px 0px 10px 1px;
    }
    .popup1-content {
      width: 50%;
      padding: 10px;
    }
    .popup1 a {
      padding: 6px;
      font-size: 16px;
    }
  }
  .popup2 {
    /* Hidden by default */
   position: fixed;
   top: 0;
   left: 0;
   width: 20%;
   height: 50%;
   justify-content: right;
   align-items: center;
   padding: 450px 0px 0px 1000px;
   z-index: 999;
   
}

.popup2-content {
   padding: 20px;
   width: 50px;
   text-align: center;
   position: relative;
   right: 200px;
}
.popup2 img{
    width: 500px;
    height: 500px;
    
}

.close2 {
   position: absolute;
   top: 10px;
   left: 500px;
   font-size: 30px;
   cursor: pointer;
   color: white;
}

/* Add this media query to make the popup responsive */

  /* Mobile phones (small) */
@media only screen and (max-width: 320px) and (orientation: portrait) {
  .popup2 {
      padding: 30px 0px 0px 1px;
    }
    .popup2-content {
      width: 30%;
      padding: 10px;
    }
     .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
    
}

/* Mobile phones (medium) */
@media only screen and (max-width: 375px) and (orientation: portrait) {
  .popup2 {
      padding: 100px 0px 1px 1px;
      width: 350px;
    }
    .popup2-content {
      width: 10px;
      padding: 10px;
      
      position: relative;
      right: 400px;
    }
    .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
    
    
    
}

/* Mobile phones (large) */
@media only screen and (max-width: 425px) and (orientation: portrait) {
  .popup2 {
      padding: 30px 0px 1px 1px;
    }
    
    .popup2-content {
      width: 30%;
      padding: 10px;
    }
    .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    
   .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}

/* Tablets (small) */
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: portrait) {
  .popup2 {
      padding: 30px 0px 10px 1px;
    }
    .popup2-content {
      width: 50%;
      padding: 10px;
    }
    .popup2 img {
    width: 650px;
    height: 750px;
    padding-left: 380px;
    padding-top: 300px;
    }
    .close2 {
    position: absolute;
    top: 300px;
    left: 645px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}

/* Tablets (medium) */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: portrait) {
  .popup2 {
      padding: 30px 0px 10px 1px;
    }
    .popup2-content {
      width: 50%;
      padding: 10px;
    }
    .popup2 img {
    width: 650px;
    height: 850px;
    padding-left: 280px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}
  /* Mobile phones (small) */
@media only screen and (max-width: 320px) and (orientation: landscape) {
  .popup2 {
      padding: 30px 0px 0px 1px;
    }
    .popup2-content {
      width: 30%;
      padding: 10px;
    }
     .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
    
}

/* Mobile phones (medium) */
@media only screen and (max-width: 375px) and (orientation: landscape) {
  .popup2 {
      padding: 1000px 0px 1px 1px;
      width: 350px;
    }
    .popup2-content {
      width: 10px;
      padding: 10px;
      
      position: relative;
      right: 400px;
    }
    .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
    
    
    
}

/* Mobile phones (large) */
@media only screen and (max-width: 425px) and (orientation: landscape) {
  .popup2 {
      padding: 30px 0px 1px 1px;
    }
    
    .popup2-content {
      width: 30%;
      padding: 10px;
    }
    .popup2 img {
    width: 450px;
    height: 650px;
    padding-left: 180px;
    padding-top: 350px;
    }
    
   .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}

/* Tablets (small) */
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: landscape) {
  .popup2 {
      padding: 30px 0px 10px 1px;
    }
    .popup2-content {
      width: 50%;
      padding: 10px;
    }
    .popup2 img {
    width: 650px;
    height: 750px;
    padding-left: 380px;
    padding-top: 300px;
    }
    .close2 {
    position: absolute;
    top: 300px;
    left: 645px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}

/* Tablets (medium) */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .popup2 {
      padding: 30px 0px 10px 1px;
    }
    .popup2-content {
      width: 50%;
      padding: 10px;
    }
    .popup2 img {
    width: 650px;
    height: 850px;
    padding-left: 280px;
    padding-top: 350px;
    }
    .close2 {
    position: absolute;
    top: 355px;
    left: 445px; /* Adjusted to be within the 350px width of .popup2 */
    font-size: 30px;
    cursor: pointer;
    color: white;
  }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .popup1 {
      padding: 50px 0px 10px 1px;
    }
    .popup1-content {
      width: 50%;
      padding: 15px;
      font-size: 19px;
    }
    .popup1 a {
      padding: 8px;
      font-size: 16px;
    }
  }
  
  @media only screen and (max-width: 480px) and (orientation: landscape) {
    .popup1 {
      padding: 30px 0px 10px 1px;
    }
    .popup1-content {
      width: 50%;
      padding: 10px;
    }
    .popup1 a {
      padding: 6px;
      font-size: 16px;
    }
  }
/* Large screens (1200px and up) */
@media only screen and (min-width: 1200px) and (orientation: landscape) {
    .servicelists li {
       flex-basis: calc(20% - 10px);
     }
   }
   
   /* Medium screens (992px to 1199px) */
   @media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {
    .servicelists li {
       flex-basis: calc(25% - 10px);
     }
   }
   
   /* Small screens (768px to 991px) */
   @media only screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .servicelists li {
       flex-basis: calc(33.33% - 10px);
     }
   }
   
   /* Extra small screens (480px to 767px) */
   @media only screen and (min-width: 480px) and (max-width: 767px) and (orientation: landscape) {
    .servicelists li {
       flex-basis: calc(50% - 10px);
     }
   }
   
   /* Mobile screens (below 480px) */
   @media only screen and (max-width: 479px) and (orientation: landscape) {
    .servicelists li {
       flex-basis: 100%;
     }
    .tags1 {
       padding: 10px;
     }
    .tags1.title {
       font-size: 30px;
     }
    .tags1.heading h3 {
       font-size: 25px;
     }
   }
/* Mobile devices (max-width: 480px) */
@media only screen and (max-width: 480px) and (orientation: landscape) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 1;
      padding: 20px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 16px;
      padding: 0 20px;
    }
    
    
    }
  
  
  @media screen and (min-width: 800px) and (max-width: 2000px) and (orientation: landscape) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 1;
      padding: 20px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 16px;
      padding: 0 20px;
    }
    
  }
    
  /* Tablet devices (max-width: 768px) */
  @media only screen and (max-width: 768px) and (orientation: landscape) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: column;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content{
      flex: 1;
      padding: 25px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 18px;
      padding: 0 30px;
    }
    
  }
  
  /* Desktop devices (min-width: 1024px) */
  @media only screen and (min-width: 1024px) and (orientation: landscape) {
    .servicespg, .servicesqa, .aboutpg {
      flex-direction: row;
    }
    .servicespg-content, .servicesqa-content, .aboutpg-content {
      flex: 3;
      padding: 30px;
    }
    .servicespg p, .servicesqa p, .aboutpg p {
      font-size: 22px;
      padding: 0 40px;
    }
  }


  
/* Tablets and above */
@media (max-width: 992px) and (orientation: landscape) {
    .servicesqa {
        padding: 50px 0;
    }
    .servicesqa .title, .servicesqa .title1 {
        font-size: 30px;
    }
    .servicesqa .title::before {
        width: 500px;
    }
    .servicesqa-content {
        padding: 20px;
    }
    .servicesqa p {
        font-size: 20px;
        padding: 0 0 0 30px;
    }
}

/* Mobile and below */
@media (max-width: 768px) and (orientation: landscape) {
    .servicesqa {
        padding: 30px 0;
    }
    .servicesqa .title, .servicesqa .title1 {
        font-size: 30px;
    }
    .servicesqa .title::before {
        width: 350px;
    }
    .servicesqa-content {
        padding: 15px;
    }
    .servicesqa p {
        font-size: 18px;
        padding: 0 0 0 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) and (orientation: landscape) {
    .servicesqa .title, .servicesqa .title1 {
        font-size: 25px;
    }
    .servicesqa .title::before {
        width: 200px;
    }
    .servicesqa-content {
        padding: 10px;
    }
    .servicesqa p {
        font-size: 16px;
        padding: 0;
    }
}
@media screen and (max-width: 480px) and (orientation: landscape) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}

/* Tablets and iPads (portrait and landscape) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
    .allforms {
        width: 70%;
        margin: 0 auto;
        padding: 30px;
    }

    .form-container .title {
        font-size: 35px;
    }

    .form-container .title::before {
        width: 280px;
    }
}

/* Laptops and Desktops */
@media screen and (min-width: 1025px) and (orientation: landscape) {
    .allforms {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container .title {
        font-size: 40px;
    }

    .form-container .title::before {
        width: 320px;
    }
}
@media (max-width: 1200px) and (orientation: landscape) {
    .box-wrapper {
        width: 90%;
    }
    .info-wrap, .form-wrap {
        width: 100%;
        height: auto;
        float: none;
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap {
        border-radius: 0px 0px 30px 30px;
    }
    .form-fields .form-group {
        width: 100%;
        padding: 0px 20px;
    }
    .form-fields .form-group:first-child,
    .form-fields .form-group:last-child {
        width: 100%;
    }
    .submit-button {
        width: 100%;
    }
}
@media (max-width: 1600px) and (orientation: landscape) {
    .box-wrapper {
        width: 90%;
    }
    .info-wrap, .form-wrap {
        width: 100%;
        height: auto;
        float: none;
        border-radius: 30px 30px 0px 0px;
    }
    .form-wrap {
        border-radius: 0px 0px 30px 30px;
    }
    .form-fields .form-group {
        width: 100%;
        padding: 0px 20px;
    }
    .form-fields .form-group:first-child,
    .form-fields .form-group:last-child {
        width: 100%;
    }
    .submit-button {
        width: 100%;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .box-wrapper {
        width: 100%;
        padding: 20px;
    }
    .info-wrap, .form-wrap {
        padding: 20px;
    }
    .info-title, .form-title {
        font-size: 24px;
    }
    .info-sub-title, .info-details li, .form-fields input, .form-fields textarea {
        font-size: 16px;
    }
    .submit-button {
        font-size: 18px;
        height: 50px;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    #section-wrapper {
        padding: 50px 20px;
    }
    .info-title, .form-title {
        font-size: 20px;
    }
    .info-sub-title, .info-details li, .form-fields input, .form-fields textarea {
        font-size: 14px;
    }
    .info-details {
        margin: 40px 0px;
    }
    .info-details li {
        margin-top: 15px;
    }
    .social-icons li i {
        padding: 10px;
        font-size: 18px;
    }
    .submit-button {
        font-size: 16px;
        height: 45px;
    }
}
@media (max-width: 1200px) and (orientation: landscape) {
    .vision .vision-content .right {
        width: 50%;
    }

    .vision .vision-content .right .text {
        font-size: 50px;
    }

    .vision .vision-content .right p {
        font-size: 20px;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .vision .vision-content .right {
        width: 60%;
    }

    .vision .vision-content .right .text {
        font-size: 45px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .vision .vision-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .vision .vision-content .right {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .vision .vision-content .right .text {
        font-size: 40px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }

    .vision {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    section {
        padding: 50px 0;
    }

    .vision1 .title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .vision1 .title::before {
        width: 150px;
    }

    .vision1 .title::after {
        font-size: 16px;
    }

    .vision .vision-content .right .text {
        font-size: 45px;
    }

    .vision .vision-content .right p {
        font-size: 18px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
    }

    .vision {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}
/* Media Queries for Responsive Design */
@media (max-width: 1200px) and (orientation: landscape) {
    .mission .mission-content .left {
        width: 50%;
    }

    .mission .mission-content .left .text {
        font-size: 50px;
    }

    .mission .mission-content .left p {
        font-size: 20px;
    }
}

@media (max-width: 992px) and (orientation: landscape) {
    .mission .mission-content .left {
        width: 60%;
    }

    .mission .mission-content .left .text {
        font-size: 45px;
    }

    .mission .mission-content .left p {
        font-size: 18px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .mission .mission-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .mission .mission-content .left {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
        animation: none; /* Disable slide-in animation for mobile view */
    }

    .mission .mission-content .left .text {
        font-size: 40px;
    }

    .mission .mission-content .left p {
        font-size: 16px;
    }

    .mission {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}

@media (max-width: 576px) and (orientation: landscape) {
    section {
        padding: 50px 0;
    }

    .mission1 .title {
        font-size: 30px;
        margin-bottom: 40px;
    }

    .mission1 .title::before {
        width: 150px;
    }

    .mission1 .title::after {
        font-size: 16px;
    }

    .mission .mission-content .left .text {
        font-size: 35px;
    }

    .mission .mission-content .left p {
        font-size: 14px;
    }

    .mission {
        background-size: 900px; /* Ensure the entire image fits within the section */
        background-position: center;
    }
}
@media screen and (max-width: 480px) and (orientation: landscape) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}

/* Tablets and iPads (portrait and landscape) */
@media screen and (min-width: 481px) and (max-width: 1024px) and (orientation: landscape) {
    .allforms {
        width: 70%;
        margin: 0 auto;
        padding: 30px;
    }

    .form-container .title {
        font-size: 35px;
    }

    .form-container .title::before {
        width: 280px;
    }
}

/* Laptops and Desktops */
@media screen and (min-width: 1025px) and (orientation: landscape) {
    .allforms {
        width: 50%;
        margin-left: auto;
        margin-right: auto;
    }

    .form-container .title {
        font-size: 40px;
    }

    .form-container .title::before {
        width: 320px;
    }
}
@media screen and (min-width: 800px) and (max-width: 2000px) and (orientation: landscape) {
    .allforms {
        width: 90%;
        margin: 0 auto;
        padding: 20px;
    }

    .form-container .title {
        font-size: 30px;
    }

    .form-container .title::before {
        width: 250px;
    }

    .allforms input,
    .message {
        padding: 8px;
    }
}
/* For screens up to 767px (mobile) */
@media (max-width: 767px) and (orientation: landscape) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 100%;
    }
}

/* For screens between 768px and 991px (tablet) */
@media (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 50%;
    }
}

/* For screens between 992px and 1199px (laptop) */
@media (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {
    .row {
        width: 90%;
    }
    .col {
        flex-basis: 33.33%;
    }
}

/* For screens between 1200px and 1439px (desktop) */
@media (min-width: 1200px) and (max-width: 1439px) and (orientation: landscape) {
    .row {
        width: 80%;
    }
    .col {
        flex-basis: 25%;
    }
}

/* For screens above 1440px (extra-large screens) */
@media (min-width: 1440px) and (max-width:1800px) and (orientation: landscape) {
    .row {
        width: 100%;
    }
    .col {
        flex-basis: 10%;
    }
}
/* Responsive adjustments */

@media screen and (max-width: 1200px) and (orientation: landscape) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens smaller than 1200px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }
}
@media screen and (max-width: 608px) and (max-height: 990px) and (orientation: landscape) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens smaller than 1200px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 45px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 16px; /* Decreasing link size */
    }
}

@media screen and (max-width: 768px) and (orientation: landscape) {
    .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: landscape) {
  .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 25px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 20px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  .cards {
        grid-template-columns: 1fr; /* Single column layout for screens smaller than 768px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 20px; /* Reducing the gap between cards */
    }
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media screen and (max-width: 480px) and (orientation: landscape) {
    .services {
        padding: 20px; /* Reducing padding for smaller screens */
    }

    .sbox i {
        font-size: 24px; /* Decreasing icon size */
    }

    .sbox h3 {
        font-size: 20px; /* Decreasing heading size */
    }

    .sbox p {
        font-size: 14px; /* Decreasing paragraph size */
    }

    .sbox a {
        font-size: 25px; /* Decreasing link size */
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns layout for screens between 768px and 1024px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }

    .services {
        padding: 20px; /* Adjusting padding for tablet screens */
    }

    .sbox i {
        font-size: 24px; /* Adjusting icon size for tablet screens */
    }

    .sbox h3 {
        font-size: 20px; /* Adjusting heading size for tablet screens */
    }

    .sbox p {
        font-size: 16px; /* Adjusting paragraph size for tablet screens */
    }

    .sbox a {
        font-size: 18px; /* Adjusting link size for tablet screens */
    }
}
@media screen and (min-width: 1500px) and (max-width: 3000px) and (orientation: landscape) {
    .cards {
        grid-template-columns: repeat(3, 1fr); /* Two columns layout for screens between 768px and 1024px */
        width: 100%; /* Adjusting width to fit the screen */
        gap: 30px; /* Reducing the gap between cards */
    }

    .services {
        padding: 20px ; /* Adjusting padding for tablet screens */
    }

    .sbox i {
        font-size: 24px; /* Adjusting icon size for tablet screens */
    }

    .sbox h3 {
        font-size: 30px; /* Adjusting heading size for tablet screens */
    }

    .sbox p {
        font-size: 25px; /* Adjusting paragraph size for tablet screens */
    }

    .sbox a {
        font-size: 18px; /* Adjusting link size for tablet screens */
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about .about-content .right {
        width: 100%;
        padding: 0 20px;
        color: #000;
    }

    .about .about-content .right .text {
        font-size: 40px;
    }

    .about .about-content .right p {
        font-size: 17px;
        padding: 0 10px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    .about .about-content .right a {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) and (orientation: landscape) {
    .about .about-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about .about-content .right {
        width: 100%;
        padding: 0 20px;
        color: #000;
        
    }

    .about .about-content .right .text {
        font-size: 40px;
        
    }

    .about .about-content .right p {
        font-size: 20px;
        padding: 0 10px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 8px;
    }

    .about .about-content .right a {
        font-size: 20px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

/*mobile */
@media screen and (max-width: 767px) and (orientation: landscape) {
    /* Styles for screens smaller than 768px (e.g., mobile phones) */
    .textbg {
        padding: 145px 10px 50px;
        min-height: auto;
    }
    .textbox {
        max-width: 100%;
    }
    .textbox h1 {
        font-size: 50px;
    }
    .textbox p {
        font-size: 20px;
    }
    .textbox a {
        font-size: 20px;
        padding: 10px 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 991px) and (orientation: landscape) {
    /* Styles for screens between 768px and 991px (e.g., tablets) */
    .textbg {
        padding: 0 20px 80px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {
    /* Styles for screens between 992px and 1199px (e.g., small laptops) */
    .textbg {
        padding: 0 40px 100px;
    }
}

@media screen and (min-width: 1200px) and (orientation: landscape) {
    /* Styles for screens larger than 1199px (e.g., desktops and extra-large screens) */
    .textbg {
        padding: 0 60px 120px;
    }
}
/* Large screens (Desktops) */
@media only screen and (min-width: 1200px) and (orientation: landscape) {
  nav {
    padding-right: 350px;
  }
  #nav-links {
    width: 25%;
  }
}

/* Medium screens (Laptops) */
@media only screen and (min-width: 992px) and (max-width: 1199px) and (orientation: landscape) {
  nav {
    padding-right: 250px;
  }
  #nav-links {
    width: 30%;
  }
}

/* mediam screens (Tablets) */
@media only screen and (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
  nav {
    padding-right: 373px;
    width: 1100px;
  }
  nav h2{
      font-size: 40px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 200px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1280px) and (orientation: landscape) {
   nav {
    padding-right: 373px;
    width: 1000px;
  }
  nav h2{
      font-size: 30px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 70px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/*Tablet small*/
@media only screen and (min-width: 426px) and (max-width: 768px) and (orientation: landscape) {
    nav {
    padding-right: 373px;
    width: 1000px;
  }
  nav h2{
      font-size: 30px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 100px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/*small mobile*/
@media only screen and (max-width: 375px) and (orientation: landscape) {
   nav {
    padding-right: 373px;
    width: 810px;
    
  }
  nav h2{
      font-size: 10px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 70px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
/* mediam mobile*/
@media only screen and (max-width: 320px) and (orientation: landscape) {
    nav {
        padding-right: 60px;
        width: 610px;
        
    }
    
    #icon {
        width: 50px;
    }
    nav h2 {
        font-size: 30px;
        margin-left: 5px;
    }
    #nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hide nav links by default on small screens */
    }
    #nav-links.active {
        display: flex; /* Show nav links when toggle button is active */
    }
    #nav-links li {
        margin: 10px 0;
        width: 100%;
    }
    #toggle-btn {
    display: block;
    position: relative;
    left: 40px;
    }
}
/*large mna*/
@media only screen and (max-width: 425px) and (orientation: landscape) {
    nav {
    padding-right: 373px;
    width: 560px;
    font-size: 20px;
  }
  nav h2{
      font-size: 20px;
      margin-left: 10px;
  }
  #nav-links {
    width: 100%;
  }
  #toggle-btn {
    display: block;
    position: relative;
    left: 40px;
    
  }
  #nav-links {
    display: none;
  }
  #nav-links.active {
    display: block;
    position: absolute;
    top: 100%;
    background: #0f5d8e;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  #nav-links li {
    margin: 0;
  }
  #nav-links a {
    padding: 10px;
  }
}
.loc1 {  
  display: flex;  
  justify-content: center; /* Center the content horizontally */  
}  
  
.loclists {  
  list-style-type: none; /* Remove default list styling */  
  padding-left: 0; /* Remove padding for mobile view */  
  margin: 0;  
  display: flex;  
  flex-direction: row; /* Align items horizontally */  
  gap: 20px; /* Add space between items */  
  justify-content: space-around; /* Distribute space evenly */  
  width: 100%;  
  font-size: 20px;  
  background-color: #f7f7f7;  
  padding-top: 20px;  
  padding-bottom: 20px;  
  border: 1px solid #ddd;  
  border-radius: 10px;  
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);  
}  
  
.loclists li {  
  flex: 1; /* Distribute items equally */  
  max-width: 300px; /* Optional: set max width for items */  
}  
  
.loc1 a {  
  color: #000;  
  text-decoration: none; /* Remove underline */  
}  
  
.loclist.fa-sitemap {  
  font-size: 30px;  
}  
  
.loc1 a:hover {  
  text-decoration: underline;  
  color: #0056b3;  
}  

@media (max-width: 767px) and (orientation: portrait) {
  .loclists {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .loclists li {
    width: 100%;
    max-width: 90%;
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {
  .loclists {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    font-size: 17px;
  }

  .loclists li {
    flex: 1 1 40%;
    max-width: 45%;
    text-align: center;
  }
}

@media (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
  .loclists {
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 18px;
    gap: 20px;
  }

  .loclists li {
    flex: 1 1 30%;
    max-width: 32%;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) and (orientation: portrait) {
  .loclists {
    font-size: 19px;
    gap: 25px;
  }

  .loclists li {
    flex: 1 1 25%;
    max-width: 28%;
  }
}

@media (min-width: 1440px) and (max-width: 1800px) and (orientation: portrait) {
  .loclists {
    font-size: 20px;
    gap: 30px;
  }

  .loclists li {
    flex: 1 1 20%;
    max-width: 22%;
  }
}

/*client testimonial*/
/* Client Reviews Section */
.client-reviews .title {
    font-family: 'Ubuntu', sans-serif;
    position: relative;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 70px;
    padding-bottom: 45px;
    text-align: center;
    color: #0f5d8e;
}


.client-reviews .title::before {
    content: '';
    position: absolute;
    width: 400px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    height: 3px;
    background: #0f5d8e;
}

.client-reviews .title::after {
    content: 'PROVEN TRUST';
    position: absolute;
    font-size: 20px;
    color: #85c226;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px;
    background: #fff;
}



/* Mobile (portrait, max 767px) → Show 1 review */
@media (max-width: 767px) and (orientation: portrait) {
  .client-reviews .title {
    font-size: 28px;
  }
}

/* Large screens (1440px–1800px portrait) → Show 4 reviews, bigger cards */
@media (min-width: 1440px) and (max-width: 1800px) and (orientation: portrait) {
 
  .client-reviews .title {
    font-size: 44px;
  }
}

/* Medium-large screens (1200px–1439px portrait) → Show 3 reviews */
@media (min-width: 1200px) and (max-width: 1439px) and (orientation: portrait) {
 
  .client-reviews .title {
    font-size: 38px;
  }
}

/* Tablets (992px–1199px portrait) → Show 2 reviews */
@media (min-width: 992px) and (max-width: 1199px) and (orientation: portrait) {
 
  .client-reviews .title {
    font-size: 34px;
  }
}

/* Small tablets (768px–991px portrait) → Show 2 reviews tighter */
@media (min-width: 768px) and (max-width: 991px) and (orientation: portrait) {

  .client-reviews .title {
    font-size: 32px;
  }
}


