@import url("https://fonts.googleapis.com/css2?family=Playfair:wght@300;400;500;600;700;800;900&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-hue: 208;
    --main-color: hsl(var(--main-hue), 92%, 54%);
    --main-color-hover: hsl(var(--main-hue), 77%, 48%);
    --input-bg: hsla(var(--main-hue), 50%, 50%, 6.5%);
    --input-bg-hover: hsla(var(--main-hue), 50%, 50%, 14%);
    --light-main-color: hsl(var(--main-hue), 91%, 55%);
}

body,
button {
    font-family: "Playfair", sans-serif;
    cursor: none;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff; /* fallback background */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.2s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

@media (max-width: 480px) {
    .loader img {
        max-width: 100px;
    }
}

@media (min-width: 768px) {
    .loader img {
        max-width: 180px;
    }
}

.container {
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    transform-style: preserve-3d;
    background-color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    height: 3rem;
}

.menu {
    max-width: 72rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 4rem;
}

.logo span {
    font-weight: 300;
}

.hamburger-menu {
    height: 4rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.bar {
    width: 1.9rem;
    height: 1.5px;
    border-radius: 2px;
    background-color: #eee;
    transition: 0.5s;
    position: relative;
}

.bar:before,
.bar:after {
    content: "";
    position: absolute;
    width: inherit;
    height: inherit;
    background-color: #eee;
    transition: 0.5s;
}

.bar:before {
    transform: translateY(-9px);
}

.bar:after {
    transform: translateY(9px);
}

.main {
    position: relative;
    width: 100%;
    left: 0;
    z-index: 5;
    overflow: hidden;
    transform-origin: left;
    transform-style: preserve-3d;
    transition: 0.5s;
}

.container.active .bar {
    transform: rotate(360deg);
    background-color: transparent;
}

.container.active .bar:before {
    transform: translateY(0) rotate(45deg);
}

.container.active .bar:after {
    transform: translateY(0) rotate(-45deg);
}

.container.active .main {
    animation: main-animation 0.5s ease;
    transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
}

@keyframes main-animation {
    from {
        transform: translate(0);
    }

    to {
        transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
    }
}

.links {
    position: absolute;
    width: 30%;
    right: 0;
    top: 0;
    height: 100vh;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: none;
}

ul {
    list-style: none;
}

.links a {
    text-decoration: none;
    color: #eee;
    padding: 0.7rem 0;
    display: inline-block;
    font-size: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    opacity: 0;
    transform: translateY(10px);
    animation: hide 0.5s forwards ease;
}

.links a:hover {
    color: #fff;
}

.container.active .links a {
    animation: appear 0.5s forwards ease var(--i);
}

@keyframes appear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes hide {
    from {
        opacity: 1;
        transform: translateY(0px);
    }

    to {
        opacity: 0;
        transform: translateY(10px);
    }
}

.shadow {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    transform-origin: left;
    transition: 0.5s;
    background-color: white;
}

.shadow.one {
    z-index: -1;
    opacity: 0.15;
}

.shadow.two {
    z-index: -2;
    opacity: 0.1;
}

.container.active .shadow.one {
    animation: shadow-one 0.6s ease-out;
    transform: perspective(1300px) rotateY(20deg) translateZ(215px) scale(0.5);
}


@keyframes shadow-one {
    0% {
        transform: translate(0);
    }

    5% {
        transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
    }

    100% {
        transform: perspective(1300px) rotateY(20deg) translateZ(215px) scale(0.5);
    }
}

.container.active .shadow.two {
    animation: shadow-two 0.6s ease-out;
    transform: perspective(1300px) rotateY(20deg) translateZ(120px) scale(0.5);
}

@keyframes shadow-two {
    0% {
        transform: translate(0);
    }

    20% {
        transform: perspective(1300px) rotateY(20deg) translateZ(310px) scale(0.5);
    }

    100% {
        transform: perspective(1300px) rotateY(20deg) translateZ(120px) scale(0.5);
    }
}

.container.active .main:hover+.shadow.one {
    transform: perspective(1300px) rotateY(20deg) translateZ(230px) scale(0.5);
}

.container.active .main:hover {
    transform: perspective(1300px) rotateY(20deg) translateZ(340px) scale(0.5);
}

header {
    width: 100%;
    height: 100vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
}

/* Video section */
.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

video#video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-par {
    padding: 30px 0;
}

.header-info-par a {
    background-color: #fff;
    color: #00a8b4;
    padding: 17px 45px;
    display: inline-block;
    margin-top: 25px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: none;
}

.header-info-par a:after {
    content: "Read More";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #00a8b4;
    color: #fff;
    width: 0%;
    height: 100%;
    line-height: 50px;
    transition: all 0.5s ease;
}

.header-info-par a:hover:after {
    width: 100%;
}

.header-info-par h1 {
    margin-top: 15%;
    font-size: 45px;
    text-transform: uppercase;
    padding: 20px 0;
    letter-spacing: 4px;
}

.header-info-par p {
    line-height: 30px;
    font-size: 15px;
    width: 80%;
    margin: auto;
}

/* Custom Cursor Styles */
.cursor-dot,
.cursor-outline,
.cursor-airplane {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 999;
    pointer-events: none;
}

.cursor-airplane {
    font-size: 40px;
    color: black;
    font-family: Arial, sans-serif;
    display: inline-block;
    transform: rotate(-20deg);
}

.typewrite::after {
    content: '';
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* Typewriter Animation */
@keyframes typewriter {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

h1.typewrite {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    animation: typewriter 4s steps(40) infinite;
}

/* Dynamic Text Change */
@keyframes changeText {

    0%,
    33% {
        content: "Happiness is closer than you think";
    }

    34%,
    66% {
        content: "Adventure Awaits, go find it.";
    }

    67%,
    100% {
        content: "Don't be a tourist, be a traveler.";
    }
}

h1.typewrite::before {
    content: "";
    animation: changeText 12s infinite;
}

/* Video Styling */
.video video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video video {
        width: 100%;
        height: 100vh;
    }

    .header-info-par h1 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .video video {
        width: 100%;
        height: 100vh;
        object-fit: cover;
    }

    .header-info-par h1 {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .header-info-par p {
        font-size: 10px;
        line-height: 24px;
    }

    /* Mobile nav menu styles */
    .links {
        position: fixed;
        top: 3rem;
        right: 0;
        width: 100%;
        height: calc(100vh - 3rem);
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 9;
    }

    .container.active .links {
        transform: translateX(0);
    }

    .links ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .links a {
        font-size: 18px;
        opacity: 0;
        transform: translateY(10px);
        animation: hide 0.5s forwards ease;
        color: #fff;
    }

    .container.active .links a {
        animation: appear 0.5s forwards ease var(--i);
    }

    .links a:hover {
        color: #00a8b4;
    }
}

/* Loop Container */
#loop .container-fluid {
    position: relative;
    width: 100%;
}

#loop .loop-container {
    width: 100%;
    overflow: hidden;
    /* Hide overflow */
    background: #f8f9fa;
    /* Light background */
    padding: 10px 0;
    position: relative;
    white-space: nowrap;
    /* Prevent wrapping */
    display: flex;
}

/* Wrapper for Infinite Scroll */
#loop .loop-wrapper {
    display: flex;
    width: max-content;
    /* Prevent line break */
    animation: scrollText 10s linear infinite;
    /* Continuous scrolling */
}

/* Handshake Icon */
#loop .loop-wrapper i {
    font-size: 2rem;
    color: #00a8b4;
    /* Orange color */
    margin-right: 10px;
}

/* Text Styling */
#loop .loop-wrapper h5 {
    display: inline;
    font-size: 1.2rem;
    color: #444;
    margin-right: 30px;
    /* Space between repeating elements */
}

/* Scrolling Animation */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* About Us CSS */
#about {
    color: #000;
    padding: 60px 20px;
    text-align: center;
    background-color: white;
}

#about h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: bold;
}

#about .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

#about .col-md-6 {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    box-sizing: border-box;
}

#about p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-align: left;
}

#about img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 400px;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    background-image: url(images/header-bg.jpg);
    padding: 15px;
    margin: 15px;
}

/* Hover Effect */
#about img:hover {
    transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    #about h1 {
        font-size: 2.5rem;
    }

    #about p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    #about h1 {
        font-size: 2rem;
    }

    #about .row {
        flex-direction: column;
    }

    #about p {
        text-align: center;
        font-size: 1rem;
    }

    #about img {
        height: auto;
        padding: 10px;
        margin: 10px 0;
    }
}

@media (max-width: 480px) {
    #about {
        padding: 40px 10px;
    }

    #about h1 {
        font-size: 1.8rem;
    }

    #about p {
        font-size: 0.95rem;
    }
}

/* Welcome-text section */
/* Base styles for desktop */
#welcome-text {
    text-align: center;
    background-color: white;
}

#welcome-text h2 {
    color: #000;
    font-size: 45px;
    background-color: white;
    margin-bottom: 20px;
}

#welcome-text p {
    color: #000;
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive styles for tablets */
@media (max-width: 768px) {
    #welcome-text h2 {
        font-size: 36px;
    }

    #welcome-text p {
        font-size: 15px;
    }
}

/* Responsive styles for mobile phones */
@media (max-width: 480px) {
    #welcome-text h2 {
        font-size: 28px;
    }

    #welcome-text p {
        font-size: 14px;
    }
}


/* Slides Section */
.slides {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
    background-color: white;
}

.slide_1 {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 60px;
    min-width: 60px;
    height: 300px;
    border-radius: 40px;
    margin: 0 15px;
    position: relative;
    transition: all 0.5s ease;
}

.slide_1:hover {
    min-width: 250px;
}

.slide_1:hover .slide-info {
    transform: rotate(0deg);
    font-size: 22px;
    left: 20px;
    bottom: 20px;
}

.slide-info {
    position: absolute;
    bottom: 50px;
    right: 0;
    color: #fff;
    transform: rotate(-90deg);
    font-size: 13px;
    font-weight: 700;
    transition: all 0.5s ease;
}

.icon {
    position: absolute;
    bottom: 40px;
    right: 100px;
    font-size: 32px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    color: white;
    z-index: 10;
}

.slide_1:hover .icon {
    opacity: 1;
}

.icon:hover {
    opacity: 1 !important;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.modal img {
    max-width: 100%;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: black;
}

.slide_2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe1.jpg);
}

.slide_3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe2.jpg);
}

.slide_4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe3.jpg);
}

.slide_5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe4.jpg);
}

.slide_6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe5.jpg);
}

.slide_7 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe6.jpg);
}

.slide_8 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/recipe7.jpg);
}


/* Tour Packages */
#tourpackage{
    background-color: white;
}
.container-fluid {
    text-align: center;
    padding: 20px;
}

/* Flexbox for alignment */
.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

/* Video container */
.col-md-3 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    /* Full width on smaller screens */
    max-width: 25%;
    /* Limit to 25% on large screens */
}

h1 {
    margin-bottom: 20px;
    font-size: 2rem;
    color: #333;
}

#video1 {
    width: 100%;
    height: 250px !important;
    /* Set a fixed height */
    object-fit: cover;
    /* Ensures the video fills the space without distortion */
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    border-radius: 10px;
}

.col-md-3:hover .img-overlay {
    opacity: 1;
}

h3 {
    margin: 0;
    font-size: 1.5rem;
}

.icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.icons a i {
    font-size: 1.8rem;
    color: white;
    cursor: none;
    transition: transform 0.3s ease-in-out;
    border: 2px solid #fff;
    padding: 4px 8px;
    border-radius: 50px;
}

.icons a i:hover {
    transform: scale(1.2);
    color: #25D366;
    /* WhatsApp green color */
}
@media (max-width: 1200px) {
    #tourpackage{
        background-color: white;
    }
    .col-md-3 {
        max-width: 33.33%;
    }
}

@media (max-width: 992px) {
    #tourpackage{
        background-color: white;
    }
    .col-md-3 {
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    #tourpackage{
        background-color: white;
    }
    .col-md-3 {
        max-width: 100%;
    }

    h1 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .icons a i {
        font-size: 1.5rem;
        padding: 4px 6px;
    }

    #video1 {
        height: 200px;
    }
}

@media (max-width: 480px) {
    #tourpackage{
        background-color: white;
    }
    #video1 {
        height: 180px;
    }

    .card-body {
        padding: 15px;
    }

    h4 {
        font-size: 1.4rem;
    }

    .card-body p {
        font-size: 0.95rem;
    }
}

/* Service CSS */
#service{
    background-color: white;
}
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* Column Styling */
.col-md-6 {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

/* Card Styling */
.card {
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Canvas Styling */
canvas {
    display: block;
    margin: 0 auto;
    padding: 20px;
    max-width: 100%;
    height: auto;
}

/* Card Body Styling */
.card-body {
    padding: 20px;
}

h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.card-body p {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* -------------------------------
   Responsive Design (Media Queries)
--------------------------------- */

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
    h4 {
        font-size: 1.5rem;
    }

    .card-body {
        padding: 15px;
    }

    .card-body p {
        font-size: 0.95rem;
        margin-top: 15px;
    }

    canvas {
        padding: 15px;
    }
}

/* Phones (max-width: 480px) */
@media (max-width: 480px) {
    h4 {
        font-size: 1.3rem;
    }

    .card-body {
        padding: 10px;
    }

    .card-body p {
        font-size: 0.9rem;
        margin-top: 12px;
    }

    canvas {
        padding: 10px;
    }

    .row {
        flex-direction: column;
    }

    .col-md-6 {
        width: 100%;
        min-width: unset;
    }
}


/* Contact Us CSS */
.contact {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.contact .container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.left, .right {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-wrap {
    position: relative;
    width: 100%;
}

.contact-input {
    width: 100%;
    padding: 15px 45px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.contact-input:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.input-wrap label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #777;
    transition: 0.3s;
    pointer-events: none;
}

.contact-input:focus + label,
.contact-input:not(:placeholder-shown) + label {
    top: 5px;
    font-size: 0.85rem;
    color: #007bff;
}

.input-wrap .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    font-size: 1.2rem;
}

.contact-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
}

.btn:hover {
    background-color: #0056b3;
}

.btn.upload {
    position: relative;
    background-color: #e9ecef;
    color: #333;
}

.btn.upload input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.right {
    flex: 1;
    position: relative;
}

.image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.image-wrapper .img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.wave svg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    opacity: 0.3;
    animation: waveAnimation 3s ease-in-out infinite;
}

@keyframes waveAnimation {
    0% { transform: translateX(0); }
    50% { transform: translateX(10px); }
    100% { transform: translateX(0); }
}

/* Footer Styling */
.footer {
    background-color : #fffafa;
    color: black;
    padding: 40px 0;
}

.container-fluid {
    max-width: 1200px;
    margin: auto;
}

.reader img {
    width: 200px;
}

.reader p {
    margin-top: 20px;
    color: #000;
    line-height: 1.6;
}

/* Flexbox for Four Columns in One Row */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.col-md-4, .gallery, .col-md-2 {
    flex: 1;
    min-width: 22%;
    padding: 15px;
}

/* Ensure Images Fit Properly */
.re_post {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.re_post li {
    width: 48%; /* Adjusted for better spacing */
    padding: 5px;
}

.re_post img {
    width: 100%; /* Make images responsive */
    height: 100%;
    display: block; 
    border-radius: 5px;
}

/* Explore Menu Styling */
.xple_menu {
    padding: 0;
    list-style: none;
}

.xple_menu a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.xple_menu a:hover {
    color: #ffd700;
}

/* Contact Section Styling */
.reader h3 {
    color: #000;
    margin-bottom: 15px;
}

.reader p, .reader i {
    color: #000;
    font-size: 16px;
}

.reader p i {
    margin-right: 8px;
}

/* Copyright Styling */
.copyright {
    text-align: center;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.copyright p {
    color: #000;
    margin: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright a {
    color: #fff; 
    text-decoration: none;
}

.copyright a:hover {
    color: black;
}

/* -----------------------------------------
   Responsive Design: Tablets and Mobiles
------------------------------------------ */

/* Medium Devices (Tablets) */
@media (max-width: 991px) {
    .contact .container {
        flex-direction: column;
    }

    .left, .right {
        padding: 30px;
    }

    .contact-heading h1 {
        font-size: 2rem;
        text-align: center;
    }

    .image-wrapper {
        justify-content: center;
        margin-top: 20px;
    }

    .footer .row {
        justify-content: center;
        gap: 20px;
    }

    .col-md-4, .gallery, .col-md-2 {
        min-width: 45%;
    }
}

/* Small Devices (Phones) */
@media (max-width: 576px) {
    .left, .right {
        padding: 20px;
    }

    .contact-heading h1 {
        font-size: 1.8rem;
    }

    .contact-form {
        gap: 10px;
    }

    .contact-input {
        padding: 12px 35px;
        font-size: 0.95rem;
    }

    .input-wrap label {
        font-size: 0.85rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 10px 16px;
    }

    .footer .row {
        flex-direction: column;
        align-items: center;
    }

    .col-md-4, .gallery, .col-md-2 {
        width: 100%;
        min-width: 100%;
        padding: 10px 0;
        text-align: center;
    }

    .re_post li {
        width: 100%;
    }

    .copyright p {
        flex-direction: column;
        font-size: 14px;
        padding: 10px;
    }
}
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    text-decoration: none;
    z-index: 99; /* Ensure it stays on top */
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 15px;
        right: 15px;
    }
}

