@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --main-clr: #35A73B;
    --second-clr: #123458;
    --main-light: hsla(123, 52%, 43%, 0.15);
    --second-light: hsla(209, 60%, 45%, 0.15);
    --main-light-1: hsla(123, 47%, 48%, 0.15);
    --main-light-2: hsla(123, 47%, 48%, 0.05);
    --main-dark-1: hsl(209, 86%, 12%);
    /* --second-light-1:hsla(209, 60%, 45%, 0.15); */
    --second-light-2: hsla(209, 60%, 45%, 0.05);
    --third-color: #8dc7ff;
    --fourth-color: #ffffff;
    --fifth-color: #000000;
    /* --third-color: #0059ff; */
    /* --fourth-color: #ffffff; */
    /* --fifth-color: #000000; */
}

body {
    font-family: 'Inter', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
}

a {
    display: block;
    text-decoration: none !important;
}

ul {
    padding: 0 !important;
}

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

}

.mtop {
    margin-top: 150px;
}

.mtop-alt {
    margin-top: 130px;
}

.mbot {
    /* margin-bottom: 60px; */
}

.mtop.mbot {
    /* margin: 100px 0; */
}

span {
    display: inline-block;
}

.nav-mobile {
    display: none !important;
}

header {
    border-radius: 18px;
    background-color: #ffffff;
    backdrop-filter: blur(2px);
    padding: 12px 20px !important;
    box-shadow: 0px 2px 7px rgb(208 216 222 / 62%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    font-weight: 400;
    max-width: inherit;
    margin: auto;
}

.header-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 35px;
    width: auto;
}

.main-nav {
    width: 100%;
    text-align: center;
}

.call-btn {
    padding: 12px 30px;
    background: rgba(66, 181, 72, 0.15);
    color: var(--main-clr);
    font-weight: 300;
    font-size: 18px;
    border-radius: 16px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-self: center;
    height: max-content;
    transition: 0.5s all;
}

.call-btn:hover {
    background: var(--main-clr);
    color: #c8ffb8;
}

.call-btn p {
    margin: 0;
}

.contact-info {
    display: inline-flex;
}

.contact-info a {
    padding: 4px 10px;
    /* background: red; */
    border-radius: 10px;
    transition: 0.5s;
    color: var(--second-clr);
}

.contact-info a:hover {
    background: #E9E9E9;
}

.navbar1 ul {
    margin: 0;
}


.dropdown-menu1 {
    /* background: #E9E9E9; */
    background: #fff;
    box-shadow: 2px 2px 20px rgb(0 0 0 / 15%);
    display: flex;
    padding: 10px !important;
    border-radius: 20px !important;
    width: 100%;
    width: max-content;
    /* max-width: 520px; */
    height: max-content;
    position: absolute;
    left: -12px;
    top: 40px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
    display: none;
}

.dropdown1:hover .dropdown-menu1 {
    visibility: visible;
    opacity: 1;
    display: flex;
}
.dropdown-menu1 li a {
    padding: 5px 10px;
    border-radius: 10px;
    transition: 0.5s;
    display: block;

}

.dropdown-menu1 li a:hover {
    background: #E9E9E9;
    color: var(--second-clr);
}

.submenu-overflow {
    scrollbar-color: rgb(255, 255, 255) rgb(164, 164, 164);
    scrollbar-width: 10px;
}

.submenu a {
    display: flex;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
    color: #333;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.submenu a:hover {
    background-color: #f1f1f1;
}

.navbar {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    margin-top: 9px;
}

.nav-item {
    color: black;
    padding: 10px 15px;
    transition: 0.2s;
}

.nav-item.active {
    background-color: #d4e8f5;
    border-radius: 15px;
    color: var(--second-clr);
}

/* Hero Section Styles */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    background: url('../img/banner-img.avif') no-repeat center center;
    background-size: cover;
    height: 100%;
    position: relative;
    display: grid;
    align-items: end;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.banner_image{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 70%;
}
.banner_image img{
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff !important;
    padding-bottom: 4rem;
}

.hero-content h1 {
    font-size: 3.6rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: #ffffff;
    display: inline;
    background: none;
    padding: 0;
    border-radius: 0;
}

.hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    opacity: 0.9;
}

.header-content .cta-btn {
    display: inline-block;
    background: var(--main-clr);
    color: #fff;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.header-content .cta-btn:hover {
    background: #fff;
    color: var(--main-clr);
    transform: translateY(-2px);
}

.nav-item.contact {
    padding: 15px 30px !important;
    border-radius: 20px !important;
    background: var(--second-clr) !important;
    color: #fff;
    box-shadow: -5px -5px 20px rgb(0 0 0 / 15%);
    transition: 0.5s;
}

.nav-item.contact:hover {
    background: #fff !important;
    color: var(--second-clr) !important;
    box-shadow: 5px 5px 20px rgb(0 0 0 / 15%);
}

.nav-item:hover {
    background-color: #e7e7e7;
    border-radius: 15px;
    color: var(--second-clr);
}

.nav-item.dropdwn {
    background-color: #e7e7e7;
    border-radius: 15px;
    height: 50px;
    overflow-x: scroll;
}

/* *****hero****** */

.landing {
    height: 100vh;
    width: 100%;
    overflow-x: hidden;
}

.landing img {
    width: 105%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    position: relative;
    /* top: 0; */
    left: -13px;
    /* z-index: -1; */
    /* opacity: 0.7; */
}

.landing .container {
    height: 100%;
}

.landing-content {
    display: flex;
    /* align-items: center; */
    justify-content: center;
}

.cta-btn-alt {
    border-radius: 15px;
    padding: 10px 20px;
    background-color: var(--second-clr);
    color: #ffff;
    font-weight: 400;
    transition: 0.5s;
    width: max-content;
    text-decoration: none;
    margin-bottom: 20px;
}

.cta-btn-alt:hover {
    background-color: var(--main-clr);
    color: #ffffff;
}

/* Counter Section */
.counter-section {
    padding: 60px 0 80px;
    position: relative;
    background: #f9fafb;
    margin-top: -80px;
    z-index: 1;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: #f9fafb;
    z-index: -1;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counter-item {
    background: white;
    border-radius: 16px;
    padding: 20px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--main-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--main-clr);
    transition: all 0.3s ease;
}

.counter-item:hover .counter-icon {
    background: var(--main-clr);
    color: white;
    transform: scale(1.1);
}

.counter-content h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--main-clr);
    margin: 0 0 10px;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.counter-item:hover .counter-content h3 {
    color: var(--second-clr);
}

.counter-content p {
    color: #666;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.counter-content p::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--second-clr);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.counter-item:hover .counter-content p::after {
    width: 100%;
}

/* --- services --- */
#services {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: white;
}

.next_button,
.prev_button {
    position: absolute;
    top: 45%;
    border: none;
    border-radius: 10px;
    background: rgb(255 255 255 / 64%);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    z-index: 1;
    box-shadow: 1px 1px 6px -1px #66666663;
}

.next_button {
    right: -11px;
}

.prev_button {
    left: -11px;
}

#service_cards .row>div {
    margin-top: 22px;
}

.service_cards .service_name {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px;
    position: relative;
    bottom: 71px;
    /* left: 0px; */
    color: rgb(0, 0, 0);
    margin-left: 8px;
    background: #edfff7f2;
    padding-right: 10px;
    border-radius: 0 10px 10px 0;
    backdrop-filter: blur(30px);
    /* width: 100%; */
    /* background-image: linear-gradient(358deg, #0000009c, #0000001a); */
    /* height: 100%; */
    border-radius: 17px;
    margin: auto 8px;
}

.service_cards .service_name h3 {
    font-size: 18px;
    margin: 0;
    padding: 0;
    color: var(--second-clr);
}

.service_cards .service_name p {
    font-size: 15px;
    padding: 0;
    margin: 0;
    color: white;
    font-weight: 200;
}

.service_img_card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.service_img_card img {
    border-bottom: solid 2px var(--bg-secondary);
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 350px;
}

.service_card>div>div {
    padding: 13px 28px 20px 15px;
}

/********* about cnt ********/
.grid-items {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 5px;
    max-height: 450px;
    width: 100%;
}

.grid-item {

    /* display: flex; */
    border-radius: 25px;
    overflow: hidden;
    /* background: #351d590e; */
    /* background: #eee3ff; */
    /* color: #4d2c82; */
    gap: 15px;
    height: 100%;
    font-weight: 300;
    /* border: solid 1px; */

}

.grid-item div {
    padding: 10px 5px;
    gap: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.2;
}

.grid-item span {
    font-size: 40px;
    font-weight: 600;
    /* color: #4d2c82; */
}

.grid-item p {
    margin: 0;
}

.grid-item img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.item-1 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 4;
    background-color: #2e75b726;
    color: rgb(46, 117, 183);
}

.item-2 {
    grid-column-start: 5;
    grid-column-end: 10;
    grid-row-start: 1;
    grid-row-end: 4;
}

.item-3 {
    grid-column-start: 10;
    grid-column-end: 13;
    grid-row-start: 1;
    grid-row-end: 5;
}

.item-4 {
    grid-column-start: 1;
    grid-column-end: 6;
    grid-row-start: 4;
    grid-row-end: 9;
}

.item-5 {
    grid-column-start: 6;
    grid-column-end: 10;
    grid-row-start: 4;
    grid-row-end: 9;
    background: var(--main-clr);
    color: white;
    line-height: 1.2;
}

.item-6 {
    grid-column-start: 10;
    grid-column-end: 13;
    grid-row-start: 5;
    grid-row-end: 9;
}

.item-7 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 9;
    grid-row-end: 13;
    background: var(--main-clr);
    color: white;
    line-height: 1.2;
}

.item-8 {
    grid-column-start: 4;
    grid-column-end: 9;
    grid-row-start: 9;
    grid-row-end: 13;
}

.item-9 {
    grid-column-start: 9;
    grid-column-end: 13;
    grid-row-start: 9;
    grid-row-end: 13;
}

.item-9 div {
    color: #42B548;
    background-color: #42b54826;
}


.about_cnt {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
}

.sub_title {
    padding: 5px 10px;
    border-radius: 10px;
    border-radius: 10px;
    font-weight: 400;
    margin-right: auto;
}

.sub_title.grn {
    color: var(--main-clr);
    background-color: var(--main-light);
}

.sub_title.blu {
    color: var(--second-clr);
    background-color: var(--second-light)
}

.sec_title {
    font-weight: 500;
    font-size: 40px;
    line-height: 1;
    text-transform: capitalize;
    margin-bottom: 2rem;
}

.cta-btn {
    background-color: var(--main-clr);
    color: #ffff;
    border: solid 1px var(--main-clr);
    border-radius: 15px;
    padding: 10px 20px;
    transition: 0.5s;
    width: max-content;
}

.cta-btn:hover {
    background-color: #127517;
}

.sec-p {
    line-height: 1.3;
    font-weight: 400;
    color: #3d3d3d;
}

#vis-mis .container {
    padding: 17px;
    border-radius: 30px;
    background-color: var(--main-dark-1);
    color: white;
}

.vis-mis-img>img {
    max-height: 150px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    /* border-radius: 25px; */
    /* border: solid 1px #e9e9e9; */
}

.vis-mis-content>p {
    line-height: 1.3;
    font-weight: 300;
    color: #ffffffc7;
}

.vis-mis-content .point {
    margin: 0;
    padding: 0px 5px;
    border-right: solid 2px var(--main-clr);
    margin-bottom: 5px;
}

.vis-mis-content h2 {
    color: var(--third-color) !important;
}

.vis-mis-desc {
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.points ul {
    font-weight: 200;
    line-height: 1.2;
}

.points ul li span {
    font-weight: 400;
}

.points ul li span svg {
    color: var(--main-clr);
}

.commitment_img img,
.team_img img {
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.team_img span {
    left: 15px;
    bottom: 15px;
    padding: 10px;
    background: white;
    border-radius: 15px;
    color: var(--second-clr);
}

.team_cnt {
    display: flex;
    flex-direction: column;
}

.commitment_cnt p b {
    color: var(--main-clr);
    font-weight: 600;
}

.commitment_cnt {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}



.mission-BG {
    margin-top: 7rem;
}

.mission-flex {
    display: flex;
    /* background-color: #123458; */
    border-radius: 12px;
}

.mission-content {
    /* padding: 5rem 2rem; */
    color: #fff;
}

.mission-cnt {
    background-color: #0a3456;
    padding: 1.5rem;
    border-radius: 10px;
    height: calc(100% - 1rem);
}

.mission-cnt img {
    background-color: #F1EFEC;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 2rem;
    height: 70px;
    width: 70px
}

.mission-cnt h5 {
    font-size: 22px;
    margin-bottom: 1.5rem;
}

.mission-cnt p {
    font-size: 15px;
}

.mission-img img {
    width: 480px;
    height: calc(100% - 1rem);
    object-fit: cover;
    object-position: center;
    border-radius: 12px 12px 12px 12px;
}


/*******footer******/

#cta-home {
    margin-bottom: 3rem;
}


footer {
    color: #fff;
    background-color: #041130;
    padding: 2.5rem 0rem;
}
footer a {
    color: #fff;
    display: inline-block;
}

.ftr_cnt {
    height: 100%;
    display: grid;
    align-content: space-between;
}

.ftr_links {
    border-bottom: 1px solid #ffffff40;
    margin-bottom: 2rem;
}

.ftr_links h6 {
    font-size: 22px;
}

.ftr_links ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    gap: 2rem;
    font-size: 15px;
    margin-bottom: 2rem;
}

.ftr_adrs {
    display: flex;
    gap: 2.5rem;
}

.adrs_item h5 {
    font-size: 20px;
    margin-bottom: 0.8rem;
}

.adrs_item p {
    font-size: 15px;
}

.cp-right p {
    font-size: 14px;
}

.ftr_cnt p {
    font-size: 15px;
    width: 80%;
}

/* *****************about page************** */

.banner-inner {
    min-height: 350px;
    width: 100%;
    display: grid;
    align-items: end;
    justify-content: center;
}

.banner_inner-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50vh;
    position: relative;
}

.banner-inner .overlay {
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to bottom,
            rgb(0 0 0 / 0%),
            rgba(0, 0, 0, 0.644));
    z-index: 0;
}

.inner-title-main {
    margin-top: 130px;
    color: white;
    font-weight: 500;
    width: 100%;
    font-size: 60px;
    text-transform: capitalize;
    z-index: 1;
    /* position: relative; */
    position: absolute;
    /* margin-top: 50px; */
    /* font-size: 64px; */
    color: #fff;
    font-weight: 600;
    left: 50%;
    top: 32%;
    transform: translate(-50%, -85%);
    text-align: center;
}

.inner-title-p {
    position: absolute;
    font-size: 18px;
    color: #fff;
    left: 50%;
    top: 82%;
    transform: translate(-50%, -85%);
    text-align: center;
    z-index: 1;
}

.inner-title-float {
    -webkit-text-stroke: 0.3px #ffffff82;
    font-size: 108px;
    color: transparent;
    font-weight: 700;
    opacity: 0.4;
    text-align: center;
    width: max-content;
    z-index: 1;
    margin-bottom: 20px;
    position: relative;
    font-family: Arial, Helvetica, sans-serif;
}

.banner-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-inner.about {
    background-image: url('../img/banner.jpg');
}

.banner-inner-desc {
    padding: 30px;
    border-radius: 30px;
    max-width: 992px;
    margin: 4rem auto;
    z-index: 10;
    position: relative;
    color: hsl(0deg 0% 0%);
    background-color: #ffffff;
    text-align: center;
    font-size: 17px;
    box-shadow: 0px 4px 21px 0px hsl(0deg 0% 0% / 9%);
}

.ach_img {
    padding: 5px 25px;
    font-size: 40px;
    background: var(--second-light);
    width: max-content;
    margin-bottom: 10px;
    border-radius: 15px;
    color: var(--second-clr);
}

/* ******achiev******** */
#achievements {
    padding: 40px 0;
    background-color: var(--main-light-2);
    /* color: white; */

}

.ach_cnt h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 1.2;
}

.ach_cnt p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: hsla(0, 0%, 0%, 0.8);
}

/* *********services********* */

#index-servi{
    margin-top: 5rem;
}

.service_card {
    padding: 20px;
    border-radius: 30px;
    background: var(--second-light-2);
    height: 100%;
}

.service_card-inner {
    padding: 20px;
    border-radius: 30px;
    background: white
}

.service_card h4 {
    font-size: 20px;
    font-weight: 500;
}

.service_card p {
    /* font-size: 16px; */
    line-height: 1.5;
    font-weight: 400;
    color: hsla(0, 0%, 0%, 0.8);
}

.banner-inner.accounting {
    background: url('../img/Accounting-sevi.jpg');
}

.banner-inner.financial {
    background: url('img/financial.png');
}

.banner-inner.taxation {
    background: url('img/tax.png');
}

.banner-inner.ESR {
    background: url('img/tax.png');
}

.banner-inner.corporate {
    background: url('img/building-1.png')
}

.banner-inner.HR {
    background: url('img/hr.jpg')
}

.banner-inner.software {
    background: url('img/software-1.png');
}

.banner-inner {
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.service_card li svg {
    margin-right: 10px;
    color: var(--main-clr) !important;
}

.service_card span {
    color: var(--second-clr);
    padding: 5px 15px;
    background: var(--second-light);
    border-radius: 10px;
    font-size: 25px;
    margin-bottom: 15px;
}

.pop{
    transition: all ease 0.3s;
}
.pop:hover{
    transform: translateY(-7px) scale(1.01);
    box-shadow: 0 35px 39px -15px rgba(0, 0, 0, 0.1);
}


/* <---- Contact========= */

.contact-frm {
    padding-bottom: 0px;
    /* background: url(../images/about_bg.png); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conatct_space {
    text-align: left;
}

.getin_box {
    padding: 30px;
    background: #fff;
    border-radius: 20px 0px 0px 20px;
}

.getin_box h2 {
    font-size: 28px;
    color: var(--second-clr);
}

.getin_box p {
    font-size: 16px;
}

.getin_box .address {
    padding-left: 0%;
}

.getin_box .address i {
    font-size: 18px;
    margin-top: 4px;
}

.getin_box .address a {
    font-size: 14px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    transition: all 0.3s;
}

.head-adrs {
    border-radius: 12px;
    padding: 1rem;
    background-color: #f4f4f4;
    margin-bottom: 1rem;
}

.head-adrs h6 {
    font-size: 18px;
    margin-bottom: 1.2rem;
}

.marg-adrs {
    margin-top: 2.5rem;
}

.marg-adrs {
    color: #0a3456 !important;
}

.getin_box .address a:hover {
    color: var(--second-clr);
    transition: all 0.3s;
}

.getin_box .social_icons {
    margin-top: 15px;
    padding: 0%;
    display: flex;
    gap: 10px;
}

.getin_box .social_icons li a {
    list-style: none;
    float: left;
    font-size: 17px;
    height: 35px;
    width: 35px;
    background-color: var(--second-clr);
    color: #fff;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    border-radius: 30px;
}


.getin_box .social_icons li a:hover {
    margin-left: 0%;
    color: #ffff;
    background-color: #4AAE4C !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.getin_box .social_icons li i:hover {
    background-color: #333 !important;
    color: #fff !important;
    transition: all 0.3s !important;
    transform: translateY(-5px) !important;
}

.form_box {
    padding: 30px;
    border-radius: 15px;
    background-color: rgba(233, 233, 233, 0.478);
    /* background-position: center; */
    /* background-repeat: no-repeat; */
    /* background-size: cover; */
}

.form_box h2 {
    font-size: 25px;
    color: var(--second-clr);
    margin-bottom: 10px;
}

.form_box input,
.form_box textarea {
    width: 100%;
    margin-bottom: 20px;
    padding: 8px 10px;
    font-size: 15px;
    border-radius: 13px;
    border: 1px solid #0000003d;
    font-weight: 300;
}

.form_box input:focus-visible,
.form_box textarea:focus-visible {
    outline: 1px solid #000;
}

.form_box .main_btn2 {
    width: 100%;
    font-size: 15px;
    text-decoration: none;
    color: #fff;
    background-color: var(--second-clr);
    padding: 9px 20px;
    border: 1px solid var(--second-clr);
    border-radius: 13px;
    transition: all 0.3s ease 0s;
    text-align: center;
}

.plane_pic2 {
    transform: rotate(45deg) translateY(-2px);
    width: 17px;
    transition: all 0.2s ease 0s;
}

.form_box .main_btn2:hover {
    color: var(--second-clr);
    background-color: #fff;
    transition: all 0.3s ease 0s;
}

.form_box .main_btn2:hover .plane_pic2 {
    transform: rotate(45deg) translateY(-9px);
    transition: all 0.2s ease 0s;
}

/* <======== Thank-you========= */

.thanks_sec {
    /* background: url(../images/bg_design1.png); */
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    box-shadow: 0px 4px 7px 2px #00000010;
    padding: 60px 30px;
    border-radius: 30px;
}

.thanks_sec .love {
    text-align: center;
    font-size: 50px;
    color: #ED1B24;
    display: flex;
    justify-content: center;
    margin: auto;
}

.main_btn {
    padding: 10px;
    background: #f6f6f6;
    text-align: center;
    margin: 0;
    border-radius: 10px;
    border: none;
}

.thanks_sec .main_head {
    text-align: center;
    text-transform: capitalize;
    font-size: 50px;
}

.thanks_sec p {
    text-align: center;
    font-size: 20px !important;
}


iframe.g-map {
    padding: 10px;
    border-radius: 30px;
    margin-top: 30px !important;
}



label {
    display: block;
    margin: 10px 0 5px;
}

input[type="text"],
input[type="email"],
input[type="file"],
input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input[type="submit"] {
    background-color: #5cb85c;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #4cae4c;
}

.form_box {
    max-width: 750px;
    margin: auto;
}











/* ----------------------------------------------------------- */



.hero-content {
    position: absolute;
    bottom: 100px;
    color: #000000;
    z-index: 1;
    left: auto;
}
.first-cnt{
   font-size: 3.5rem;
   font-weight: 400;
}
.hero-content h1 {
    overflow: hidden;
}

.hero-content p {
    overflow: hidden;
}

.hero-content h1 span {
    display: block;
    animation: reveal 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

.hero-content p span {
    display: block;
    animation: reveal 3.6s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

@keyframes reveal {
    0% {
        transform: translate(0, 100%);
    }

    100% {
        transform: translate(0, 0);
    }
}





.key-section {
    position: relative;
    height: 30vh;
}

.key-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    background-color: #fff;
    width: fit-content;
    padding: 1.8rem 3rem;
    border-radius: 12px;
    margin: auto;
    margin-bottom: 4rem;
    position: absolute;
    left: 0;
    right: 0;
    top: -75px;
    box-shadow: 0px 5px 21px 9px #6666661f;
}

.key-item {
    background-color: #F8F4F0;
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    width: 250px;
}

.key-color-1 {
    background-color: #F0F8F5;
}

.key-color-2 {
    background-color: #F0F1F8;
}

.key-item h2 {
    font-size: 50px;
    color: #02568c;
}

.key-item p {
    font-size: 20px;
}


.servi-head {
    text-align: center;
    width: 80%;
    margin: auto;
    margin-bottom: 4rem;
}

.servi-head h2 {
    font-size: 45px;
}

.service-items {
    position: relative;
    cursor: pointer;
    margin: 0rem 1rem;
}

.service-items::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 53%) 100%);
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.service-items img {
    width: 100%;
    border-radius: 12px;
}

.service-name {
    font-size: 22px;
    position: absolute;
    bottom: 15px;
    padding: 1rem;
    color: #fff;
    z-index: 1;
    width: 100%;
}

.service-name h3 {
    font-size: 22px;
}

.service-name img {
    width: 60px;
    transform: translateY(10px);
    opacity: 0;
    display: none;
    transition: all 1s ease 0s;
}

.service-items:hover .service-name img {
    transform: translateY(0px);
    opacity: 1;
    display: block;
    transition: all 1s ease 0s;
}
#valuation{
    margin-bottom: 5rem;
}


.team-section {
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.team_title {
    text-align: center;
    margin-bottom: 3.5rem;
}

.team_title h2 {
    font-size: 35px;
}

.team_card {
    background-color: #f5f5f5;
    border-radius: 12px;
    padding-bottom: 1.2rem;
    height: calc(100% - 0.5rem);
}

.card_head {
    background-color: #0a3456;
    color: #fff;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px 12px 0px 0px;
}

.card_btn button {
    border: 0px;
    background-color: #34b052;
    color: #fff;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 17px;
}

.card_cnt {
    padding: 1.2rem;
}

.card_cnt p {
    font-size: 15px;
    text-align: justify;
    word-spacing: -1.5px;
}

.height-fix{
    margin-top: 2.8rem !important;
}
.card_skills {
    background-color: #0076be1a;
    padding: 1.2rem;
    margin: 0rem 1.2rem;
    border-radius: 10px;
}

.card_skills h6 {
    font-size: 18px;
    margin-bottom: 1rem;
    color: #003454;
}

.card_skills ul {
    line-height: 1.7;
    margin-bottom: 0;
}



.servi-cnt p {
    margin-bottom: 2rem;
}

.servi-provide ul {
    font-size: 15px;
    color: #303030;
}

.servi-provide ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 30px;
}

.servi-provide img {
    position: absolute;
    top: 3px;
    left: 0;
    width: 19px;
}

.servi-provide span {
    font-size: 17px;
    font-weight: 500;
    color: #0a3456;
}

.cp-left img{
    margin-bottom: 1rem;
    width: 245px;
}


.cpr_ftr{
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #ffffff30;
    margin-top: 2rem;
}
.cpr_ftr p{
    margin-bottom: 0;
    font-size: 14px;
}