* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #fd722b;
    --secondary: #1E1E1E;

    --text-orange: #fd722b;
    --text-black: #1e1e1e;
    --text-grey: #868593;
    --text-white: #fff;

    --white-bg: #fff;
    --black-bg: #1e1e1e;
    --grey-bg: #f2f3f4;
    --light-grey-bg: #f8f8f8;
    --orange-bg: #fd722b;

    --primary-font: "Anton", sans-serif;
    --secondary-font: "Montserrat", 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(--light-grey-bg);
    color: var(--text-black);
    font-family: var(--secondary-font);
}

/* Navigation */
.logo img {
    border-radius: 50px;
}

.navigation-container {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    height: 80px;
    z-index: 9999;
    position: relative;
}

.navigation-left {
    display: flex;
    align-items: center;
    border-radius: 50px;
    border: 2px solid #fff;
    width: max-content;
    overflow: hidden;
    height: 100%;
    gap: 5rem;
    padding-right: 5rem;
}

.navigation-left a img {
    width: 170px;
    height: 100%;
    object-fit: contain;
}

.navigation-left ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}

.navigation-left ul li a {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 500;
}

.navigation-right a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-white);
}

.navigation-right a span {
    height: 34px;
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-color: var(--orange-bg);
}

.navigation-right a span i {
    font-size: 1.35rem;
    color: var(--text-white);
}

.navigation-links .active-nav {
    color: var(--text-orange);
}

.menu-btn,
.close-btn {
    display: none;
}

/* Hero */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    height: 900px;
}

.hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    text-align: center;
    color: var(--text-white);
}

.hero-content h6 {
    font-size: 1.5rem;
}

.hero-content h2 {
    font-family: var(--primary-font);
    font-size: 6.5rem;
}

.hero-content h2 span {
    color: var(--text-orange);
}

.hero-slider {
    margin-top: 5rem;
}

.hero-slider-card {
    height: 675px;
    border-radius: 30px;
    overflow: hidden;
    border: 6px solid var(--white-bg);
}

.hero-slider-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hero-slider .swiper-pagination {
    padding-bottom: 1.25rem !important;
}

/* About Us */
.about-img {
    height: 550px;
    position: relative;
}

.about-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-top: 3rem;
    border-radius: 30px;
    border: 8px solid var(--white-bg);
}

.about-img::after {
    position: absolute;
    top: 0;
    right: -3rem;
    height: 175px;
    width: 175px;
    border-radius: 30px;
    background-color: var(--orange-bg);
    content: '';
    z-index: -1;
    border: 8px solid var(--white-bg);
}

.left-compressed {
    padding-left: 6rem;
}

.section-header-bottom h2 {
    position: relative;
    width: max-content;
}

.section-header-bottom h2::after {
    position: absolute;
    content: '';
    bottom: -12px;
    left: 0;
    width: 65%;
    height: 14px;
    border-radius: 30px;
    background-color: var(--light-grey-bg);
    border: 3px solid var(--black-bg);
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.about-content h6 {
    font-size: 1.5rem;
    font-weight: 600;
}

.about-content p {
    font-size: 20px !important;
    font-weight: 500;
}

.about-content .primary-btn {
    background-color: var(--black-bg) !important;
    color: var(--text-orange) !important;
}

.about-content h2 {
    font-size: 3rem;
    font-weight: 700;
}

/* Why Choose Us */
.choose-us {
    position: relative;
}

.choose-us::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 16%;
    content: '';
    background-color: var(--black-bg);
    z-index: -1;
}

.choose-us::before {
    position: absolute;
    top: 86%;
    left: 0;
    right: 0;
    height: 20px;
    content: '';
    background-color: var(--orange-bg);
    z-index: -1;
}

.choose-us .section-header-bottom h2 {
    width: max-content;
}

.choose-us .section-header-bottom h2::after {
    border-color: var(--white-bg);
    background-color: var(--black-bg);
    left: auto;
    right: 0;
}

.choose-us .about-img img {
    height: 600px;
}

.choose-us .about-img::after {
    display: none;
}

.choose-card {
    color: var(--text-white);
    transition: 300ms ease;
}

.choose-card h2 {
    font-family: var(--primary-font);
    font-size: 4rem;
    margin-bottom: 0.5rem !important;
}

.choose-card p {
    font-weight: 500;
    line-height: 1.4;
    font-size: 20px !important;
}

.choose-card:hover {
    color: var(--text-orange);
}

/* Testimonials */
.testimonials .section-header h2 {
    width: max-content;
}

.testimonials .section-header h2::after {
    left: auto;
    right: 0;
    border-color: var(--primary);
}

.testimonial-slider {
    padding: 1rem !important;
}

.testimonial-card {
    background-color: var(--white-bg);
    border-radius: 50px;
    padding: 2rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height:auto;
    /*height:40vh;*/
}

.testimonial-card p {
    font-weight: 500;
}

.testimonial-card h6 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 1.75rem;
    color: var(--text-orange);
    position: relative;
    width: max-content;
}

.testimonial-card h6::after {
    position: absolute;
    content: '';
    top: -16px;
    left: 0;
    width: 35%;
    height: 5px;
    background-color: var(--black-bg);
}

.testimonial-rating i {
    color: #ffa534;
    font-size: 1.35rem;
}

.testimonials .section-header {
    margin-bottom: 2.5rem !important;
}

.testimonial-slider-container {
    position: relative;
    padding-bottom: 4rem;
}

.testimonial-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-nav-btn {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.testimonial-prev {
    background-color: var(--black-bg);
}

.testimonial-nav-btn i {
    color: var(--text-white);
    font-size: 1.5rem;
}

.testimonial-next {
    background-color: var(--orange-bg);
}

/* Footer */
.footer-logo img {
    width: 200px;
}

.footer .primary-btn {
    width: max-content;
}

.footer-links h6 {
    font-size: 1.75rem;
    font-weight: 600;
    position: relative;
    color: var(--text-white);
    width: max-content;
    margin-bottom: 3rem !important;
}

.footer-links h6::after {
    position: absolute;
    content: '';
    bottom: -18px;
    left: 0;
    width: 65%;
    height: 11px;
    border-radius: 30px;
    background-color: var(--black-bg);
    border: 2px solid var(--orange-bg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.footer-links ul li a {
    font-size: 18px;
    color: var(--text-white);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info a {
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info a span {
    height: 36px;
    width: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--orange-bg);
    flex-shrink: 0;
}

.contact-info a span i {
    font-size: 1.25rem;
    color: var(--text-black);
}

.contact-detail p {
    font-size: 14px !important;
}

.contact-detail h4 {
    font-size: 1.25rem;
}

.footer-bottom-box {
    border-top: 1px solid var(--white-bg);
    margin-top: 3rem;
    padding: 1.25rem;
}

.footer-bottom-box p {
    color: var(--text-white);
    text-align: center;
    font-size: 18px !important;
}

.footer-bottom-box p a {
    color: var(--text-orange) !important;
}

.footer-col {
    display: flex;
    justify-content: center;
}

.service-card {
    padding: 2rem;
    background-color: var(--white-bg);
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.service-img {
    height: 175px;
    width: 175px;
    border-radius: 100%;
    overflow: hidden;
}

.service-img img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card h6 {
    font-size: 1.5rem;
    font-weight: 600;
}

.gallery-apge-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-card a {
    font-weight: 700;
    color: var(--text-orange);
    text-decoration: underline;
    font-size: 18px;
}

.choose-us-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

.choose-us-icon {
    height: 150px;
    width: 150px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-bg);
}

.choose-us-icon img {
    width: 75px;
}

.choose-us-card h6 {
    font-size: 1.5rem;
    font-weight: 700;
}

.choose-us-card p {
    font-weight: 500;
    font-size: 18px !important;
}

.choose-us-card ul li {
    font-weight: 500;
    font-size: 18px !important;
}

.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 var(--text-orange);
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--text-orange);
}

.contact-info-text h6 {
    font-size: 1.45rem;
    font-weight: 700;
}

.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: #ffeee6;
}

.contact-form h4 {
    font-size: 2rem;
    font-weight: 700;
    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;
}

.storage-card {
    padding: 2rem 1.5rem;
    border-radius: 20px;
    background-color: var(--white-bg);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    height: 100%;
}

.storage-card h6 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem !important;
    color: var(--text-orange);
}

.storage-card ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.storage-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.storage-card ul li i {
    color: var(--text-orange);
    font-size: 1.25rem;
    margin-top: -3px;
}

.storage-card ul li span,
.storage-card ul li,
.storage-card ul li a {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-black);
}

.storage-card ul li:not(:last-child) {
    border-bottom: 1px dashed var(--primary);
    padding-bottom: 1rem;
}

.storage-card ul li:not(:first-child) {
    padding-top: 1rem;
}