/* ==========================
   Global Styles
========================== */

:root {
    --primary-color: #18bee4;
    --bg-color: #18bee4;
    --secondary-color: #2483c5;
    --text-color: #7a7f88;
    --heading-color: #000000;
}

/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

p a {
    color: #18bee4;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Onest", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    letter-spacing: 0.5px;
    overflow-x: hidden;
}

/* Links */

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Paragraph */

p {
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0.5px;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Onest", sans-serif;
    color: var(--heading-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

h1 {
    font-size: 50px;
    line-height: 1.2;
}

h2 {
    font-size: 40px;
    line-height: 1.2;
}

h3 {
    font-size: 25px;
    line-height: 1.3;
}

h4,
h5,
h6 {
    font-size: 18px;
    line-height: 1.4;
}

/* Images */

img {
    max-width: 100%;
}

/* Lists */

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utility Classes */

.text-primary {
    color: var(--primary-color) !important;
}

.text-secondary {
    color: var(--secondary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-secondary {
    background-color: var(--secondary-color) !important;
}

/* topbar css start */

.topbar-main {
    background-color: var(--bg-color);
    position: relative;
    padding: 5px 0;
    z-index: 5;
    overflow: hidden;
}

.topbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.topbar-right ul {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.25);
    padding-left: 28px;
    padding-top: 12.5px;
    padding-bottom: 12.5px;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    z-index: 1;
}

.topbar-right ul::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    right: -1000000px;
    background-color: rgba(255, 255, 255, 0.25);
    z-index: -1;
}

.topbar-right ul li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    z-index: 1;
}

.topbar-right ul li .content p {
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    margin-bottom: 5px;
    color: #fff;
}

.topbar-right ul li .content h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 16px;
    margin-bottom: 0;
    color: #fff;
}

.topbar-right ul li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    background-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.topbar-right ul li .icon span {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: #18bee4;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.topbar-social-meadia {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.topbar-social-meadia a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    height: 38px;
    width: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.topbar-social-meadia a::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: #fff;
    border-radius: 50%;
    transform: scale(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
    z-index: -1;
}

.topbar-social-meadia a:hover {
    color: #18bee4;
    border: 1px solid #fff;
}

.topbar-social-meadia a:hover:before {
    transform: scaleX(1);
}

/* topbar css end */

/* Main Navbar Css Start */

.main-navbar {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.main-navbar .navbar-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.main-navbar .navbar-wrapper .logo-area img {
    max-width: 180px;
}

.navbar-menu-box {
    position: relative;
}

ul.navbar-menu-list {
    position: relative;
    display: flex;
}

ul.navbar-menu-list li {
    position: relative;
    margin-left: 32px;
}

ul.navbar-menu-list li:first-child {
    margin-left: 0;
}

ul.navbar-menu-list li a:hover,
ul.navbar-menu-list li a.active {
    color: #2483c5;
}

ul.navbar-menu-list li a.active:before {
    transform: scale(1, 1);
    transform-origin: right center;
}

ul.navbar-menu-list li a {
    color: #000;
    font-size: 18px;
    font-weight: 400;
    position: relative;
}

span.dropdown-toggles {
    color: #000;
}

ul.navbar-menu-list li a::before {
    content: "";
    height: 2px;
    border-radius: 0px;
    background-color: #2483c5;
    position: absolute;
    bottom: -3px;
    left: 0px;
    right: 0px;
    transition: transform 500ms ease;
    transform: scale(0, 1);
    transform-origin: right;
    z-index: 1;
}

ul.navbar-menu-list li a:hover::before {
    transform: scaleX(1);
}

.theme-btn {
    background-color: var(--bg-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
}

.theme-btn span.icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.theme-btn span.icon svg {
    width: 25px;
    height: 25px;
    transition: transform 0.35s ease;
    transform-origin: center;
}

/* Button hover par SVG 90 degree rotate hoga */
.theme-btn:hover span.icon svg {
    transform: rotate(45deg);
}

ul.dropdown-box-menu {
    visibility: hidden;
    opacity: 0;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    position: absolute;
    background: #fff;
    top: 100px;
    z-index: 1;
    transition: all 0.4s;
    border-radius: 5px;
    padding: 15px;
    width: 340px;
}

ul.dropdown-box-menu li {
    margin-left: 0;
}

li.navbar-dropdown-menu:hover ul {
    visibility: visible;
    transition: all 0.5s ease-in-out;
    opacity: 1;
    z-index: 9;
    top: 40px;
    position: absolute;
    transition: all 0.4s;
}

.mobile-nav-icon {
    font-size: 23px;
    border: 2px solid;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: #18bee4;
}

span.menu-close {
    display: none;
}

.mobile-nav-icon.dots-menu {
    display: none;
}

ul.dropdown-box-menu li a {
    padding: 8px;
    display: block;
}

/* Main Navbar Css End */

/* Service areas */
.service-area-dropdown {
    width: 520px !important;
    grid-template-columns: 1fr 1fr;
}
li.navbar-dropdown-menu:hover .service-area-dropdown {
    display: grid;
}
.service-area-dropdown li a {
    font-size: 15px !important;
}

.areas-hero,
.area-detail-hero {
    position: relative;
    overflow: hidden;
    background: #071b2f;
    color: #fff;
}
.areas-hero::before,
.area-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(24, 190, 228, 0.22),
            transparent 33%
        ),
        linear-gradient(115deg, transparent 55%, rgba(255, 255, 255, 0.035) 55%);
}
.areas-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 105px;
    padding-bottom: 110px;
}
.areas-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}
.areas-eyebrow i {
    color: #18bee4;
}
.areas-hero h1,
.area-detail-hero h1 {
    color: #fff;
    font-size: clamp(46px, 6vw, 65px);
    line-height: 1.05;
    letter-spacing: -3px;
    max-width: 850px;
    margin-bottom: 24px;
}
.areas-hero h1 span,
.area-detail-hero h1 span {
    color: #18bee4;
}
.areas-hero p,
.area-detail-hero p {
    color: #b9c7d3;
    font-size: 19px;
    line-height: 1.75;
    max-width: 690px;
}
.areas-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 34px;
}
.area-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    color: #06192b;
    background: #18bee4;
    padding: 17px 22px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
}
.area-primary-btn:hover {
    color: #06192b;
    background: #fff;
    transform: translateY(-2px);
}
.area-phone-link {
    color: #fff;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    font-weight: 650;
}
.area-phone-link:hover {
    color: #18bee4;
}
.areas-directory {
    padding: 105px 0;
    background: #f7fafb;
}
.areas-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}
.areas-heading h2,
.area-section-heading h2,
.area-why-section h2 {
    color: #071b2f;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin: 8px 0 0;
}
.areas-heading p {
    max-width: 510px;
    color: #667787;
    font-size: 17px;
    margin: 0;
}
.areas-kicker {
    color: #1286a2;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.7px;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.area-card {
    display: flex;
    align-items: center;
    gap: 15px;
    min-height: 105px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e4eaee;
    border-radius: 16px;
    color: #071b2f;
    box-shadow: 0 7px 25px rgba(7, 27, 47, 0.04);
    transition: 0.3s ease;
}
.area-card:hover {
    color: #071b2f;
    transform: translateY(-5px);
    border-color: #18bee4;
    box-shadow: 0 15px 38px rgba(7, 27, 47, 0.1);
}
.area-card-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #e8fafd;
    color: #139cbd;
    border-radius: 12px;
}
.area-card-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.area-card-copy small {
    color: #84929d;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}
.area-card-copy strong {
    font-size: 16px;
    margin-top: 2px;
}
.area-card-arrow {
    margin-left: auto;
    color: #a8b3bb;
    transition: 0.3s;
}
.area-card:hover .area-card-arrow {
    color: #18bee4;
    transform: translateX(3px);
}
.areas-trust-strip {
    padding: 38px 0;
    background: #fff;
    border-top: 1px solid #edf1f3;
}
.areas-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.areas-trust-grid > div {
    display: flex;
    align-items: center;
    gap: 14px;
}
.areas-trust-grid i {
    color: #18bee4;
    font-size: 24px;
}
.areas-trust-grid span {
    display: flex;
    flex-direction: column;
    color: #73818d;
    font-size: 12px;
}
.areas-trust-grid strong {
    color: #071b2f;
    font-size: 15px;
}

.area-detail-hero {
    padding: 28px 0 92px;
}
.area-detail-hero .container {
    position: relative;
    z-index: 2;
}
.area-detail-hero h1 {
    font-size: clamp(44px, 5vw, 65px);
}
.area-breadcrumb {
    display: flex;
    gap: 11px;
    align-items: center;
    color: #8fa1b1;
    font-size: 13px;
    margin-bottom: 67px;
}
.area-breadcrumb a {
    color: #b8c6d1;
}
.area-breadcrumb i {
    font-size: 9px;
}
.area-breadcrumb span {
    color: #18bee4;
}
.area-detail-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
}
.orb-one {
    width: 300px;
    height: 300px;
    right: -100px;
    top: -80px;
    background: rgba(24, 190, 228, 0.1);
}
.orb-two {
    width: 140px;
    height: 140px;
    left: 43%;
    bottom: -80px;
    border: 30px solid rgba(24, 190, 228, 0.08);
}
.area-hero-points {
    display: flex;
    gap: 23px;
    flex-wrap: wrap;
    margin-top: 31px;
    color: #b9c7d3;
    font-size: 14px;
}
.area-hero-points i {
    color: #18bee4;
    margin-right: 5px;
}
.area-quote-card {
    background: #fff;
    color: #071b2f;
    padding: 38px;
    border-radius: 22px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.quote-card-label {
    color: #1286a2;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}
.area-quote-card h2 {
    font-size: 31px;
    line-height: 1.2;
    margin: 10px 0 13px;
}
.area-quote-card p {
    color: #667787;
    font-size: 15px;
    line-height: 1.6;
}
.area-quote-card ul {
    padding: 0;
    margin: 22px 0;
}
.area-quote-card li {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
    font-weight: 600;
}
.area-quote-card li i {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e6f9fc;
    color: #139cbd;
    font-size: 11px;
}
.area-quote-card > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #071b2f;
    color: #fff;
    padding: 16px 18px;
    border-radius: 11px;
    font-weight: 700;
}
.area-quote-card > a:hover {
    background: #18bee4;
    color: #071b2f;
}
.area-detail-content {
    padding: 105px 0;
}
.area-section-heading {
    text-align: center;
    max-width: 770px;
    margin: 0 auto 50px;
}
.area-section-heading p {
    color: #697988;
    font-size: 17px;
    margin-top: 18px;
}
.area-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.area-service-card {
    padding: 31px;
    border: 1px solid #e4eaee;
    border-radius: 18px;
    transition: 0.3s;
}
.area-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(7, 27, 47, 0.09);
    border-color: transparent;
}
.area-service-card > span {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    background: #e8fafd;
    color: #129cbd;
    border-radius: 13px;
    font-size: 20px;
}
.area-service-card h3 {
    color: #071b2f;
    font-size: 20px;
    margin: 22px 0 10px;
}
.area-service-card p {
    color: #6d7b87;
    font-size: 14px;
    line-height: 1.65;
    margin: 0;
}
.area-why-section {
    background: #f3f8fa;
    padding: 105px 0;
}
.area-why-section p {
    color: #687987;
    font-size: 17px;
    line-height: 1.75;
    margin: 22px 0 28px;
}
.area-visual {
    min-height: 460px;
    position: relative;
    background: #071b2f;
    border-radius: 25px;
    overflow: hidden;
    padding: 45px;
    display: flex;
    align-items: center;
}
.area-visual::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: #18bee4;
    right: -90px;
    bottom: -110px;
    opacity: 0.22;
}
.visual-main {
    color: #fff;
    font-size: 35px;
    line-height: 1.25;
}
.visual-main > i {
    display: block;
    color: #18bee4;
    font-size: 35px;
    margin-bottom: 20px;
}
.visual-stat {
    position: absolute;
    top: 35px;
    right: 30px;
    background: #fff;
    padding: 18px 21px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
}
.visual-stat strong {
    color: #071b2f;
    font-size: 25px;
}
.visual-stat span {
    color: #71808d;
    font-size: 11px;
}
.visual-location {
    position: absolute;
    bottom: 32px;
    left: 40px;
    color: #b9c7d3;
}
.visual-location i {
    color: #18bee4;
    margin-right: 8px;
}
.area-benefits {
    display: grid;
    gap: 15px;
}
.area-benefits > div {
    display: flex;
    gap: 15px;
    padding: 16px;
    background: #fff;
    border-radius: 13px;
}
.area-benefits i {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: #1196b7;
    background: #e7f9fc;
    border-radius: 11px;
}
.area-benefits span {
    color: #74828d;
    font-size: 13px;
    display: flex;
    flex-direction: column;
}
.area-benefits strong {
    color: #071b2f;
    font-size: 16px;
}
.area-faq-section {
    padding: 100px 0;
}
.area-faq-list {
    max-width: 850px;
    margin: auto;
}
.area-faq-list details {
    border-bottom: 1px solid #dfe6ea;
}
.area-faq-list summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5px;
    font-size: 18px;
    font-weight: 700;
    color: #071b2f;
}
.area-faq-list summary::-webkit-details-marker {
    display: none;
}
.area-faq-list summary i {
    color: #18bee4;
    transition: 0.3s;
}
.area-faq-list details[open] summary i {
    transform: rotate(45deg);
}
.area-faq-list details p {
    color: #687987;
    line-height: 1.7;
    padding: 0 45px 23px 5px;
}
.area-bottom-cta {
    background: #18bee4;
    padding: 55px 0;
}
.area-bottom-cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.area-bottom-cta span {
    color: #0b5d72;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}
.area-bottom-cta h2 {
    color: #071b2f;
    font-size: 34px;
    margin: 7px 0 0;
}
.area-bottom-cta a {
    flex: 0 0 auto;
    background: #071b2f;
    color: #fff;
    padding: 16px 20px;
    border-radius: 11px;
    font-weight: 700;
}
.area-bottom-cta a i {
    margin-left: 14px;
}

/* Section Banner Css Start */

.banner-wrapper {
    position: relative;
    height: 100%;
    align-content: center;
}

section.banner-area {
    position: relative;
    padding: 100px 0;
    background-image: url("../assets/images/banner-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    /* height: 600px; */
    background-position: left bottom;
}

.section-tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #fff;
    width: fit-content;
    padding: 6px 20px;
    border-radius: 35px;
    color: #2483c5;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 30px;
}

.banner-wrapper h1 {
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
}

.banner-wrapper p {
    color: #fff;
    font-size: 18px;
    text-align: justify;
}

.banner-cta-btn {
    display: flex;
    gap: 30px;
}

.banner-contact-form {
    position: relative;
    padding: 30px;
    background-color: #fff;
    border-radius: 20px;
}

.banner-contact-form h3 {
    text-align: center;
    color: #2483c5;
    margin-bottom: 20px;
}

.banner-contact-form .form-group {
    margin-bottom: 16px;
}

.banner-contact-form .form-group label.form-label {
    color: #2483c5;
    font-size: 18px;
    font-weight: 500;
}

.banner-contact-form .form-group .form-control {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.banner-contact-form .form-group .form-select {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.banner-form-btn .theme-btn {
    border: none;
    width: 100%;
    justify-content: space-between;
}

/* Section Banner Css End */

/* section Features css start */

section.features-area {
    position: relative;
    padding: 50px 0;
}

.feature-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.feature-box .icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-box .icon img {
    width: 100%;
}

.feature-box .content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-box .content p {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 25px;
}

/* section Features css end */

/* section about us css start */

.features-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 30px;
    row-gap: 20px;
    width: 100%;
    max-width: 900px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}

.check-icon {
    width: 25px;
    height: 25px;
    min-width: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #1db8dc;
    border-radius: 50%;
}

.check-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
}

.check-icon svg path {
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 767px) {
    .features-list {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-item {
        font-size: 18px;
    }

    .check-icon {
        width: 25px;
        height: 25px;
        min-width: 25px;
    }
}

section.about-area {
    position: relative;
    padding: 60px 0;
}

.about-content {
    position: relative;
    padding-left: 20px;
}

.about-content .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    padding: 6px 20px;
}

.about-content h2 {
    font-size: 40px;
    line-height: 50px;
}

.about-img-area img {
    width: 100%;
    border-radius: 20px;
    height: 600px;
    object-fit: cover;
}

/* section about us css end */

/* section services css start */

section.services-area {
    position: relative;
    padding: 60px 0;
    background-image: url(../assets/images/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

section.services-area .section-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.section-title .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    margin: 0 auto 20px;
}

.section-title p {
    text-align: center;
}

.services-box {
    position: relative;
    padding: 20px;
    background-color: #fff;
    border-radius: 16px;
    margin-bottom: 40px;
}

.services-img {
    margin-bottom: 20px;
}

.services-img img {
    border-radius: 12px;
    width: 100%;
}

.services-content > a {
    color: #18bee4;
    font-size: 18px;
    font-weight: 500;
}

.services-btn {
    text-align: center;
}

/* section services css end */

/* Section Counter Css Start */

section.counter-area {
    background-color: #2483c5;
    position: relative;
    padding: 60px 0;
}

.counter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 0;
}

.counter-box {
    position: relative;
    display: flex;
    gap: 20px;
}

.counter-box .icon {
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.counter-text h3 {
    color: #fff;
    font-size: 50px;
    margin-bottom: 0;
}

.counter-text p {
    margin-bottom: 0;
    color: #fff;
}

.counter-box .icon img {
    max-width: 60px;
}

/* Section Counter Css End */

/* why choose us section css start */

.why-choose-us-content .section-tagline-box {
    background-color: #18bee4;
    color: #fff;
    padding: 6px 20px;
}

section.why-choose-us {
    position: relative;
    padding: 100px 0;
}

section.why-choose-us {
    position: relative;
    padding: 100px 0;
}

.why-choose-us-box {
    position: relative;
    padding: 20px;
}

.why-choose-us-box .icon {
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    background-image: url(../assets/images/services-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 20px;
}

.why-choose-us-box .icon img {
    max-width: 50px;
}

.why-choose-us-content h3 {
    font-size: 45px;
    font-weight: 700;
}

.why-choose-us-img img {
    width: 100%;
    max-width: 500px;
}

.why-choose-us-img {
    text-align: right;
}

.why-choose-us-box .content h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.why-choose-us-box .content p {
    margin-bottom: 0;
}

.why-choose-us-box {
    position: relative;
    padding: 20px;
    border: 1px solid #18bee4;
    border-radius: 16px;
    margin-bottom: 30px;
}

/* why choose us section css end */

/* contact form area css start */

section.contact-area {
    background-color: #2483c5;
    padding: 100px 0;
    position: relative;
}

section.contact-area::before {
    content: "";
    background-image: url(../assets/images/shape-2.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
}

.contact-area-img img {
    width: 100%;
    border-radius: 16px;
    height: 600px;
    object-fit: cover;
}

.contact-area-img {
    text-align: center;
    position: relative;
}

.contact-form-area {
    position: relative;
}

.contact-form-area h3 {
    font-size: 30px;
    color: #fff;
    line-height: 45px;
}

.contact-form-area .form-group .form-control {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.contact-form-area .form-group .form-select {
    box-shadow: none !important;
    outline: none !important;
    padding: 15px 20px;
    border-radius: 16px;
    color: #7a7f88;
    font-size: 16px;
    font-weight: 400;
}

.contact-form-area .form-group {
    margin-bottom: 20px;
}

.contact-form-area .form-group .form-label {
    color: #fff;
    font-size: 15px;
}

/* contact form area css end */

/* testimonails css start */

section.testimonails-area .section-title {
    position: relative;
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

section.testimonails-area {
    padding: 70px 0;
    background-image: url("../assets/images/services-bg.jpg");
    background-size: cover;
    overflow: hidden;
}

.testimonial-slider {
    overflow: hidden;
    width: 100%;
    margin-bottom: 25px;
}

.slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.testimonail-box {
    width: 500px;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    position: relative;
}

/* Top Row Left To Right */
.slider-left .slider-track {
    animation: slideLeft 15s linear infinite;
}

/* Bottom Row Right To Left */
.slider-right .slider-track {
    animation: slideRight 15s linear infinite;
}

.testimonail-box::before {
    content: "";
    background-image: url(../assets/images/quote-icon-1.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 20px;
    right: 30px;
    width: 120px;
    height: 100px;
    z-index: 0;
}

.star-rating i {
    color: #ffc107;
    font-size: 18px;
}

.testimonail-box h3 {
    margin-bottom: 10px;
}

.testimonail-box p {
    margin-bottom: 20px;
}

@keyframes slideLeft {
    from {
        transform: translateX(-50%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.star-rating {
    display: flex;
    gap: 5px;
}

/* testimonails css end */

/* footer css start */

footer.main-footer {
    background-color: #18bee4;
    padding: 80px 0 30px;
    position: relative;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    max-width: 260px;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-widget p {
    color: #fff;
    margin-bottom: 20px;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #ffffff61;
    padding: 15px 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.footer-social-media h4 {
    margin-bottom: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}

.copyright-line p a {
    color: #fff;
}

section.contact-area .section-title {
    position: relative;
    max-width: 900px;
    margin: 0 auto 45px;
    text-align: center;
}

section.contact-area .section-title h3 {
    color: #fff;
}

section.contact-area .section-title p {
    color: #fff;
}

section.contact-area .section-title p a {
    color: #000;
}

.footer-social-media-list a {
    position: relative;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    font-size: 17px;
    height: 38px;
    width: 38px;
    border: 2px solid #fff;
    transform: rotate(0);
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 1;
}

.footer-social-media-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-widget-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 40px;
}

.footer-box h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-box ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.footer-box ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.footer-box ul li::before {
    content: "";
    background-image: url(../assets/images/star.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 4px;
    left: 0;
    width: 15px;
    height: 15px;
    z-index: 0;
}

.footer-2 {
    background-color: #2483c5;
    padding: 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.footer-2-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1;
}

.footer-2-box .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    color: #2483c5;
    width: 50px;
    background-color: #fff;
    border-radius: 10px;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-size: 25px;
}

.footer-2-box .content p {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.footer-2-box .content h5 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
}

/* footer css end */

.breadcrumbs-area {
    position: relative;
    padding: 120px 0;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
        url("../assets/images/banner-bg.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
}

.breadcrumbs-content {
    text-align: center;
}

.breadcrumbs-content h1 {
    color: #fff;
    font-size: 58px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.breadcrumb-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.breadcrumb-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-list li a {
    color: #18bee4;
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-list li a:hover {
    color: #fff;
}

.breadcrumb-list span {
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 991px) {
    .breadcrumbs-area {
        padding: 90px 0;
    }

    .breadcrumbs-content h1 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .breadcrumbs-area {
        padding: 70px 0;
    }

    .breadcrumbs-content h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .breadcrumb-list li {
        font-size: 14px;
    }
}

/* services deatil page css start */

.service-sidebar-list ul li {
    margin-bottom: 10px;
    transition: 0.5s;
}

.service-sidebar-list ul li a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 30px;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 36px;
    border-radius: 10px;
    background-color: #18bee4;
    transition: all 0.5s ease 0s;
    z-index: 1;
}

.service-sidebar-list h5 {
    color: #000;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-sidebar {
    position: sticky;
    top: 30px;
}

.service-sidebar-list ul li a::after {
    content: "";
    width: 100%;
    height: 0;
    border-radius: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #50afe5;
    color: #fff;
    z-index: -1;
    transition: 0.3s;
}

.service-sidebar-list ul li a:hover::after {
    height: 100%;
}

.service-sidebar-list ul li a:hover {
    color: #fff;
}

section.services-deatil-page {
    position: relative;
    padding: 60px 0;
}
/* services deatil page css end */

.faq-wrapper {
    max-width: 850px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.faq-item.active {
    border-color: #50afe5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 22px 30px;
}

.faq-question h4 {
    font-size: 18px;
    color: #132238;
    font-weight: 600;
    margin: 0;
}

.faq-question span {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #50afe5;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 600;
    flex-shrink: 0;
}

.faq-answer {
    display: none;
    padding: 0 30px 25px;
}

.faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

.faq-item.active .faq-answer {
    display: block;
}

section.faq-page {
    position: relative;
    padding: 60px 0;
}

section.faq-page .section-title {
    margin: 0 auto 30px;
    text-align: center;
}
