/*
Theme Name:     Hello Elementor Child
Template:       hello-elementor
Version:        1.0.0
Text Domain:    hello-elementor-child
*/

.page-header{
	display:none!important;
}
.newsletter-wrapper {
  display: flex;
  align-items: center;
  border: 2px solid #f8d7da;
  background: #fff5f5;
  border-radius: 50px;
  padding: 5px;
  max-width: 500px;
  margin: 0 auto;
}

/* Email Field */
.newsletter-email {
  flex: 1;
  border: none !important;
  outline: none !important;
  padding: 12px 15px !important;
  background: transparent !important;
  font-size: 16px !important;
  border-radius: 50px !important;
  box-shadow: none !important;
}

/* Submit Button */
.newsletter-submit {
  background: #ea6b1f !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 12px 25px !important;
  font-size: 16px !important;
  cursor: pointer;
  transition: 0.3s;
  margin-left: 10px;
}

.newsletter-submit:hover {
  background: #c9302c !important;
}
.newsletter-wrapper p {
  display: flex;
	margin-bottom:0px;
}
.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    background: white;
    width: 100%!important;
    margin: 20px auto;
}
@media (max-width: 768px) {
  .wpcf7 form.sent .wpcf7-response-output {
    width: 100% !important;
   
  }
}
.wpcf7-spinner{
	display:none !important;
}
/* Contact Form 7 - Get in Touch Styling */


.wpcf7 h2 {
  font-family: "Times New Roman";
  font-size: 28px;
  margin-bottom: 5px;
  color: #1b1b1b;
  font-weight: bold;
}

.wpcf7 p {
  color: #555;
  margin-bottom:0px!important;
  font-family: "Times New Roman";
}


.form-row {
  display: flex;
  gap: 10px;
}

.form-group {
  width: 100%;
}

.form-group label {
  display: block;
  font-weight: 600;
	margin-top:20px;
  margin-bottom: 6px;
  font-family: "Times New Roman";
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-size: 15px;
  background: #fff;
  font-family: "Times New Roman";
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ea5b48;
  outline: none;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.required {
  color: red;
}

.submit-btn {
  background-color:#EA6B1F !important;
  color: white;
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  width: 160px;
  transition: 0.3s;
  font-family: "Times New Roman";
}


/* Responsive */
@media (max-width: 600px) {
  .form-row {
    flex-direction: column;
  }
}


/* Header Styles */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    width: 100%;
}

.logo {
    flex-shrink: 0;
    z-index: 1001;
}

.logo a {
    color: #ea6b1f;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    font-family: 'Times New Roman';
    transition: color 0.3s ease;
}

.logo a:hover {
    color: #d45a0f;
}

.logo img {
    max-height: 60px;
    width: auto;
    display: block;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #333333;
    text-decoration: none;
    padding: 12px 18px;
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Times New Roman';
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active-page {
    color: #ea6b1f;
    background-color: rgba(234, 107, 31, 0.1);
}

/* Hamburger Menu Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 2001;
    position: relative;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #ea6b1f;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Off-Canvas Slide Menu */
.mobile-slide-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-slide-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #ea6b1f;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-menu-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: bold;
    font-family: 'Times New Roman';
}

.mobile-menu-logo a {
    color: #ffffff;
    text-decoration: none;
}

.mobile-menu-logo img {
    max-height: 50px;
    width: auto;
}

.mobile-menu-close {
    background: transparent;
    border: none;
	color:#EA6B1F!important;
    color: #ffffff;
    font-size: 40px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    padding: 10px 0;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-item:last-child {
    border-bottom: none;
}

.mobile-nav-link {
    display: block;
    padding: 18px 25px;
    color: #333333;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    font-family: 'Times New Roman';
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 100%;
    background-color: rgba(234, 107, 31, 0.08);
    transition: width 0.3s ease;
    z-index: -1;
}

.mobile-nav-link:hover::before,
.mobile-nav-link.active-page::before {
    width: 100%;
}

.mobile-nav-link:hover,
.mobile-nav-link.active-page {
    color: #ea6b1f;
    padding-left: 35px;
}

.mobile-nav-link.active-page {
    font-weight: 600;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(2px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open,
html.menu-open {
    overflow: hidden;
    height: 100%;
}

/* Tablet Responsive */
@media (max-width: 992px) {
    .header-container {
        padding: 0 20px;
    }

    .nav-menu a {
        padding: 10px 14px;
        font-size: 15px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header-container {
        padding: 0 15px;
        min-height: 60px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .desktop-nav {
        display: none;
    }

    .logo a {
        font-size: 22px;
    }

    .logo img {
        max-height: 40px;
    }

    .mobile-slide-menu {
        width: 300px;
        right: -340px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 12px;
        min-height: 55px;
    }

    .logo a {
        font-size: 20px;
    }

    .logo img {
        max-height: 35px;
    }

    .mobile-slide-menu {
        width: 280px;
        right: -320px;
    }

    .mobile-nav-link {
        font-size: 16px;
        padding: 16px 20px;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link.active-page {
        padding-left: 30px;
    }

    .hamburger-line {
        width: 24px;
        height: 2.5px;
    }

    .mobile-menu-toggle {
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .logo a {
        font-size: 18px;
    }

    .mobile-slide-menu {
        width: 260px;
        right: -300px;
    }

    .mobile-nav-link {
        font-size: 15px;
        padding: 15px 18px;
    }
}

/* Desktop only - hide mobile elements */
@media (min-width: 769px) {
    .mobile-slide-menu,
    .mobile-menu-overlay,
    .mobile-menu-toggle {
        display: none !important;
    }
}
/* Footer Styles */
.main-footer {
    background: #0168a4;
    color: #ffffff;
    font-family: 'Times New Roman';
    padding-top: 60px;
    margin-top: 50px;
}

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

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

/* About Section */
.footer-about {
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 60px;
    width: auto;
}

.footer-description {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #ea6b1f;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px 0;
    font-family: 'Times New Roman';
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #ea6b1f;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: #ea6b1f;
}

.footer-links a:hover {
    color: #ea6b1f;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

/* Contact Section */
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    gap: 12px;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s ease;
}

a.contact-text:hover {
    color: #ea6b1f;
}

/* Footer Bottom */
.footer-bottom {
    background: #0168a4;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    color: #ffffff;
    font-size: 14px;
}



/* Tablet Responsive */
@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-footer {
        padding-top: 40px;
        margin-top: 20px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-about {
        text-align: center;
    }

    .footer-logo img {
        max-height: 50px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-links a::before {
        display: none;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .copyright,
    .footer-credit {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding-top: 30px;
        margin-top: 40px;
    }

    .footer-container {
        padding: 0 15px;
    }

    .footer-row {
        gap: 30px;
    }

    .footer-logo img {
        max-height: 45px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 17px;
    }

    .footer-links a,
    .contact-text {
        font-size: 14px;
    }

	
    .contact-icon {
        font-size: 18px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .copyright,
   {
        font-size: 12px;
    }
}
.logged-in-as a {
  color: #EA6B1F !important;
}
.reviews-area [type=button],
.reviews-area [type=submit],
.reviews-area button {
    border: 1px solid #EA6B1F !important;
    color: #EA6B1F !important;
}
.tour-title {
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* Mobile (max 480px) */
@media (max-width: 480px) {
    .location-info {
        max-width: 160px !important;  /* mobile ke liye width set */
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .location-info span {
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: inline-block !important;
        max-width: 120px !important; /* adjust based on layout */
    }

    .location-info .location-icon {
        width: 16px !important;
        height: 16px !important;
        flex-shrink: 0 !important;
    }
}
