/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Language switcher styles */
.lang-switcher .dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background: transparent;
  color: #fff;
  border: 2px solid #00d1ff;
  padding: 6px 14px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropbtn:hover {
  background: #00d1ff;
  color: #000;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0c0c0c;
  min-width: 160px;
  z-index: 1;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 209, 255, 0.3);
  top: 38px;
  right: 0;
  overflow: hidden;
}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: #00d1ff;
  color: #000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.mobile-lang {
  padding: 15px;
  font-weight: bold;
  font-size: 16px;
  color: #00d1ff;
}


/* Customizing the scrollbar */
::-webkit-scrollbar {
    width: 12px;
}
::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #555;
}


.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.first-letter-r {
    color: #FF671F; /* Original color */
    font-size: 5rem; /* Emphasize the letter size */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add depth */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth hover effect */
}

.first-letter-r:hover {
    color: #FF4500; /* Slightly brighter on hover */
    transform: rotate(-10deg) scale(1.2); /* Add rotation and scaling */
}

.first-letter-s1 {
    color: #fff; /* Original color */
    font-size: 5rem; /* Emphasize the letter size */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Subtle glow */
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.first-letter-s1:hover {
    text-shadow: 3px 3px 8px rgba(255, 255, 255, 0.8); /* Glow intensifies */
    transform: scale(1.1); /* Slight scaling */
}

.first-letter-s2 {
    color: #046A38; /* Original color */
    font-size: 5rem; /* Emphasize the letter size */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* Subtle shadow */
    transition: transform 0.3s ease, color 0.3s ease;
}

.first-letter-s2:hover {
    color: #0E9A4C; /* Brighten the green */
    transform: translateY(-5px) scale(1.2); /* Add bounce-like effect */
}

.brand-logo img.logo {
    height: 40px; /* Keeps logo height consistent */
    width: auto; /* Maintains aspect ratio */
    vertical-align: middle; /* Aligns logo with text and other elements */
    display: inline-block; /* Ensures proper layout within flex or inline elements */
    transition: transform 0.3s ease, filter 0.3s ease; /* Adds smooth animations */
}

.brand-logo img.logo:hover {
    transform: scale(1.1); /* Slight zoom on hover */
    filter: brightness(1.2); /* Slight brightness for hover effect */
}

/* Responsive Adjustments */

/* Tablet Screens */
@media (min-width: 768px) and (max-width: 1300px) {
    .brand-logo img.logo {
        display: none;
        height: 30px; /* Reduce size for smaller screens */
        margin-right: 10px; /* Adjust spacing */
    }
}

/* Mobile Screens */
@media (max-width: 767px) {
    .brand-logo img.logo {
        display: block; /* Ensure visibility on mobile */
    }
}


@media (max-width: 480px) {
    .brand-logo img.logo {
        height: 25px; /* Further reduce size for mobile screens */
        margin-right: 5px; /* Tighten spacing */
    }
}


.button {
    background-color: #4CAF50; /* Green background */
    border: none; /* Remove borders */
    color: white; /* White text */
    padding: 1px 2px; /* Padding around the text */
    text-align: center; /* Center text */
    text-decoration: none; /* Remove underline */
    display: inline-block; /* Inline-block for spacing */
    font-size: 14px; /* Font size */
    margin: 4px 2px; /* Margin for spacing */
    cursor: pointer; /* Pointer cursor on hover */
    border-radius: 4px; /* Rounded corners */
    transition: background-color 0.3s; /* Transition effect */
}

.button:hover {
    background-color: #45a049; /* Darker green on hover */
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Navbar Styles */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: #000;
    transition: top 0.3s, background 0.5s;
}

.scrolled-up {
    background: linear-gradient(45deg, #60eafc, #397ca3);
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.6s ease, box-shadow 0.6s ease;
    padding: 2px 0;
    border-radius: 0 0 5px 5px;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

nav.hidden {
    top: -100px; /* Adjust this value based on your navbar height */
}

.visible {
    top: 0;
}

.brand-logo {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
}

nav ul.right li a {
    font-size: 1.2rem;
    color: #fff;
    font-weight: bold;
    margin-top: auto;
}


/* Extreme Sidenav Styling */
    .sidenav {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(51, 51, 51, 0.5));
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        padding: 20px;
        border-radius: 15px;
        margin: 0px auto;
        margin-top: auto;
        transition: all 0.5s ease;
    }

    .sidenav a {
        color: #fff;
        font-weight: bold;
        font-size: 1.2em;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        margin: 15px auto;
        padding: 10px 20px;
        display: block;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.5);
        transition: all 0.3s ease;
    }

    .sidenav a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffca28;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        transform: scale(1.1);
    }

    .sidenav-trigger {
        color: #fff;
        font-size: 1.5em;
        font-weight: bold;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        transition: all 1.3s ease;
    }

    .sidenav-trigger:hover {
        color: #ffca28;
        text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
        transform: rotate(360deg);
    }


.header {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: 
        linear-gradient(45deg, rgba(0,191,255,0.6), rgba(32,178,170,0.6), rgba(0,206,209,0.6)),
        url('https://nectardestinations.com/img/silhouette-india.webp') center/cover no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Removed heavy gradientAnimation */
}

/* Content Layer */
.header > div, .header > h1, .header > p {
    position: relative;
    z-index: 2;
}

/* Text Styling */
.parallax-content h1, .parallax-content p {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease, opacity 0.3s ease;
    letter-spacing: 1px;
}

/* Main Heading */
.parallax-content h1 {
    font-size: clamp(2rem, 6vw, 4rem); /* Responsive */
    font-weight: 800;
    background: linear-gradient(45deg, #00bfff, #20b2aa, #00ced1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out forwards;
}

/* Subheading */
.parallax-content p {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: #fff;
    max-width: 90%;
    margin: 15px auto;
    animation: fadeInUp 1.5s ease-out 0.2s forwards;
}

/* Fade-in Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Adding 3D Hover Effect on Links */
.nav-links a {
    color: white;
    font-size: 1.3rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.nav-links a:hover {
    color: #00bfff; /* Neon Blue */
    transform: translateY(-5px) scale(1.1);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.6);
}


#contact-cta {
  position: relative;
  background: linear-gradient(45deg, #60eafc, #397ca3);
}
#contact-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://nectardestinations.com/img/silhouette-india.webp') center/cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}
#contact-cta .container {
  position: relative;
  z-index: 1;
}

/* Footer Styles */
.page-footer {
    background: linear-gradient(45deg, #60eafc, #397ca3);
    background-size: 200% 200%;
    animation: gradientAnimation 6s ease infinite;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: background 0.6s ease, box-shadow 0.6s ease;
    border-radius: 0 0 5px 5px;
    color: #fff;
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.page-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 18px;
    margin: 0;
    letter-spacing: 1px;
}

.footer-logo .brand-name {
    font-weight: bold;
    color: #ff6f00;
    text-transform: uppercase;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Footer Menu */
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-menu li {
    display: inline-block;
}

.footer-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-menu li a:hover {
    color: #ff6f00;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    color: #ff6f00;
    font-size: 18px;
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
    background: #ff6f00;
    color: #fff;
}

/* Footer Bottom Section */
.footer-bottom {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom .highlight {
    color: #ff6f00;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column;
        text-align: center;
    }

    .footer-menu {
        flex-wrap: wrap;
        gap: 10px;
    }

    .social-icons {
        justify-content: center;
    }
}

.custom-btn {
        background: linear-gradient(45deg, rgba(255, 162, 0, 0.9), rgba(255, 162, 0, 1.1));
        color: white;
        font-size: 1.2em;
        font-weight: bold;
        border-radius: 25px;
        border: 1rem;
        border-color: #000;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .custom-btn:hover {
        background: linear-gradient(45deg, rgba(0, 0, 0, 0.5), rgba(51, 51, 51, 0.5));
        color: #fff;
        box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    }
    
    .hidden {
    display: none;
}

/* Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Styles */
@media only screen and (max-width: 992px) {
    nav .brand-logo {
        margin-left: 0px;
        margin-top: 18px;
    }

    nav ul.right li a {
        font-size: 0.6rem;
    }

    .header h1 {
        font-size: 3rem;
        color: #1a1a1a;
    }

    .header p {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 600px) {
    .header h1 {
        font-size: 2.5rem;
    }

    .header p {
        font-size: 1rem;
    }
}

 .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      font-size: 1rem;
      color: white;
      opacity: 0.7;
      animation: bounce 2s infinite;
      cursor: pointer;
    }

    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes bounce {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, -10px); }
    }

    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.2rem;
      }
      .hero-content p {
        font-size: 1rem;
      }
    }
    
    .language-switcher {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  font-family: 'Segoe UI', sans-serif;
}

#langBtn {
  position: relative; /* So the menu can be placed relative to this */
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 12px 20px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.lang-list {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 200px;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 14px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  pointer-events: none;
  z-index: 999;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lang-list.show {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: auto;
}

.lang-list li {
  padding: 0;
  margin: 0;
}

.lang-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-list li:last-child a {
  border-bottom: none;
}

.lang-list li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffd700;
}
/* Footer Destinations */
.footer-destinations {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-destinations li {
    display: inline-block;
}

.footer-destinations li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-destinations li a:hover {
    color: #ff6f00;
}

