/* =========================
   HEADER
========================= */
body {
    padding: 0;
    margin: 0;
    font-family: "Jost", sans-serif;
}

.top-header {
    width: 100%;
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}
p.last-section {
    font-size: 30px;
    text-align: center;
}
.package-top span {
    color: red;
    font-size: 20px;
    font-weight: 600;
}
.seo-section p {
    font-size: 20px;
    line-height: 28.1px;
    text-align: center;
}
.seo-section {
    padding: 22px 17px;
    background: #f4e207;
}

.container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    width: 78%;
}
.logo {
    width: 284px;
}

.navbar {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.navbar a {
    text-decoration: none;
    color: #222222;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.navbar a:hover {
    color: #f4e207;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-info a {
    text-decoration: none;
    color: #e5d200;
    font-size: 18px;
    font-weight: 500;
}

.contact-info i {
    margin-right: 8px;
}

/* =========================
BANNER SECTION
========================= */

.hero-banner {
    width: 100%;
    min-height: 700px;
    background: url('IMAGES/banner-imag.jpeg') center center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.20);
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* =========================
LEFT OFFER BOX
========================= */

.offer-box {
    width: 100%;
    max-width: 470px;
    background: #222222;
    border: 4px solid #f4e207;
    padding: 40px 30px;
    color: #fff;
    position: relative;
}

.offer-box {
    width: 100%;
    max-width: 470px;
    background: #222222;
    border: 4px solid #f4e207;
    padding: 40px 30px;
    color: #fff;
    position: relative;
}

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.feature-box {
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    padding-right: 10px;
}

.feature-box:last-child {
    border-right: none;
}

.feature-box i {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 16px;
    font-weight: 600;
}

.offer-text {
    font-family: 'Great Vibes', cursive;
    font-size: 42px;
    color: #ffe600;
    line-height: 1.2;
    margin-bottom: 25px;
}

.call-now {
    font-size: 20px;
    font-weight: 700;
}

.sale-badge {
    position: absolute;
    right: -78px;
    bottom: -19px;
    width: 130px;
    height: 130px;
    background: linear-gradient(180deg, #ffcf00, #ff7700);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sale-badge span {
    font-size: 30px;
    line-height: 1;
}

.sale-badge small {
    font-size: 18px;
}

/* =========================
FORM BOX
========================= */

.enquiry-box {
    width: 100%;
    max-width: 380px;
    background: #fff;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.form-header {
    background: #222222;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    font-size: 36px;
    font-weight: 700;
}

.form-body {
    padding: 50px 25px 30px;
}

.form-group {
    margin-bottom: 22px;
}

.form-control {
    width: 100%;
    border: none;
    border-bottom: 2px solid #e5d200;
    padding: 12px 5px;
    font-size: 16px;
    outline: none;
}

.submit-btn {
    width: 100%;
    background: #222222;
    border: none;
    color: #fff;
    padding: 16px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 0px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #e5d200;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px) {

    .banner-flex {
        justify-content: center;
    }

    .sale-badge {
        right: -50px;
    }
}

@media(max-width:768px) {

    .logo {
        font-size: 34px;
        text-align: center;
        width: 100%;
    }

    .header-flex {
        justify-content: center;
        text-align: center;
    }

.navbar {
	display: none;
}

    .contact-info {
        align-items: center;
    }

    .offer-box h1 {
        font-size: 38px;
    }

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .offer-text {
        font-size: 34px;
    }

   .sale-badge {
	width: 100px;
	height: 100px;
	right: -17px;
	bottom: 27px;
}

    .sale-badge span {
        font-size: 24px;
    }
}

@media(max-width:480px) {

    .hero-banner {
        padding: 40px 0;
    }

    .offer-box {
        padding: 25px 20px;
    }

    .offer-box h1 {
        font-size: 28px;
    }

    .offer-text {
        font-size: 28px;
    }

    .features {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .feature-box p {
        font-size: 14px;
    }

    .form-header {
        font-size: 28px;
    }

    .navbar a {
        font-size: 15px;
    }
}

.packages-section {
    padding: 80px 0;
    background: #f5f5f5;
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: red;
    margin-bottom: 50px;
    font-weight: 700;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px;
    padding-bottom: 20px;
}

.package-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0px;
    overflow: hidden;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-top {
    font-size: 14px;
    color: #777;
    padding: 15px 15px 0;
}

.package-card h3 {
    font-size: 18px;
    color: #111;
    padding: 6px 14px;
    margin: 0;
}

.package-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.places {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.places span {
    font-size: 15px;
    color: #555;
    font-weight: 500;
}

.package-icons {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.icon-box {
    text-align: center;
}

.icon-box i {
    font-size: 22px;
    margin-bottom: 8px;
    color: #444;
}

.icon-box p {
    font-size: 13px;
    color: #666;
}

.package-content {
    padding: 6px 15px;
}

.package-content h4 {
    font-size: 20px;
    color: #222;
    padding: 0;
    margin: 0;
}

.package-content ul {
    padding-left: 18px;
}

.package-content li {
    margin-bottom: 12px;
    color: #444;
    line-height: 1.1;
}

.more-content {
    display: none;
}

.more-content.active {
    display: block;
}

.read-more-btn {
    border: none;
    background: none;
    color: red;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.enquiry-btn {
    display: block;
    width: 100%;
    background: #f4e207;
    color: #000;
    text-align: center;
    text-decoration: none;
    padding: 18px;
    font-size: 22px;
    font-weight: 700;
    transition: 0.3s;
}

.enquiry-btn:hover {
    background: #f4e207;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px) {

    .packages-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 30px;
    }

    .packages-grid {
        grid-template-columns: 1fr !important;
    }

    .package-card h3 {
        font-size: 24px;
    }

    .package-content h4 {
        font-size: 30px;
    }
}

@media(max-width:480px) {

    .section-title {
        font-size: 24px;
    }

    .package-icons {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .package-card img {
        height: 220px;
    }
}

/* =========================
clent review CSS
=========================  */

.review-section {
    padding: 90px 0;
    background: #fff;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.review-title {
    text-align: center;
    font-size: 44px;
    color: #e5d200;
    margin-bottom: 15px;
    font-weight: 700;
}

.review-subtitle {
    text-align: center;
    color: #666;
    font-size: 18px;
    margin-bottom: 60px;
}

.review-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
}

.quote-icon {
    width: 65px;
    height: 65px;
    background: #e5d200;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.review-text {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

.stars {
    margin-bottom: 25px;
}

.stars i {
    color: #ffb400;
    margin-right: 4px;
    font-size: 18px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.client-info img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h4 {
    font-size: 20px;
    color: #111;
    margin-bottom: 5px;
}

.client-info span {
    color: #777;
    font-size: 15px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px) {

    .review-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {

    .review-title {
        font-size: 34px;
    }

    .review-wrapper {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 30px 25px;
    }
}

@media(max-width:480px) {

    .review-title {
        font-size: 28px;
    }

    .review-subtitle {
        font-size: 16px;
    }

    .review-text {
        font-size: 15px;
    }
}


/* =========================
CONTACT SECTION
========================= */

.contact-section {
    padding: 90px 0;
    background: #f3f3f3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* =========================
MAP
========================= */

.map-box {
    background-image: url('IMAGES/himachal.webp');
    background-size: cover;
}

.map-box iframe {
    width: 100%;
    height: 100%;
}

/* =========================
FORM BOX
========================= */

.contact-form-box {
    background: #f8f8f8;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-title {
    background: #f4e207;
    color: #111;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 18px 22px;
    margin-bottom: 35px;
}

.contact-form-box h2 {
    font-size: 18px;
    line-height: 1.1;
    color: #1d1d1d;
    margin-bottom: 45px;
}

.form-row {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

.input-box input {
    height: 50px;
    border: none;
    background: #ececec;
    padding: 0 25px;
    font-size: 16px;
    outline: none;
    color: #333;
}

.input-box input::placeholder {
    color: #777;
}

.contact-btn {
    width: 100%;
    height: 50px;
    border: none;
    background: #1d1d1d;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.contact-btn:hover {
    background: #f4e207;
    color: #111;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px) {

    .contact-form-box h2 {
        font-size: 55px;
    }

    .contact-form-box {
        padding: 40px;
    }

}

@media(max-width:991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .map-box {
        min-height: 450px;
    }

}

@media(max-width:768px) {

    .contact-section {
        padding: 60px 0;
    }

    .contact-form-box {
        padding: 30px;
    }

    .contact-form-box h2 {
        font-size: 42px;
        margin-bottom: 30px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .input-box input {
        height: 65px;
        font-size: 16px;
    }

    .contact-btn {
        height: 70px;
        font-size: 20px;
    }

}

@media(max-width:480px) {

    .contact-form-box h2 {
        font-size: 34px;
    }

    .small-title {
        font-size: 16px;
        padding: 14px 18px;
    }

}

.footer {
    background: #222222;
    color: #fff;
    padding: 70px 0 20px;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
    margin-bottom: 40px;
}

.footer-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 15px;
}

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

.footer-box ul li {
    margin-bottom: 14px;
}

.footer-box ul li a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-box ul li a:hover {
    color: #f4e207;
    padding-left: 5px;
}

.footer-box i {
    color: #e5d200;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 42px;
    height: 42px;
    background: #fff;
    color: #222222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #f4e207;
    color: #fff;
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    padding-top: 20px;
    font-size: 15px;
    color: #ddd;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:576px) {

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

    .footer {
        padding: 50px 0 20px;
    }

    .footer-box h3 {
        font-size: 22px;
    }

    .footer-box p,
    .footer-box ul li a {
        font-size: 15px;
    }
}


.popup{
  width:100%;
  height:100vh;
  position:fixed;
  top:0;
  left:0;
  background:rgba(0,0,0,0.6);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:999;
}

.popup-content{
  width:530px;
  background:#e9e9e9;
  padding:40px 30px;
  position:relative;
  border-top:40px solid #1f1f1f;
}

.popup-content h2{
  text-align:center;
  margin-bottom:35px;
  color:#fff;
  position:absolute;
  top:-52px;
  left:50%;
  transform:translateX(-50%);
  font-weight:bold;
}

.close-btn{
  position:absolute;
  top:10px;
  right:15px;
  font-size:28px;
  cursor:pointer;
  color:#222222;
}

.popup-content input{
  width:100%;
  border:none;
  border-bottom:2px solid #c9b600;
  background:transparent;
  padding:14px 5px;
  margin-bottom:25px;
  font-size:18px;
  outline:none;
}

.submit-btn{
  width:100%;
  padding:18px;
  background:#1f1f1f;
  color:#fff;
  border:none;
  font-size:18px;
  font-weight:bold;
  cursor:pointer;
}
