/*
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.11.18.1766209061
Updated: 2025-12-20 05:37:41

*/


/* Disable Astra Header */
#ast-desktop-header,
#ast-mobile-header,
.ast-header-break-point .main-header-bar {
    display: none !important;
}

/* Disable Astra Footer */
.site-footer,
.ast-footer-overlay {
    display: none !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 :root {
      --primary-color: #246772; /* Example: A blue primary color */
      --secondary-color: #6c757d; /* Example: A gray secondary color */
      --text-color: #333333; /* Example: A dark text color */
      --background-color: #f8f9fa; /* Example: A light background color */
    }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
    color: white;
    padding-top: 0;
/*     position: sticky; */
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #246772;
    z-index: 1001;
}

.logo-image {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #246772;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #246772;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Styles */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background-color: white;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        padding: 100px 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-image {
        height: 70px;
    }

    nav {
        padding: 0 1rem;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }

    .logo-image {
        height: 60px;
    }
}

/* Hero Section */

/* Dropdown styles */
.dropdown {
    position: relative;
}
.dropdown > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dropdown .arrow {
  font-size: 0.7em;
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.dropdown.active .arrow,
.dropdown:hover .arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px 0;
    z-index: 1000;
    opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: #f0f0f0;
}
/* Show dropdown on hover (desktop only) */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown.active .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile styles */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: transparent;
    padding-left: 20px;
    transform: none !important; /* Override transform */
        opacity: 1 !important; /* Override opacity */
  }
  
  .dropdown-menu a {
    color: var(--primary-color);
    padding: 8px 20px;
  }
   .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}



/* Footer Styles */
footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 50px;
}

.social-icons-whatapp {
    width: 100px;
    height: 100px;

}


.Quick-Scan {
    padding-left: 17px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icons a:hover {
    background: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .destination-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1rem;
    }
}


@media (max-width: 600px) {

    .social-icons {
        text-align: center;
        width: 100%;
    }

    .social-icons-whatapp {
        display: block;
        margin-left: 50px;
    }

    .Quick-Scan {
        /* text-align: center; */
        margin-left: 50px;
        width: 100%;
    }
}

.custom-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.custom-footer {
    background: #2c3e50;
    color: #fff;
}
