 
@font-face {
    font-family: 'PT Serif';
    src: url('../fonts/PTSerif-Bold.woff2') format('woff2'),
        url('../fonts/PTSerif-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.woff2') format('woff2'),
        url('../fonts/Poppins-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.woff2') format('woff2'),
        url('../fonts/Poppins-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'),
        url('../fonts/Poppins-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.woff2') format('woff2'),
        url('../fonts/Poppins-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Black.woff2') format('woff2'),
        url('../fonts/Poppins-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
 
:root { 
    --primary-orange: #F47621;
    --dark-blue: #162D3C;
    --secondary-dark: #12141D; 
    --light-bg: #EEEFE7;
    --light-bg-alt: #FBE8DBB8; 
    --light-blue-bg: #EBF4FF; 
    --testimonial-bg: #DFDFDF;
    --light-orange-bg: #FFF4EF; 
    --footer-bg: var(--dark-blue);
    --footer-icon-bg: #1C3342;
    --white: #FFFFFF;
    --black: #000000; 
    --text-light: #FFFFFF;
    --text-dark: #162D3C;
    --text-black: #000000;
    --text-gray: #666;
    --text-gray-alt: #52525B;
    --text-gray-light: #8A969D;
    --text-placeholder: #837676;
    --text-footer: #A9B4B8;
    --text-footer-links: #B4C3D5;
    --footer-heading-color: #FFEBEB; 
    --accent-pink: #FF8181;
    --accent-yellow: #F5C134; 
    --border-color: #999898;
    --border-color-focus: #e6e6e6;
    --border-color-light: #E0E0E0;
    --owl-dot-inactive: #C2C3BF;
    --owl-dot-active-testimonial: #D1D1D1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-gray);
    overflow-x: hidden;
    background-color: var(--light-bg);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    outline: none;
    color: var(--text-black-light);
}

img {
    max-width: 100%;
    height: auto;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'PT Serif', serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    line-height: 1.428;
    font-weight: 500;
    color: var(--text-black);
    margin: 0;
    padding: 0;
}

/*--------------------------------------------------------------
  1.1: FORM
--------------------------------------------------------------*/
input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"],
textarea,
select {
    border: 1px solid var(--border-color);
    padding: 7px 20px;
    max-width: 100%;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="tel"],
input[type="search"],
input[type="url"] {
    height: 42px;
    border-radius: 4px;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
button:focus,
select:focus {
    outline: none;
    border-color: var(--border-color-focus) !important;
}

:focus {
    outline: none;
}

/*--------------------------------------------------------------
  2.0: owlCarousel css
--------------------------------------------------------------*/
.owlCarousel img {
    width: auto;
}

.owl-theme .owl-dots .owl-dot span {
    width: 18px;
    height: 10px;
    background: var(--owl-dot-inactive);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-dark);
}

/*--------------------------------------------------------------
  3.0: Header
--------------------------------------------------------------*/
header {
    padding: 20px 0;
    background-color: var(--white);
}

.header-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

nav ul li a:hover {
    color: var(--primary-orange) !important;
}

nav ul li a.active {
    color: var(--primary-orange) !important;
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
}

.header-button {
    background-color: var(--primary-orange);
    color: var(--text-light); 
    padding: 12px 28px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.header-button:hover { 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: var(--white); 
}

header {
    padding: 20px 0;
    background-color: var(--white);
    position: relative;  
}

.header-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 100;  
}

 
.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}
 

nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
}

 
.mobile-nav-toggle {
    display: none;  
    position: relative;
    z-index: 9999;
    background: transparent;
    border: 0;
    width: 2rem;
    aspect-ratio: 1;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 45, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
}

.mobile-nav-toggle[aria-expanded="true"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2822, 45, 60, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M24 6L6 24'/%3e%3c/svg%3e");
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
} 
.hero-content {
    padding-top: 60px;
    position: relative;
    z-index: 2;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-blue);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 85%, 0% 100%);
    z-index: -1;
}

.hero-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.hero-text h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
    min-width: fit-content;
}

.phone-box {
    background-color: var(--white);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 8px;
    font-weight: 700;
    font-size: 24px;
    padding-left: 25px;
}

.call-now-btn {
    background-color: var(--primary-orange);
    color: var(--text-light);
    border: none;
    border-radius: 25px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-left: 20px;
}

.rating-box {
    color: var(--text-light);
    text-align: left;
}

.stars {
    color: var(--primary-orange);
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
}

.stars p {
    color: #CED3D6 !important;
}

.rating-box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray-light);
}

.illustration-container {
    position: relative;
    z-index: 1;
    padding-top: 50px;
}

.illustration-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/banner-smimg.png);
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

.illustration-container img {
    width: calc(100% - 50px);
    margin-left: auto;
    height: auto;
    display: block;
    background-color: var(--white);
    border-radius: 40px;
}

.why-choose-us {
    padding: 100px 0;
    margin-top: 50px;
    overflow: hidden;
    position: relative;
}

.why-choose-us .section-content {
    display: flex;
    align-items: center;
    gap: 80px;
}

.image-column {
    flex: 1;
}

.image-wrapper {
    position: relative;
    width: 100%;
}

.image-wrapper>img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.satisfied-customers-box {
    position: absolute;
    bottom: -30px;
    right: -40px;
    background-color: var(--dark-blue);
    color: var(--text-light);
    padding: 25px 10px;
    border-radius: 15px;
    text-align: center;
    width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.satisfied-customers-box .number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    line-height: 50px;
    color: var(--primary-orange);
}

.satisfied-customers-box .text {
    font-size: 16px;
    color: var(--primary-orange);
}

.shape-semicircle {
    position: absolute;
    top: -30px;
    left: -39px;
    width: 180px;
    height: 90px;
    background-color: var(--accent-pink);
    border-radius: 90px 90px 0 0;
    transform: rotate(144deg);
}

.text-column {
    flex: 1;
    position: relative;
    padding-right: 150px;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    top: 5%;
    right: 12%;
    width: 270px;
    height: 492px;
    background-image: url('../images/chooserightbg.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 12%;
    width: 260px;
    height: 260px;
    background-image: url('../images/chooseleftbg.png');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}


.text-column h2 {
    font-size: 42px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.text-column p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-black);
    margin-bottom: 30px;
}

.text-column ul {
    list-style: none;
    margin-bottom: 40px;
}

.text-column ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-black);
    margin-bottom: 15px;
}

.text-column ul li svg path {
    fill: var(--text-black);
}

.text-column .header-button {
    display: inline-block;
}


.services-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 220px;
    background-image: url('../images/chimgbg.png');
    background-repeat: no-repeat;
    background-position: 50px center;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--light-bg-alt);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 50% 85%, 0% 100%);
    z-index: -1;
}

.services-section::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 20px;
    width: 150px;
    height: 80px;
    background-image: radial-gradient(var(--accent-yellow) 20%, transparent 20%);
    background-size: 15px 15px;
    z-index: 2;
}


.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.services-header h2 {
    font-size: 42px;
    color: var(--dark-blue);
    font-weight: 700;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 40px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon-background {
    background-color: var(--light-blue-bg);
    border-radius: 15px;
    display: inline-flex;
    padding: 36px;
    margin-bottom: 25px;
    width: 180px;
    height: 180px;
    margin-top: -80px;
}

.icon-background img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-black);
    font-weight: 400;
}

.testimonial-section {
    padding: 100px 0;
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.testimonial-header .title-part {
    flex-basis: 40%;
}

.testimonial-header h2 {
    font-size: 42px;
    color: var(--text-black);
    font-weight: 700;
    line-height: 1.3;
}

.testimonial-header .description-part {
    flex-basis: 60%;
    max-width: 500px;
}

.testimonial-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-black);
}

.testimonial-card {
    background-color: var(--testimonial-bg);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 10px;
}

.testimonial-card .stars {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 20px;
    justify-content: center;
    max-width: 130px;
    margin: 0 auto 20px auto;
}

.testimonial-card .quote {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-black);
    margin-bottom: 30px;
    font-weight: 400;
}

.client-info img {
    width: 80px !important;
    height: 80px;
    margin: 0 auto;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.client-info .name {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-dark);
    margin-bottom: 5px;
}

.client-info .title {
    font-size: 16px;
    color: var(--text-gray-alt);
}

.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    margin: 0 2px;
}

.testimonial-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background-color: var(--owl-dot-active-testimonial);
    display: block;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.testimonial-carousel .owl-dot.active span {
    background-color: var(--dark-blue);
    width: 30px;
    border-radius: 10px;
}

.how-we-work-section {
    padding: 120px 0;
    position: relative;
}

.how-we-work-section::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.5;
    width: 300px;
    height: 300px;
    background-color: var(--light-orange-bg);
    left: -150px;
    top: 50%;
    transform: translateY(-50%);
}

.process-steps::before {
    content: '';
    width: 250px;
    height: 250px;
    right: 0;
    bottom: -192px;
    background-image: url(../images/roundshap.svg);
    position: absolute;
    background-repeat: no-repeat;
    z-index: 1;
    background-size: contain;
}

.how-we-work-section .section-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 80px auto;
}

.how-we-work-section .section-header h2 {
    font-size: 42px;
    color: var(--text-black);
    font-weight: 700;
    margin-bottom: 20px;
}

.how-we-work-section .section-header p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-black);
}

.process-steps {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    border: 1px solid #f0f0f0;
    width: 30%;
    position: relative;
}

.process-card.middle-card {
    margin-top: 50px;
}

.process-card .illustration {
    height: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

.process-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-black);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-black);
    font-weight: 400;
    margin-bottom: 25px;
}

.learn-more {
    text-decoration: none;
    color: var(--primary-orange);
    font-weight: 600;
    transition: color 0.3s ease;
}

.learn-more span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.learn-more:hover span {
    transform: translateX(5px);
}

.process-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30%;
    right: -17%;
    width: 18%;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="40" xmlns="http://www.w3.org/2000/svg"><path d="M5 35 Q 50 5, 95 20" stroke="%23F47621" stroke-width="2" fill="none" stroke-dasharray="4 4"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.process-card.middle-card::after {
    top: 40%;
    transform: scaleY(-1);
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-footer);
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
    margin-top: 150px;
}

.cta-box {
    background-color: var(--primary-orange);
    background-image: url(../images/roundshap.svg);
    color: var(--text-light);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1150px;
    z-index: 10;
    background-repeat: no-repeat;
    background-position: calc(50% + 50px) top;
}


.cta-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--white);
}

.subscribe-form {
    display: flex;
    background-color: var(--white);
    border-radius: 30px;
    padding: 5px;
    min-width: 400px;
}

.subscribe-form input {
    border: none;
    outline: none;
    background: transparent;
    padding: 14px 20px;
    font-size: 16px;
    flex-grow: 1;
    height: 100%;
    color: var(--text-placeholder);
}

.subscribe-form button {
    background-color: var(--primary-orange);
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 25px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--footer-heading-color);
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-footer-links);
    font-weight: 400;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 20px;
}

.social-icons a {
    color: var(--dark-blue);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin-right: 10px;
    transition: filter 0.3s;
}

.social-icons a:hover {
    filter: invert(58%) sepia(59%) saturate(5436%) hue-rotate(359deg) brightness(98%) contrast(93%);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: var(--text-footer-links);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-weight: 400;
}

.footer-col ul a:hover {
    color: var(--primary-orange);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item .icon {
    background-color: var(--footer-icon-bg);
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 400;
}