* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tinos', serif;

}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

nav {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand {
    font-size: 24px;
    color: #fff;
    text-decoration: none;
}

.menu {
    display: flex;
    gap: 15px;
}

.menu a {
    color: #fff;
    text-decoration: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

header {
    height: 100vh;
    /* background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}


.banner {
    position: relative;
    background-image: url('sand.jpg');
    /* Replace with your image path */
    background-size: cover;
    background-position: center;
    height: 100vh;
    /* Adjust the height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-text {
    width: 50%;
    position: absolute;
    color: white;
    margin-top: 10%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adds a semi-transparent background to the text */
    padding: 20px;
    border-radius: 10px;
    animation: fadeInUp 2s ease-in-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-text h1 {
    margin: 0;
    font-size: 2em;
    font-family: fantasy;
}

.banner-text p {

    margin: 10px 0 0;
    font-size: 1.2em;
}

main {
    padding: 20px;
}

main section {
    padding: 60px 0;
}

main section h2 {
    font-size: 32px;
    width: 70%;
    text-align: center;
    margin-left: 16%;
}

main section h3 {
    font-size: 32px;
    width: 70%;
    text-align: center;
    margin-left: 16%;
    font-family: fantasy;
}

main section p {
    width: 40%;
    font-size: 1.2em;
    margin-left: 5%;
    margin-top: 3%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: black;
    }

    .menu a {
        padding: 15px;
        border-top: 1px solid black;
    }

    .hamburger {
        display: flex;
    }

    .menu.active {
        display: flex;
    }
}

.menu li {
    color: white;
}

.transparent {
    background-color: transparent;
}

.solid {
    background-color: rgba(0, 0, 0, 10);
}


.dropdown .dropbtn {
    cursor: pointer;

}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 10);
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.dropdown-content li {
    color: white;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* review */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}


@media (max-width: 1440px) {
    .main-wrapper {
        width: 100vw;
    }
}

.back-text {
    position: relative;
    z-index: -2000;
}


.reviews {
    margin-top: 1rem;
    overflow: hidden;
}

.reviews-title {
    text-align: center;
    margin-bottom: 7rem;
}

.reviews-title p {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: white;
}

.reviews-card {
    display: grid;
    grid-template-columns: 1fr 480px;
    width: 781px;
}

@media (max-width: 425px) {
    .reviews-card {
        grid-template-columns: 1fr;
        width: fit-content;
    }
}

.card-img {
    width: fit-content;
    height: fit-content;
}

.card-text {
    background-color: white;
    padding: 2rem 4rem;
    height: 359px;
    overflow: hidden;
}

@media (max-width: 425px) {
    .card-text {
        padding: 1rem 2rem;
        width: 70vw;
        height: fit-content;
    }
}

.card-title p {
    font-weight: 800;
    font-size: 2rem;
    line-height: 105.52%;
}

.card-para {
    margin-top: 1rem;
    margin-bottom: 0.8rem;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}


.reviews-row {
    display: flex;
    gap: 2rem;
}

@media (max-width: 425px) {
    .card-title p {
        font-weight: 700;
        font-size: 1rem;
    }

    .card-para p {
        font-size: 0.7rem;
    }

    .card-author p {
        font-size: 0.7rem;
    }

    .reviews-row {
        flex-direction: column;
        margin: 0 auto;
        width: fit-content;
    }

    .reviews img {
        width: 70vw;
    }
}

.row-first,
.row-third {
    animation: move-first 20s linear infinite;
    margin-bottom: 2rem;
}

.row-second {
    transform: translateX(-1000px);
    animation: move-second 20s linear infinite;
    margin-bottom: 2rem;
}


@media (max-width: 425px) {

    .row-second,
    .row-third {
        display: none;
    }

    .row-first {
        animation: none;
    }
}

@keyframes move-first {
    50% {
        transform: translateX(-1000px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes move-second {
    50% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-1000px);
    }
}

/* faq */

.faq-title h2 {
    position: relative;
    margin-bottom: 45px;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
    margin-top: 5%;
}

.faq-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 60px;
    height: 2px;
    background: #E91E63;
    bottom: -25px;
    margin-left: -30px;

}

.faqs-container {
    margin: 0 auto;
    max-width: 600px;
}

.faq {
    background-color: transparent;
    border: 1px solid #9FA4A8;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.3s ease;
}

.faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

.faq.active::after,
.faq.active::before {
    color: #2ecc71;
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-size: 7rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
}

.faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
}

.faq-title {
    margin: 0 35px 0 0;
    font-size: 20px;
    color: #001F61;
}

.faq-text {
    display: none;
    margin: 30px 0 0;
}

.faq.active .faq-text {
    display: block;
}

.faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
}

.faq-toggle:focus {
    outline: none;
}

.faq.active .faq-toggle {
    background-color: #9FA4A8;
}

.faq-toggle .fa-times {
    display: none;
}

.faq.active .faq-toggle .fa-times {
    display: block;
}

.faq-toggle .fa-chevron-down {
    color: #83888E;
}

.faq.active .faq-toggle .fa-chevron-down {
    display: none;
}

/* SOCIAL PANEL CSS */
.social-panel-container {
    position: fixed;
    right: 0;
    bottom: 80px;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}

.social-panel-container.visible {
    transform: translateX(-10px);
}

.social-panel {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 16px 31px -17px rgba(0, 31, 97, 0.6);
    border: 5px solid #001F61;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Muli';
    position: relative;
    height: 169px;
    width: 370px;
    max-width: calc(100% - 10px);
}

.social-panel button.close-btn {
    border: 0;
    color: #97A5CE;
    cursor: pointer;
    font-size: 20px;
    position: absolute;
    top: 5px;
    right: 5px;
}

.social-panel button.close-btn:focus {
    outline: none;
}

.social-panel p {
    background-color: #001F61;
    border-radius: 0 0 10px 10px;
    color: #fff;
    font-size: 14px;
    line-height: 18px;
    padding: 2px 17px 6px;
    position: absolute;
    top: 0;
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
    text-align: center;
    width: 235px;
}

.social-panel p i {
    margin: 0 5px;
}

.social-panel p a {
    color: #FF7500;
    text-decoration: none;
}

.social-panel h4 {
    margin: 20px 0;
    color: #97A5CE;
    font-family: 'Muli';
    font-size: 14px;
    line-height: 18px;
    text-transform: uppercase;
}

.social-panel ul {
    display: flex;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.social-panel ul li {
    margin: 0 10px;
}

.social-panel ul li a {
    border: 1px solid #DCE1F2;
    border-radius: 50%;
    color: #001F61;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
    text-decoration: none;
}

.social-panel ul li a:hover {
    border-color: #FF6A00;
    box-shadow: 0 9px 12px -9px #FF6A00;
}

.floating-btn {
    border-radius: 26.5px;
    background-color: #001F61;
    border: 1px solid #001F61;
    box-shadow: 0 16px 22px -17px #03153B;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    line-height: 20px;
    padding: 12px 20px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.floating-btn:hover {
    background-color: #ffffff;
    color: #001F61;
}

.floating-btn:focus {
    outline: none;
}

.floating-text {
    background-color: #001F61;
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-family: 'Muli';
    padding: 7px 15px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 998;
}

.floating-text a {
    color: #FF7500;
    text-decoration: none;
}

@media screen and (max-width: 480px) {

    .social-panel-container.visible {
        transform: translateX(0px);
    }

    .floating-btn {
        right: 10px;
    }
}



/* parallex */
#box-1 {
    height: 100vh;
    width: 100%;
    background-image: url('par.jpg');
    background-size: cover;
    display: table;
    background-attachment: fixed;
  }
  
  #box-1 h1 {
    color: white;
    font-family: Arial;
    font-weight: bold;
    text-align: center;
    margin: 0;
    font-size: 40px;
    display: table-cell;
    vertical-align: middle;
  }
  /* footer */

.footer {
    background-color: white;
    color: black;
    padding: 20px 0;
    text-align: left;
    border-top: 1px solid grey;
    margin-top: 5%;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
  }
  
  .footer-section {
    flex: 1;
    margin: 10px;
    min-width: 250px;
  }
  
  .footer-section h2 {
    margin-left: 13%;
    font-size: 1.5em;
    margin-bottom: 14px;
  }
  
  .footer-section p {
    margin-bottom: 20px;
  }
  
  .footer-section form input {
    background-color: lightgray;
    border: none;
    color:black;
    margin-bottom: 10px;
    padding: 10px;
    width: 100%;
    border-radius: 20px;
  }
  
  .footer-section ul {
    list-style: none;
    margin-left: 5%;
  }
  
  .footer-section ul li {
    margin-bottom: 10px;
  }
  
  .footer-section ul li a {
    color: black;
    text-decoration: none;
  }
  
  .footer-section ul li a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }
  
    .footer-section {
        margin: 10px 0;
    }
  }
  
  
  
  