/*
Theme Name: Trip Nest Guru Theme
Author: Avinya
Version: 1.0
*/


/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1200px;
    padding: 0 72px;   /* space left & right */
    margin: auto;
}

/* HEADER */
.main-header {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    position: relative;
    z-index: 9999;
}

.header-flex {
	width: 90%;
    display: flex;
    justify-content: space-between;
}

.navbar {
	margin-top: 18px
}

/* Logo */
.logo img {
    width: 120px;
}


/* NAV MENU */
/* Change color of the active (current) menu item */
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a,
.nav-menu .current_page_parent > a,
.nav-menu .current-menu-ancestor > a {
    color: #EF7F3C !important;
}

.nav-menu {
    display: flex;
    gap: 26px;
    list-style: none;
}

.nav-menu li a {
	text-transform: uppercase;
    text-decoration: none;
    font-size: 16px;
    color: #7A7A7A;
    font-weight: 500;
    transition: .3s;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #EF7F3C;
}



/* MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #905F45;
    transition: .3s;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        background: #fff;
        padding: 40px;
        width: 50%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
        border-radius: 8px;
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
	
	.nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}




/* FOOTER */
.footer {
    background: #fff;
    padding: 50px 0 20px;
}

.footer-social img, 
.contact-item img {
	width: 35px;
}

.footer-grid {
	justify-content: space-between;
    display: flex;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Footer Logo */
.footer-logo {
    width: 97px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #777;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Icons */
.footer-social a {
    width: 35px;
    height: 35px;
    border: 1px solid #f3bfa8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #f57c4a;
    transition: .3s;
}

.footer-social a:hover {
    background: #f57c4a;
    color: #fff;
}

.footer-col.footer-links {
	justify-self: center;
}

/* Links */
.footer-links ul {
    list-style: none;
}

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

.footer-links ul li a {
    color: #777;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}


/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.contact-item .icon {
/*     width: 35px;
    height: 35px;
    border: 1px solid #f3bfa8;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: #f57c4a; */
	width: 35px;
    margin-right: 20px;
}

.contact-item p, .contact-item a {
    color: #777;
    font-size: 18px;
}
.contact-item a:hover {
	color: #EF7F3C;
}
.number-wrapper {
	display: grid;
}

/* COPYRIGHT */
.footer-bottom {
    text-align: center;
    justify-content: space-between;
    display: flex;
    padding: 18px 100px;
	width: 100%;
    justify-self: center;
    font-size: 14px;
    color: #000000;
    border-top: 1px solid #f3bfa8;
    margin-top: 40px;
}

.dev-credit a {
	color: #FF0000;
}

.footer-col {
	max-width: 300px;
}

@media (max-width: 1024px) {
    .elementor-9 .elementor-element.elementor-element-558809f .wpr-slider-sub-title * {
        font-size: 52px;
    }
}

/* RESPONSIVE */
@media (max-width: 900px) {
	
	.elementor-9 .elementor-element.elementor-element-558809f .wpr-slider-sub-title * {
        font-size: 52px;
    }
	
    .footer-grid {
        grid-template-columns: 1fr 1fr;
		display: grid;
    }
}

@media (max-width: 600px) {
	.footer-bottom {
    display: block;
	padding: 20px;
}
	.footer-logo {
		justify-self: center;
	}
    .footer-grid {
        grid-template-columns: 1fr;
		justify-content: center;
        text-align: center;
		max-width: 420px;
    }

    .footer-social a {
        margin-right: 5px;
    }

    .contact-item {
        justify-content: center;
    }
}


.icon-number {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #EF7F3C; /* orange */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Apply to all four columns */
.elementor-element-bbffc97 > .e-child {
    position: relative;
    padding-right: 30px; /* space before line */
}

/* Add vertical divider */
.elementor-element-bbffc97 > .e-child:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    width: 1px;
    height: 100%;
    background: #ddd;
}

.why-choose-us {
    display: inline-block;        /* shrink to text width */
    border: 1.5px solid #d49a6a;
    border-radius: 50px;
}

.elementor-6 .elementor-element.elementor-element-d5105ae .elementor-heading-title {
	font-family: 'PlayfairDisplay-Regular' !important;
}

/* .elementor-6 .elementor-element.elementor-element-0ccd10a .elementor-heading-title {
	font-family: 'PlayfairDisplay-Regular' !important;
} */

.elementor-6 .elementor-element.elementor-element-b09988f .elementor-heading-title {
    font-family: sans-serif !important;
}






.tour-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
	padding-left: 30px;
	padding-right: 30px;
}

.tour-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}

.tour-card img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1);
  transition: 0.5s ease;
}

.tour-card:hover img {
  transform: scale(1.1);
  filter: brightness(60%);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}

/* Title always visible */
.overlay h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  z-index: 2;
}

/* Hidden content until hover */
.overlay .content {
  color: #fff;
  opacity: 0;
  display: none;
  transform: translateY(40px);
  transition: opacity 0.45s ease, transform 2.45s ease;
  pointer-events: none;
}

.tour-card:hover .content {
	display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.tour-slider .overlay .content {
	display: block;
	opacity:1;
	transform:none;
}



.content p {
  font-size: 12px;
  margin: 10px 0;
}

.content h4 {
  margin: 8px 0;
  font-size: 16px;
  font-weight: 500;
}

.package-content-divider {
    height: .5px;
    width: 90%;
    margin-top: 13px;
    margin-bottom: 12px;
    background: #EF7F3C;
}

.info {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0;
}

.tags span {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 12px;
  text-transform: capitalize;
}

a.book-btn {
  margin-top: 15px;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding: 12px 0;
  background: #ff6b00;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ff5400;
}


/* ========== TABLET (2 cards per row) ========== */
@media (max-width: 1024px) {
  .tour-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tour-card,
  .tour-card.big {
    height: 420px;
  }

  .overlay h2 {
    font-size: 22px;
  }
}

/* ========== MOBILE (1 card per row) ========== */
@media (max-width: 767px) {
	
	.elementor-element-bbffc97 > .e-child:not(:last-child)::after {
    content: "";
    position: relative;
    left: 0;
    width: 50%;
    height: 1px;
    margin-bottom: 10px;
    background: #ddd;
  }
	
	.elementor-6 .elementor-element.elementor-element-12e85d6.e-con {
		align-content: center;
	}

.elementor-6 .elementor-element.elementor-element-b4a9891.e-con {
	text-align: center !important;
}

.elementor-6 .elementor-element.elementor-element-12e85d6 {
	display: block !important;
	min-height: 420px;
}
	
.elementor-6 .elementor-element.elementor-element-d5105ae .elementor-heading-title {
	font-family: 'PlayfairDisplay-Regular' !important;
	font-size: 32px !important;
	text-align: center;
}
	
	body:not(.rtl) .elementor-6 .elementor-element.elementor-element-8a9dcf1 {
        left: 0 !important;
        top: 26px;
        transform: scaleY(-1);
}
	
	
  .tour-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }

  .tour-card,
  .tour-card.big {
    height: 400px;
  }

  .overlay {
    padding: 18px;
  }

  .overlay h2 {
    font-size: 20px;
  }
}


.lets-connect {
    background-image: url('/wp-content/uploads/2025/12/arrow.png');
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: 250px;
    padding-right: 186px;
    padding-bottom: 25px;
}

@media (max-width: 768px) {
	
	.e-con.e-flex>.e-con-inner {
		justify-content: left;
	}
    .lets-connect {
        background-image: none;
        padding-bottom: 0;  /* optional: remove extra space */
        padding-right: 0;   /* optional */
    }
	
	
}

/* @media (max-width: 600px) {
	.elementor-6 .elementor-element.elementor-element-4f1b355b0 {
		margin-top: 0px !important;
	}
	.logo img {
		width: 60px;
	}
	
} */

.info .amount {
    font-size: 15px;    /* bigger amount */
    font-weight: 700;   /* bold */
}


.wpr-slider-title h2 {
    border: 0.5px solid #ffffff;
    border-radius: 50px;
}

.wpr-slider-sub-title h3 {
	font-family: "Pinyon Script" !important;
}



/* Wrap your text section */
.e-con-inner {
    position: relative;
}

/* The left text container (white rounded box) */
.elementor-element-d6b91ee {
/*     background: linear-gradient(180deg, #ffffff 0%, #fff4e2 100%); */
    border-radius: 25px;
    box-shadow: 18px 20px 16px rgba(0, 0, 0, 0.20);
    left: 180px;
}

/* The right image */
.elementor-element-42583ec img {
    position: relative;
    z-index: -1;
    right: 120px;
}



/* Style container that JS will create */
.gallery-icon-wrapper {
	display: flex;
    background-image: url(https://tripnestguru.com/wp-content/uploads/2025/12/Shape.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 15px;
    position: absolute;
    top: -1px;
    right: 15px;
    flex-direction: column;
    gap: 10px;
    z-index: 20;
}


/* Icon buttons */
.gallery-icon-wrapper a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}




/* Icon image on top */
.social-icon img {
    width: 38px;
    height: auto;
    left: 12px;
    position: relative;
    bottom: 12px;
}



#gallery-1 img {
    border: none !important;
}


@media (max-width: 767px) {
	.wpr-slider-title, 
	.wpr-slider-title h2  {
		font-size: 10px !important;
		margin: 12px 0px 0px 0px !important;
	}
	.wpr-slider-sub-title h3 {
		font-size: 18px !important;
	}
	
	.elementor-element-42583ec img {
    	bottom: 180px;
		right: 0px;
	}
	
	.elementor-element-d6b91ee {
		left: 0px;
		top: 60px;
		width: 90% !important;
	}
	
	.elementor-9 .elementor-element.elementor-element-1da2a4a {
		margin-top: -236px;
	}
	
	.mobile-mission-vision {
		padding: 16px !important;
	}

	.pocket-friendly {
		text-align: center;
	}

	#gallery-1 .gallery-item {
		width: 50% !important;
	}
	
	#gallery-1 br {
		display: none;
	}
}


.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
	color: white;
}

.page-not-found {
    text-align: center;
    margin: 50px 0;
}

@media (max-width: 768px) {
	
.tour-card .content {
  display: block;
  transform: translateY(0);
  pointer-events: auto;
}
	
.overlay .content {
  opacity: 1;
  display: block;
}
	
	
	
}




