/*==================================================
  BALAJI TOUR & TRAVELS
  Author : Kayee WebTech
  Version : 1.0
==================================================*/
/*==============================
    Google Fonts
==============================*/
:root {
    --primary: #1b3d66;
    --secondary: #ea9713;
    --white: #ffffff;
    --black: #111111;
    --text: #555555;
    --light: #f8f9fa;
    --border: #e9ecef;
    --transition: .35s ease;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, .05);
    --shadow:
        0 15px 45px rgba(0, 0, 0, .08);
    --radius: 18px;
}
/*==============================
        Reset
==============================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
/*==============================
        Typography
==============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-weight: 700;
    line-height: 1.3;
}
p {
    margin-bottom: 15px;
    color: var(--text);
    font-size: 16px;
}
a {
    text-decoration: none;
    transition: var(--transition);
}
img {
    max-width: 100%;
    display: block;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
/*==============================
        Section
==============================*/
.section-padding {
    padding: 100px 0;
}
.section-title {
    margin-bottom: 50px;
}
.section-title span {
    color: var(--secondary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.section-title h2 {
    font-size: 44px;
    margin-top: 10px;
}
.section-title p {
    max-width: 650px;
    margin: auto;
}
/*==============================
        Buttons
==============================*/
.btn-theme {
    background: var(--primary);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--primary);
}
.btn-theme:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
}
.btn-outline-theme {
    padding: 14px 34px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-theme:hover {
    background: var(--primary);
    color: #fff;
}
.btn-outline-theme-lite {
    padding: 14px 34px;
    border-radius: 50px;
    display: inline-block;
    border: 2px solid var(--white);
    color: var(--white);
    font-weight: 600;
    transition: var(--transition);
}
.btn-outline-theme-lite:hover {
    background: var(--white);
    color: var(--primary);
}
/*==============================
        Cards
==============================*/
.theme-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    overflow: hidden;
}
.theme-card:hover {
    transform: translateY(-8px);
}
/*==============================
        Background
==============================*/
.bg-primary-theme {
    background: var(--primary);
}
.bg-light-theme {
    background: #f8fafc;
}
.bg-gold {
    background: var(--secondary);
}
/*==============================
        Utility
==============================*/
.text-primary-theme {
    color: var(--primary);
}
.text-gold {
    color: var(--secondary);
}
.radius {
    border-radius: var(--radius);
}
.shadow-theme {
    box-shadow: var(--shadow);
}
/*==============================
        Scrollbar
==============================*/
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f3f3f3;
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}
/*==============================
        Selection
==============================*/
::selection {
    background: var(--secondary);
    color: #fff;
}
/*==============================
        Form
==============================*/
.form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #ddd;
    box-shadow: none;
}
.form-control:focus {
    border-color: var(--secondary);
    box-shadow: none;
}
textarea.form-control {
    height: auto;
}
/*==============================
      Bootstrap Override
==============================*/
.container {
    max-width: 1320px;
}
/*==============================
        Animation
==============================*/
.transition {
    transition: var(--transition);
}
/*====================================
        Top Header
====================================*/
.top-header {
    background: var(--primary);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}
.top-header a {
    color: #fff;
}
.top-contact {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.top-contact a:hover {
    color: var(--secondary);
}
.top-text {
    text-align: center;
    font-weight: 600;
    color: #fff;
    letter-spacing: .3px;
}
.top-text i {
    color: var(--secondary);
    margin-right: 6px;
}
.top-social {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}
.top-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    transition: var(--transition);
}
.top-social a:hover {
    background: var(--secondary);
    color: #fff;
    transform: translateY(-3px);
}
/*====================================
        Header
====================================*/
.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    transition: .35s;
}
.main-header.scrolled {
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}
.navbar {
    padding: 5px 0;
}
.navbar-brand img {
    height: 68px;
}
.navbar-nav {
    gap: 10px;
}
.nav-link {
    color: var(--primary);
    font-weight: 600;
    position: relative;
    padding: 10px 16px !important;
}
.nav-link::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: .35s;
}
.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 32px);
}
.nav-link:hover,
.nav-link.active {
    color: var(--secondary);
}
.navbar-toggler {
    font-size: 34px;
    color: var(--primary);
}
.offcanvas {
    width: 320px;
}
.offcanvas-header {
    padding: 20px;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
}
.mobile-menu li {
    border-bottom: 1px solid #eee;
}
.mobile-menu a {
    display: block;
    padding: 16px 0;
    color: var(--primary);
    font-weight: 600;
}
.mobile-menu a:hover {
    color: var(--secondary);
    padding-left: 10px;
}
/*====================================
            Hero Section
====================================*/
.hero-section {
    position: relative;
    background: url("../images/hero/hero-bg.jpg") center center/cover no-repeat;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 120px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(27, 61, 102, .88) 0%,
            rgba(27, 61, 102, .78) 45%,
            rgba(27, 61, 102, .45) 100%);
}
.hero-section .container {
    position: relative;
    z-index: 2;
}
.hero-content {
    color: #fff;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}
.hero-tag i {
    color: var(--secondary);
}
.hero-content h1 {
    font-size: 62px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 25px;
}
.hero-content h1 span {
    color: var(--secondary);
}
.hero-content p {
    color: rgba(255, 255, 255, .85);
    font-size: 17px;
    max-width: 650px;
    margin-bottom: 30px;
}
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
}
.hero-features i {
    color: var(--secondary);
    font-size: 20px;
}
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}
.booking-card {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 22px;
    padding: 35px;
}
.booking-title {
    margin-bottom: 25px;
}
.booking-title h3 {
    color: #fff;
    margin-bottom: 10px;
}
.booking-title p {
    color: rgba(255, 255, 255, .8);
}
.booking-card .form-control {
    height: 56px;
    border: none;
    background: rgba(255, 255, 255, .9);
    border-radius: 12px;
}
.booking-card select {
    cursor: pointer;
}
.booking-card .btn-theme {
    margin-top: 10px;
}
/*====================================
        Services
====================================*/
.services-section {
    background: #f8fafc;
}
.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    background: rgba(234, 151, 19, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}
.service-icon i {
    font-size: 34px;
    color: var(--secondary);
}
.service-card h4 {
    margin-bottom: 15px;
}
/*====================================
        Why Choose Us
====================================*/
.why-us {
    background: #fff;
}
.why-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: var(--shadow);
}
.why-image img {
    width: 100%;
    transition: .5s;
}
.why-image:hover img {
    transform: scale(1.05);
}
.why-card {
    background: #fff;
    border: 1px solid #edf1f6;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    transition: .35s;
    position: relative;
}
.why-card:hover {
    background: var(--primary);
    transform: translateY(-8px);
}
.why-card:hover h5,
.why-card:hover p {
    color: #fff;
}
.why-card:hover .why-icon i {
    color: var(--secondary);
}
.why-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.why-icon span {
    font-size: 34px;
    font-weight: 700;
    color: rgba(234, 151, 19, .20);
    font-family: 'Cinzel', serif;
}
.why-icon i {
    font-size: 34px;
    color: var(--secondary);
}
.why-card h5 {
    margin-bottom: 12px;
    transition: .35s;
}
.why-card p {
    margin: 0;
    transition: .35s;
}
/*====================================
            Fleet Section
====================================*/
.fleet-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
}
.fleet-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    left: -180px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}
.fleet-section::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    bottom: -220px;
    right: -220px;
    background: rgba(234, 151, 19, .08);
    border-radius: 50%;
}
.fleet-section .container {
    position: relative;
    z-index: 2;
}
/*====================================
            Fleet Card
====================================*/
.fleet-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    transition: .35s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
.fleet-card:hover {
    transform: translateY(-12px);
}
.fleet-image {
    background: #f7f8fa;
    padding: 30px;
    overflow: hidden;
}
.fleet-image img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: .4s;
}
.fleet-card:hover .fleet-image img {
    transform: scale(1.08);
}
.fleet-content {
    padding: 30px;
}
.fleet-content h4 {
    text-align: center;
    margin-bottom: 25px;
}
.fleet-content ul {
    margin-bottom: 25px;
}
.fleet-content li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px dashed #e6e6e6;
    font-size: 15px;
}
.fleet-content li:last-child {
    border-bottom: none;
}
.fleet-content li i {
    color: var(--secondary);
    margin-right: 10px;
    font-size: 18px;
}
.fleet-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #eeeeee;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 25px;
    color: #666;
}
.fleet-price strong {
    display: block;
    margin-top: 8px;
    color: var(--secondary);
    font-size: 28px;
    font-family: 'Cinzel', serif;
}
.fleet-btn {
    text-align: center;
}
.fleet-btn .btn-theme {
    width: 100%;
}
.fleet-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--secondary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 5;
}
.fleet-card {
    border: 2px solid transparent;
}
.fleet-card:hover {
    border-color: var(--secondary);
}
/*====================================
        Fleet Animation
====================================*/
.fleet-item {
    transition: .35s ease;
}
.fleet-item.show {
    animation: fleetFade .35s ease;
}
@keyframes fleetFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*====================================
            About Section
====================================*/
.about-section {
    position: relative;
    background: #ffffff;
    background-image:
        radial-gradient(circle, #f3f4f6 1px, transparent 1px);
    background-size: 28px 28px;
    overflow: hidden;
}
/*====================================
            About Section
====================================*/
.about-section {
    position: relative;
    background: #ffffff;
    background-image:
        radial-gradient(circle, #f3f4f6 1px, transparent 1px);
    background-size: 28px 28px;
    overflow: hidden;
}
/*====================================
        Experience Box
====================================*/
.experience-box {
    position: absolute;
    right: -20px;
    bottom: 40px;
    width: 190px;
    background: var(--secondary);
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}
.experience-box h3 {
    color: #fff;
    font-size: 54px;
    margin-bottom: 8px;
    line-height: 1;
}
.experience-box span {
    display: block;
    font-size: 15px;
    font-weight: 600;
}
/*====================================
        About Content
====================================*/
.about-content {
    padding-left: 20px;
}
.section-tag {
    display: inline-block;
    background: rgba(234, 151, 19, .12);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
}
.about-content h2 {
    font-size: 46px;
    margin-bottom: 25px;
}
.about-content p {
    margin-bottom: 18px;
}
/*====================================
        About Features
====================================*/
.about-features {
    margin-top: 30px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #edf0f5;
    transition: .35s;
    font-weight: 500;
}
.about-feature i {
    color: var(--secondary);
    font-size: 20px;
}
.about-feature:hover {
    background: var(--primary);
    color: #fff;
    transform: translateX(8px);
}
.about-feature:hover i {
    color: var(--secondary);
}
/*====================================
        About Buttons
====================================*/
.about-buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}
/*====================================
        Shape
====================================*/
.about-section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -120px;
    border-radius: 50%;
    background: rgba(234, 151, 19, .06);
}
.about-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    left: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(27, 61, 102, .05);
}
.about-divider {
    width: 80px;
    height: 4px;
    background: var(--secondary);
    border-radius: 20px;
    margin: 25px 0;
}
.about-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}
.about-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f8f9fb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
}
.about-trust i {
    color: var(--secondary);
}
/*====================================
        Popular Routes Section
====================================*/
.routes-section {
    position: relative;
    background: #f8fafc;
    overflow: hidden;
}
.routes-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    top: -150px;
    right: -150px;
    border-radius: 50%;
    background: rgba(234, 151, 19, .05);
}
.routes-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: -120px;
    left: -120px;
    border-radius: 50%;
    background: rgba(27, 61, 102, .05);
}
/*====================================
            Route Card
====================================*/
.route-card {
    position: relative;
    height: 100%;
    background: #fff;
    border-radius: 22px;
    padding: 30px;
    border: 1px solid #eef2f7;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    overflow: hidden;
}
.route-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}
/*====================================
        Route Heading
====================================*/
.route-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-weight: 600;
}
.route-top span {
    background: #f5f7fa;
    padding: 10px 18px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 15px;
}
.route-top i {
    font-size: 24px;
    color: var(--secondary);
    transition: .35s;
}
.route-card:hover .route-top i {
    transform: translateX(8px);
}
/*====================================
            Route Details
====================================*/
.route-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.route-card ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #ececec;
    color: #555;
}
.route-card ul li:last-child {
    border-bottom: none;
}
.route-card ul li i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(234, 151, 19, .12);
    color: var(--secondary);
    font-size: 16px;
}
/*====================================
        Route Button
====================================*/
.route-card .btn-theme {
    margin-top: 25px;
    width: 100%;
    text-align: center;
}
/*====================================
        Hover Effect
====================================*/
.route-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--secondary),
            var(--primary));
    transition: .4s;
}
.route-card:hover::before {
    width: 100%;
}
/*====================================
        Decorative Icon
====================================*/
.route-card::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(27, 61, 102, .03);
    right: -60px;
    bottom: -60px;
}
/*====================================
        Tour Packages
====================================*/
.packages-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}
.packages-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    left: -180px;
    border-radius: 50%;
    background: rgba(27, 61, 102, .05);
}
.packages-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -140px;
    bottom: -140px;
    border-radius: 50%;
    background: rgba(234, 151, 19, .06);
}
/*====================================
            Package Card
====================================*/
.package-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
    height: 100%;
    position: relative;
}
.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .14);
}
/*====================================
            Package Image
====================================*/
.package-image {
    position: relative;
    overflow: hidden;
}
.package-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .6s;
}
.package-card:hover .package-image img {
    transform: scale(1.08);
}
/*====================================
        Duration Badge
====================================*/
.package-duration {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}
.package-duration i {
    color: var(--secondary);
    margin-right: 6px;
}
/*====================================
        Package Content
====================================*/
.package-content {
    padding: 28px;
}
.package-content h4 {
    margin-bottom: 15px;
    transition: .3s;
}
.package-card:hover h4 {
    color: var(--primary);
}
.package-content p {
    color: #666;
    margin-bottom: 25px;
    min-height: 72px;
}
/*====================================
        Package Footer
====================================*/
.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.package-price small {
    display: block;
    color: #888;
    margin-bottom: 5px;
}
.package-price h5 {
    margin: 0;
    color: var(--secondary);
    font-size: 28px;
    font-weight: 700;
}
/*====================================
        Hover Border
====================================*/
.package-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--secondary),
            var(--primary));
    transition: .4s;
    z-index: 2;
}
.package-card:hover::before {
    width: 100%;
}
/*====================================
            Footer
====================================*/
.footer {
    background: var(--primary);
    color: #d8dce3;
    padding: 80px 0 30px;
    position: relative;
}
.footer-logo {
    height: 70px;
    margin-bottom: 20px;
}
.footer-widget h5 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 22px;
}
.footer-widget p {
    line-height: 1.8;
    color: var(--white);
}
.footer-widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-widget ul li {
    margin-bottom: 14px;
}
.footer-widget ul li a {
    color: #d8dce3;
    transition: .3s;
    text-decoration: none;
}
.footer-widget ul li a:hover {
    color: var(--secondary);
    padding-left: 8px;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.footer-contact i {
    color: var(--secondary);
    font-size: 18px;
    margin-top: 2px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    transition: .3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}
.footer hr {
    border-color: rgba(255, 255, 255, .12);
    margin: 50px 0 25px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer-bottom p {
    margin: 0;
    color: var(--white);
}
.footer-bottom a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}
/*====================================
            CTA
====================================*/
.cta-section {
    background: #fff;
    padding-bottom: 80px;
}
.cta-box {
    background: linear-gradient(135deg, var(--primary), #24578d);
    border-radius: 25px;
    padding: 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -100px;
    top: -100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}
.cta-box h2 {
    color: #fff;
    margin: 15px 0;
}
.cta-box p {
    color: #e8edf5;
}
/*====================================
        Contact Strip
====================================*/
.contact-strip {
    background: #f8fafc;
    padding: 90px 0;
}
.contact-box {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    height: 100%;
    transition: .35s;
}
.contact-box:hover {
    transform: translateY(-10px);
}
.contact-box i {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.map-box {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}
.map-box iframe {
    width: 100%;
    height: 420px;
    border: 0;
}
/*====================================
        Back To Top
====================================*/
.back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--secondary),
            #f3b144);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px);
    transition: .35s;
    z-index: 999;
    animation: floatTop 2.5s infinite ease-in-out;
}
.back-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-top:hover {
    transform: translateY(-8px) scale(1.08);
    color: #fff;
}
@keyframes floatTop {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}