* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #FFAC1C;
    --secondary: #1E1E1E;

    --text-yellow: #E69100;
    --text-black: #1e1e1e;
    --text-grey: #868593;
    --text-white: #fff;

    --white-bg: #fff;
    --black-bg: #1e1e1e;
    --grey-bg: #f2f3f4;
    --deep-grey-bg: #DDDEDF;
    --yellow-bg: #FFAC1C;
    --yellow-bg-deep: #E69100;
    --yellow-bg-light: #FFEAC6;

    --primary-font: "Montserrat", sans-serif;
    --secondary-font: "Roboto", sans-serif;
}

ol,
ul,
li,
a {
    list-style: none;
    text-decoration: none;
}

ol,
ul {
    padding: 0 !important;
    margin-bottom: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul {
    margin-bottom: 0 !important;
}

p {
    font-size: 16px !important;
    line-height: 1.6;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    background-color: var(--white-bg);
    color: var(--text-black);
    font-family: var(--secondary-font);
}

/* Top Bar */
.top-bar {
    background-color: var(--yellow-bg-deep);
}

.top-bar-container {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.top-bar p {
    color: var(--text-white);
}

.top-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-social a {
    height: 30px;
    width: 30px;
    border: 1px solid var(--black-bg);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-social a i {
    color: var(--text-black);
}

/* Navigations */
.navigation {
    padding: 1rem 0;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 150px;
}

.navigation-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 30px;
    background-color: var(--grey-bg);
    padding: 6px !important;
}

.navigation-links li {
    height: 100%;
}

.navigation-links li a {
    padding: 5px 24px;
    border-radius: 30px;
    display: block;
    color: var(--text-black);
    font-weight: 500;
    font-size: 17px;
}

.navigation-links li a.active-nav {
    background-color: var(--deep-grey-bg);
}

.close-btn,
.menu-btn {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: #000000;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-container {
    padding: 240px 2rem 2rem 2rem;
    position: relative;
    z-index: 3;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content img {
    width: 125px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    width: 60%;
}

.hero-left h2 {
    font-size: 4.5rem;
    color: var(--text-white);
    font-family: var(--primary-font);
    font-weight: 600;
    line-height: 1.1;
}

.hero-left .primary-btn {
    color: var(--text-black) !important;
    font-weight: 500;
    padding: 13px 36px;
}

.hero-right {
    width: 40%;
}

.hero-right p {
    color: var(--text-white);
    font-size: 22px !important;
    line-height: 1.8;
}

.hero-form {
    padding: 2rem;
    background-color: var(--white-bg);
    margin-top: 2.5rem;
    border-radius: 15px;
}

.hero-form h4 {
    font-weight: 600;
    font-family: var(--primary-font);
    font-size: 2rem;
    margin-bottom: 0.75rem !important;
}

.hero-form form {
    display: grid;
    grid-template-columns: 2.5fr 2.5fr 2.5fr 2.5fr 2fr;
    gap: 1.25rem;
}

.input-box {
    background-color: var(--grey-bg);
    padding: 1rem;
    border-radius: 8px;
}

.input-box label {
    font-weight: 500;
    margin-bottom: 12px;
}

.input-box input,
.input-box textarea {
    border: none;
    background-color: transparent;
    padding: 8px 0;
    height: 40px !important;
}

.input-box input:focus,
.input-box textarea:focus {
    border: none;
    box-shadow: none;
    background-color: transparent;
}

.hero-form form .primary-btn {
    background-color: var(--black-bg) !important;
    border-radius: 8px !important;
    color: var(--text-white) !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

/* About Us */
.about-img img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    height: 550px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--text-black);
    font-family: var(--primary-font);
    font-weight: 600;
}

.about-content p {
    color: var(--text-grey);
}

/* Counter */
.counter-col {
    display: flex;
    justify-content: center;
}

.counter-col:not(:last-child) {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.counter-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.counter-card-title .count {
    font-size: 5rem;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 1.2;
}

.counter-card-title .count-plus {
    font-size: 3rem;
    font-weight: 600;
}

.counter-card p {
    font-size: 1.5rem !important;
}

/* Services */
.service-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-card-content {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card-content h6 {
    font-size: 1.5rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.service-card-content p {
    color: var(--text-grey);
}

.service-card-content a {
    font-weight: 600;
    color: var(--text-yellow);
    text-decoration: underline;
}

/* Why Choose Us */
.choose-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 0;
}

.choose-list li:first-child {
    padding-top: 1rem;
}

.choose-list li:not(:last-child) {
    border-bottom: 1px solid var(--yellow-bg-light);
}

.choose-list-icon {
    height: 80px;
    width: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow-bg-light);
    flex-shrink: 0;
}

.choose-list-icon img {
    width: 40px;
}

.choose-list-content h6 {
    font-size: 1.5rem;
    font-family: var(--primary-font);
    font-weight: 600;
    margin-bottom: 0.5rem !important;
}

/* Gallery */
.gallery .section-header p {
    width: 100%;
    align-items: flex-start;
}

.gallery .primary-btn {
    width: max-content;
}

.gallery-nav-container {
    margin-top: 5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gallery-nav {
    height: 48px;
    width: 48px;
    border-radius: 100%;
    border: 1px solid var(--black-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-nav i {
    font-size: 2.5rem;
}

.gallery-slider .swiper-slide {
    height: 450px;
    width: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.gallery-slide-card {
    height: 100%;
}

.gallery-slide-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonial-card {
    padding: 2.25rem 1.75rem;
    border-radius: 15px;
    background-color: var(--white-bg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.testimonial-card img {
    width: 40px;
}

.testimonial-card p {
    color: var(--text-grey);
}

.testimonial-card h6 {
    font-size: 1.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

/* Blogs */
.blog-card-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-yellow);
}

.blog-card-info i {
    font-size: 1.15rem;
    margin-bottom: 2px;
}

.blog-card-info span {
    font-size: 14px;
    font-weight: 500;
}

.blog-card a {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0.5rem;
}

.blog-card a img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain !important;
}

/* Application Tracking */
.application-tracking {
    width: 100%;
    border-radius: 20px !important;
    overflow: hidden;
    position: relative;
}

.application-tracking img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.application-tracking::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: rgba(0, 0, 0, 0.7);
}

.application-tracking-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.application-tracking-content h2 {
    color: var(--text-white);
    font-size: 2.5rem;
    font-family: var(--primary-font);
}

.application-tracking-content p {
    width: 100%;
    color: var(--text-white);
}

/* Footer */
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-col-container {
    display: flex;
    justify-content: center;
}

.footer-col p {
    color: var(--text-black);
}

.footer-col h6 {
    font-size: 24px;
    font-family: var(--primary-font);
    color: var(--text-black);
    font-weight: 600;
}

.quick-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quick-links li a {
    color: var(--text-black);
    font-weight: 500;
}

.footer-location {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-location a {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-location-icon {
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--yellow-bg-light);
    flex-shrink: 0;
}

.footer-location-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.query-box {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.query-box h2 {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-black);
    font-family: var(--primary-font);
}

.query-box h2 span {
    color: var(--text-yellow);
}

.query-box .primary-btn {
    padding: 16px 48px;
    flex-shrink: 0;
    background-color: var(--yellow-bg) !important;
    color: var(--text-white) !important;
    font-weight: 500;
}

.footer-bottom-box {
    margin-top: 1rem;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-top: 1px solid var(--yellow-bg-light);
}

.footer-bottom-box p {
    color: var(--text-black);
}

.footer-bottom-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.footer-bottom-social a {
    height: 40px;
    width: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--yellow-bg-light);
}

.footer-bottom-social a i {
    font-size: 1.35rem;
    color: var(--primary);
}

.testimonial-page .testimonial-card {
    background-color: var(--grey-bg);
}

.gallery-apge-card img {
    height: 400px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.blog-img {
    width: 100%;
}

.blog-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

.contact-info-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-box:not(:first-child) {
    margin-top: 3rem;
}

.contact-info-icon {
    height: 40px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--text-yellow);
}

.contact-info-text h6 {
    font-size: 1.45rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.contact-info-text p {
    color: var(--text-grey);
    margin: 0.25rem 0 0.25rem 0 !important;
}

.contact-info-text a {
    font-weight: 600;
    color: var(--text-black);
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form {
    padding: 3.5rem;
    border-radius: 20px;
    background-color: var(--yellow-bg-light);
}

.contact-form h4 {
    font-size: 2rem;
    font-weight: 600;
    font-family: var(--primary-font);
    margin-bottom: 1.5rem !important;
}

.contact-form label {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px 16px;
    border: 1px solid var(--primary);
}

.contact-form button {
    background-color: var(--secondary) !important;
}

.popup-form-btns p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 1rem !important;
    justify-content: flex-end;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

.testimonial-header img {
    flex-shrink: 0;
    width: 30px;
}

.testimonial-rating i {
    color: #ffa534;
}

.testi-qr {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-image: linear-gradient(120deg, #f6d365 0%, #fda085 100%);
    display: flex;
    align-items: center;
    gap: 10rem;
    justify-content: space-between;
    padding: 3rem;
}

.testi-qr img {
    height: 250px;
    flex-shrink: 0;
}

.testi-qr-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.testi-qr-content h2 {
    font-size: 2.25rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

.testi-qr .primary-btn {
    border-color: var(--text-black) !important;
    color: var(--text-black) !important;
}

.show-img {
    height: 400px;
    width: 100%;
    background-color: var(--grey-bg);
    margin-bottom: 1.25rem;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-img  a {
    height: 100%;
    width: 100%;
}

.show-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.show-card h6 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--primary-font);
}

.showcase-slider {
    padding-bottom: 3rem !important;
}

.show-inner-slider {
    height: 100%;
    width: 100%;
}

.show-inner-slider img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}