@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Teko:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primary: #00afef;
    --primary-deep: #01070a;
    --secondary: #ff5d1c;
    --text-primary: #222;
    --text-secondary: #868395;
    --text-tertiary: #a19fad;
    --primary-bg: #dbe6ff;
    --secondary-bg: #F2F3F4;
    --primary-font: 'Teko', sans-serif;
    --secondary-font: 'Inter', sans-serif;
}

ol,
ul,
li,
a {
    list-style: none;
    text-decoration: none;
}

ol,
ul {
    padding: 0 !important;
}

p {
    font-size: 15px !important;
    color: var(--text-secondary) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li,
ul {
    margin-bottom: 0 !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

body {
    font-family: var(--secondary-font);
    font-size: #222;
}

/* Navigation */
.navigation {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 99;
}

.logo img {
    width: 270px;
}

.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-details {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contact-details a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-deep);
    font-weight: 500;
}

.contact-details a i {
    font-size: 1.5rem;
}

/* Swiper */
.hero-swiper {
    width: 350px;
    height: 400px;
}

.hero-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.hero-swiper .swiper-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;

}

/* Hero */
.hero {
    padding: 2.5rem 0;
    height: 500px;
    position: relative;
}

.hero::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgb(0, 106, 157);
    background: linear-gradient(90deg, rgba(0, 106, 157, 1) 0%, rgba(72, 190, 239, 1) 100%); */
    clip-path: polygon(0 0, 100% 0, 100% 83%, 0% 100%);
    background: rgb(31, 189, 242);
    background: linear-gradient(135deg, rgba(31, 189, 242, 1) 0%, rgba(149, 218, 248, 1) 100%);
}

.hero .hero-container .swiper-slide {
    padding: 0.5rem;
    background-color: var(--primary);
    border-radius: 5px;
}

.hero-col {
    display: flex;
    justify-content: center;
}

.hero-form {
    width: 80%;
    background-color: #fff;
    border-radius: 5px;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    z-index: 9;
    border: 1px solid rgba(0, 0, 0, 0.18);
}

.hero-form .form-header {
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
    margin-bottom: 1.25rem;
    text-align: center;
    align-items: center;
}

.hero-form .form-header h4 {
    font-weight: 500;
    font-family: var(--primary-font);
    font-size: 2rem;
}

.hero-form input,
.hero-form textarea,
.hero-form select {
    padding: 10px 16px;
    border-radius: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-form a {
    width: 100%;
}

/* About */
.about-content {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.about-content span {
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 500;
}

.about-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--primary-font);
}

.about-img img {
    max-height: 500px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/* Services */
.service-card {
    height: 270px;
    padding: 8px 8px 1.5rem 8px;
    border-radius: 10px;
    background-color: #fff;
    transition: 300ms ease;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.service-card img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    height: 200px;
    margin-bottom: 1rem;
}

.service-card h6 {
    text-align: center;
    font-weight: 700;
}

.service-card:hover {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    background-color: var(--primary);
    color: #fff;
}

/* Description Section */
.desc-container {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.desc-container h1,
.desc-container h2,
.desc-container h3,
.desc-container h4,
.desc-container h5,
.desc-container h6 {
    font-weight: 700;
    color: var(--primary);
}

.desc-container ul {
    display: flex;
    flex-direction: column;
    row-gap: 5px;
    font-weight: 500;
    padding-left: 15px !important;
    color: var(--text-secondary);
}

.desc-container ul li {
    list-style: disc;
}

/* Recent Works */
.work-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

/* Testimonials */
.testimonial {
    background: rgb(0, 175, 239);
    background: linear-gradient(270deg, rgba(0, 175, 239, 0.2497373949579832) 0%, rgba(72, 190, 239, 0) 75%);
}

.testimonial-swiper {
    padding-bottom: 3rem !important;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 0.75rem;
    border-radius: 30px 0 30px 0;
    border: 1px solid rgba(0, 0, 0, 0.12);
    align-items: center;
    text-align: center;
    background-color: #fff;
    height: 100%;
}

.testimonial-card .rating i {
    color: var(--primary);
    font-size: 1.15rem;
}

.testimonial-card p {
    font-weight: 400;
}

.testimonial-card h6 {
    font-weight: 700;
    color: var(--secondary);
    font-size: 1.15rem;
}

/* Footer */
.footer-content {
    padding: 1.25rem 1rem;
}

.footer-content p {
    text-align: center;
    font-size: 1.05rem !important;
    color: var(--secondary) !important;
    font-weight: 600;
}

.our-services {
    background: rgb(0, 175, 239);
    background: linear-gradient(90deg, rgba(0, 175, 239, 0.2497373949579832) 0%, rgba(72, 190, 239, 0) 75%);
}

/* Brands Section */
.brand-swiper .swiper-slide {
    height: auto !important;
    width: 200px !important;
}

.brand-card {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-card img {
    width: 150px;
    object-fit: contain;
}

/* Modal Form */
.modal-form {
    padding: 0;
    border: none;
    width: 100%;
}

.book-now-modal .modal-header {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
}

.book-now-modal .modal-body {
    padding: 1.5rem 1rem;
}

.book-now-modal .modal-title {
    font-size: 1.5rem;
    font-family: var(--primary-font);
    font-weight: 600;
}

/* Points */
.point-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1rem;
    text-align: center;
}

.point-card img {
    width: 75px;
}

.point-card h4 {
    font-family: var(--primary-font);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.point-col {
    display: flex;
    justify-content: center;
}

.form-btn{
    background:#ff5d1c;
    color:white;
    display:block;
    margin:0 auto;
}

.form-btn:hover{
    background:#ff5d1c !important;
    color:white !important;
}