 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
             overflow-x: hidden;
            color: #222;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
        }

.nav-bar {
    background-color: #e2b1b7 !important; /* Pink */
     padding: 5px 200px;
}
       .plan-btn {
    background-color: #992952;
    border: none;
    color: white;
    font-weight: bold;
    padding: 5px 20px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.35);
    cursor: pointer;
  } 

        .plan-btn:hover {
            background: #b12f67;
        }

        /* ===================================
           MAIN NAVBAR
        =================================== */

     
/* MAIN NAVBAR SHADOW */
.navbar.shadow-sm {
    box-shadow: 0 8px 8px -8px rgba(0, 0, 0, 0.6) !important;
}.navbar-nav .nav-item {
    margin: 0 20px;
      font-family: 'inria serif'!important;
}

.logo-right {
    text-align: right;
    margin-left: 40px;
  }
  .logo-circle {
    display: inline-block;
    background: white;
    border-radius: 50%;
    padding: 8px;
  }
  
  .logo-circle img {
    height: 40px;
    width: 40px;
    object-fit: contain;
  }
  .nav-right {
    margin-left: auto; 
    display: flex;
    align-items: center;
    text-align: right;
  }
  .nav-right a {
    margin-left: 20px;
    color: #333;
    text-decoration: none;
  }
  
 .logo-right {
    text-align: right;
    margin-left: 80px;
  }
  .logo-circle {
    display: inline-block;
    background: white;
    border-radius: 50%;
    padding: 8px;
  }
    
  
        .nav-link {
              font-family: 'inria serif'!important;
            color: #393838 !important;
            font-weight: 600;
            margin-left: 20px;
        }

        .nav-link:hover {
            color: #b12f67 !important;
        }

        /* ===================================
           HERO SECTION
        =================================== */

        .hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
           background: linear-gradient(to bottom, #ffffff 0%, #f6c6cc 100%);
             
        }

        .hero-title {
            font-size: 80px;
            font-weight: 600;
            line-height: 1.1;
            font-family: garet;
        }

        .hero-title span {
            color: #c54c78;
            font-style: italic;
        }

        .hero-text {
            margin-top: 25px;
            font-size: 24px;
            line-height: 1.5;
            max-width: 620px;
            font-weight: 700;
        }

        .hero-img {
            margin: auto;
    width: 100%;
    max-width: 500px;
    transform: rotate(-10deg);
}

      /* ABOUT SECTION */
 

.section-pad h1 {
    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
    max-width: 350px;
}

.section-pad p {
    font-size: 16px;
    line-height: 1.45;
    max-width: 500px;
    color: #222;
    font-weight: 600;
}

.section-pad img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 0 !important;
}

/* Button */
.plan-btn {
    background-color: #992952;
    border: none;
    color: white;
    font-weight: 600;
    padding: 8px 20px;
    cursor: pointer;
    box-shadow: 0 8px 10px -8px rgba(0,0,0,0.7);
}

/* spacing */
.row.align-items-center {
    align-items: center !important;
}
        

        /* ===================================
           TRIPS SECTION
        =================================== */

        .trips-section {
            background: #f6c6cc;
            padding: 500px 40px;
        }

        .trip-content h2 {
            font-size: 50px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .trip-content p {
            font-size: 24px;
            line-height: 1.5;
            
        }

        .trip-card {
            position: relative;
            overflow: hidden;
            height: 620px;
            
        }

        .trip-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trip-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            color: #fff;
            background:
                linear-gradient(to top,
                    rgba(132, 150, 0, 0.95),
                    rgba(132, 150, 0, 0.4),
                    transparent);
        }

        .trip-overlay span {
            font-size: 12px;
        }

        .trip-overlay h4 {
            font-size: 26px;
            font-weight: 700;
            margin: 10px 0;
        }

        .trip-overlay p {
            font-size: 14px;
            line-height: 1.6;
        }

        .trip-overlay h6 {
            font-style: italic;
            margin-bottom: 18px;
        }

        .trip-btn {
            display: inline-block;
            padding: 10px 24px;
            border: 2px solid #fff;
            color: #fff;
            transition: .3s;
        }

        .trip-btn:hover {
            background: #fff;
            color: #000;
        }

        /* ===================================
           REVIEW
        =================================== */

        .review {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            height: 100%;
        }

        

        /* ===================================
           RESPONSIVE
        =================================== */

        @media(max-width:991px) {

            .hero {
                text-align: center;
            }

            .hero-title {
                font-size: 55px;
            }

            .hero-text {
                font-size: 20px;
                margin: 20px auto;
            }

            .hero-img {
                margin-top: 40px;
                max-width: 320px;
            }

            .trip-content {
                text-align: center;
                margin-bottom: 40px;
            }

            .trip-card {
                height: 500px;
            }
        }

        @media(max-width:576px) {

            .hero-title {
                font-size: 40px;
            }

            .hero-text {
                font-size: 17px;
            }

            .trip-content h2 {
                font-size: 34px;
            }

            .trip-content p {
                font-size: 18px;
            }

           

            .trip-card {
                height: 420px;
            }

            .plan-btn {
                padding: 10px 18px;
                font-size: 14px;
            }
        }
        /* ======FOOTER========== */

        .custom-footer {
    background: #f6c6cc;
    padding: 35px 300px;
    color: #4f4f4f;
    font-family: 'Poppins', sans-serif;
    

}

.footer-column {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 20px;
    position: relative;
}

/* Vertical Dividers */
.footer-column:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #c58495;
}

.footer-title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.subscribe-form {
    position: relative;
    max-width: 420px;
}

.subscribe-form input {
    width: 100%;
    height: 45px;
    border: none;
    border-radius: 10px;
    padding: 0 50px 0 18px;
    font-size: 16px;
    font-style: italic;
    color: #666;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.subscribe-form button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.footer-text {
    font-size: 18px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icons a {
  width: 38px;
    height: 38px;
    font-size: 18px;
    background: #bf4a73;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
     transition: 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.contact-info p {
      font-size: 16px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.contact-info a {
    color: #bf4a73;
    text-decoration: none;
}

@media (max-width: 991px) {

    .footer-column {
        min-height: auto;
        text-align: center;
        padding: 30px 15px;
    }

    .footer-column::after {
        display: none;
    }

    .footer-title,
    .footer-text,
    .contact-info p {
        font-size: 18px;
    }

    .subscribe-form input {
        height: 55px;
        font-size: 16px;
    }
}
 

 

.features-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-box {
    background: transparent;
    flex: 1;
    min-width: 200px;
    background: transparent;
    box-shadow: none;
    padding: 20px;
    text-align: center;
}

.feature-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 20px;
}

 

.features-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
 
.feature-box img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
}
.section-title h2{
        background: transparent !important;
    position: relative;
    margin-bottom: 70px;
}
.section-title h2 {
    display: inline-block;
    background: #f5f5f5; /* same as section background */
    padding: 0 30px;
    font-size: 40px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.section-title span {
    width: 250px;
    height: 2px;
    background: #d67a92;
}

.section-title h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
}.bottom-line {
    width: 100%;
    height: 2px;
    background: #d67a92;
}

 
@media (max-width: 991px) {

    .section-heading {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
    }

    .section-heading .line {
        width: 180px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .features-wrapper {
        justify-content: center;
        gap: 40px;
    }

    .feature-box {
        flex: 0 0 calc(50% - 20px);
    }

    .feature-box img {
        width: 90px;
        height: 90px;
    }

    .feature-box h5 {
        font-size: 20px;
    }
}


@media (max-width: 576px) {
    .feature-box {
        flex: 0 0 100%;
    }
}
  
        .destination-section {
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8c2ca 100%);
            padding: 80px 0;
        }

        .destination-card {
            text-align: center;
        }

        .destination-img {
            max-width: 100%;
            width: 500px;
            margin: 0 auto 30px;
            display: block;
        }

        .destination-title {
            font-family: Georgia, serif;
            font-size: 52px;
            font-weight: 600;
            color: #000;
            margin-bottom: 25px;
        }

        .explore-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: #000;
            color: #fff;
            text-decoration: none;
            padding: 14px 35px;
            border-radius: 12px;
            font-size: 18px;
            transition: 0.3s;
        }

        .explore-btn:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 991px) {
            .destination-card {
                margin-bottom: 60px;
            }

            .destination-title {
                font-size: 40px;
            }
        }

        @media (max-width: 576px) {
            .destination-section {
                padding: 50px 0;
            }

            .destination-title {
                font-size: 32px;
            }

            .explore-btn {
                padding: 12px 28px;
                font-size: 16px;
            }
    
        }
 
.plan-btn:hover {
    background: #b12f67;
}

 
 

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: #35061a;
}

 

@media (max-width: 991px) {
    .logo-circle img {
        height: 55px;
    }

    .plan-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .main-navbar .nav-link {
        padding: 10px 0;
    }
}
 

@media (max-width: 768px) {
    .logo-circle img {
        height: 60px;
    }
}
      
        /* ===================================
           TRIPS SECTION
        =================================== */

        .trips-section {
            background: #f6c6cc;
            padding: 90px 250px;
        }

        .trip-content h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .trip-content p {
            font-size: 18px;
            line-height: 1.5;
        }

        .trip-card {
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .trip-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .trip-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 24px;
            color: #fff;
            background:
                linear-gradient(to top,
                    rgba(132, 150, 0, 0.95),
                    rgba(132, 150, 0, 0.4),
                    transparent);
        }

        .trip-overlay span {
            font-size: 12px;
        }

        .trip-overlay h4 {
            font-size: 10px;
            font-weight: 700;
            margin: 10px 0;
        }

        .trip-overlay p {
            font-size: 10px;
            line-height: 1.6;
        }

        .trip-overlay h6 {
            font-size: 10px;
            font-style: italic;
            margin-bottom: 12px;
        }

        .trip-btn {
            display: inline-block;
            padding: 2px 2px;
            border: 1px solid #fff;
            color: #fff;
            transition: .3s;
        }

        .trip-btn:hover {
            background: #fff;
            color: #000;
        }

        /* ===================================
           REVIEW
        =================================== */

        .review {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 20px;
            height: 100%;
        }

        /* ===================================
           FOOTER
        =================================== */

        footer {
            background: #111;
            color: #fff;
        }

        /* ===================================
           RESPONSIVE
        =================================== */

        @media(max-width:991px) {

            .hero {
                text-align: center;
            }

            .hero-title {
                font-size: 55px;
            }

            .hero-text {
                font-size: 20px;
                margin: 20px auto;
            }

            .hero-img {
                margin-top: 40px;
                max-width: 320px;
            }

            .trip-content {
                text-align: center;
                margin-bottom: 40px;
            }

            .trip-card {
                height: 500px;
            }
        }

        @media(max-width:576px) {

            .hero-title {
                font-size: 40px;
            }

            .hero-text {
                font-size: 17px;
            }

            .trip-content h2 {
                font-size: 34px;
            }

            .trip-content p {
                font-size: 18px;
            }

            .trips-section {
                padding: 60px 20px;
            }

            .trip-card {
                height: 420px;
            }

            .plan-btn {
                padding: 10px 18px;
                font-size: 14px;
            }
        }
        .destination-section {
            background: linear-gradient(to bottom, #f5f5f5 0%, #e8c2ca 100%);
            padding: 80px 0;
        }
.destination-btn {
    width: 190px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px;
    display: block;
    font-size: 18px;
}

.destination-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.destination-list li {
    margin-bottom: 8px;
}

.destination-list a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    transition: .3s;
}

.destination-list a:hover {
    color: #555;
    padding-left: 5px;
} 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

 
/* ================= CONTACT PAGE ================= */

.contact-page{
    font-family:'Poppins',sans-serif;
    background:#fff;
    padding-bottom:40px;
}


/* Header */

.contact-header{
    position:relative;
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
}


.flower img{
 position:relative;
    left:-700px;
    top:50px;
    width:250px;
}


.page-title{
    font-family:serif;
    font-size:52px;
    font-weight:500;
    margin-left:-700px;
}



/* Contact Main Box */

.contact-card{

    width:800px;
    margin:auto;
    background:#f7d9dd;
    padding:45px 55px;
}



/* Travel */

.section-header h2{
    font-size:20px;
    margin:0;
}

.section-header p{
    font-size:13px;
    font-weight:600;
}


.enquiry-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    margin-top:35px;
}


.enquiry-grid h4{
    font-size:14px;
    margin-bottom:8px;
}


.enquiry-grid p{
    font-size:11px;
    margin:4px 0;
}



/* Button */

.btn-wrapper{

    text-align:center;
    margin:35px 0;
}


.btn-wrapper button{

    background:#bf4a73;
    border:none;
    color:white;
    padding:7px 18px;
    font-size:10px;
    box-shadow:0 4px 8px #999;
}



/* Info */

.info-grid{

    display:grid;
    grid-template-columns:1fr 1fr;
    margin-bottom:25px;

}


.info-grid h3{

    font-size:14px;
}


.info-grid p,
.info-grid span{

    font-size:11px;
}


.contact-card hr{

    border:0;
    border-top:1px solid #c58495;
}



/* Office */

.office-section{

    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:25px;

}


.office-info h2{

    font-size:20px;
    font-weight:400;
}


.office-info h4{

    font-size:13px;
}


.office-info p{

    font-size:11px;
    font-weight:600;
}



.office-map iframe{

    width:155px!important;
    height:180px!important;
    border-radius:15px!important;
}



/* WHY SECTION */

.why-us {
    position:relative;
    padding:50px 0;
    overflow:visible;
}


/* Pink block */

.why-us::before {

    content:"";

    position:absolute;

    left:-80px;
    top:80px;

    width:350px;
    height:350px;

    background:#f6c6cc;

    z-index:0;
}


/* Bottom right pink block */

.why-us::after {

    content:"";

    position:absolute;

    left:300px;
    bottom:-40px; 

    width:150px;
    height:150px;

    background:#f6c6cc;

    z-index:0;
      background-image:url('/images/contact us page decor.png');
zoom: 250%;
    background-repeat:no-repeat;
background-size:350px;
    background-size:260px;
    
    background-position:center -60px;;

    z-index:1;
}



/* Wave image */

.wave-shape {

    position:absolute;

    left:-60px;
    top:10px;   /* move image upward */

    width:260px;
    height:200px;


    background-image:url('/images/contact us page decor.png');
zoom: 250%;
    background-repeat:no-repeat;
;
    background-size:260px;
    
    background-position:center -50px;;

    z-index:1;
}



/* Card */

.why-card {

    position:relative;
    z-index:2;

    width:800px;
    margin:auto;

    background:#fff4ed;

    padding:35px 55px;

    box-shadow:
        0 60px 30px rgba(0,0,0,0.5);

}
/* Mobile */

@media(max-width:768px){

.contact-card,
.why-card{

    width:90%;
    padding:25px;

}

 


.page-title{

    font-size:35px;

}


.enquiry-grid,
.info-grid{

    grid-template-columns:1fr;

}


.office-section{

    flex-direction:column;

}

}

 

.contact-card {
    background: #edd6da;
    padding: 40px;
}

.section-header h2 {
    font-size: 30px;
}

.section-header p {
    margin-top: 5px;
    font-size: 14px;
}

.enquiry-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
    margin-top: 35px;
}

.enquiry-grid h4 {
    margin-bottom: 10px;
}

.enquiry-grid p {
    margin-bottom: 8px;
    font-size: 14px;
}

.btn-wrapper {
    text-align: center;
    margin: 35px 0;
}

.btn-wrapper button {
    border: none;
    background: #b85b75;
    color: #fff;
    padding: 12px 28px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,.15);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    margin-bottom: 40px;
}

.info-grid h3 {
    margin-bottom: 8px;
}

.info-grid p,
.info-grid span {
    font-size: 14px;
}

hr {
    border: none;
    border-top: 2px solid #b85b75;
    margin: 20px 0 40px;
}

.office-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.office-info h2 {
    margin-bottom: 20px;
}

.office-info h4 {
    margin-bottom: 10px;
}

.office-info p {
    line-height: 1.6;
}

.office-map img {
    width: 220px;
    border-radius: 12px;
}

/* ===== WHY TRAVEL SECTION ===== */

.why-us {
    position: relative;
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 20px;
}

 

.why-card {
    background: #f1e6df;
    padding: 50px;
}

.why-card h2 {
    margin-bottom: 30px;
    font-size: 32px;
}

.why-item h3 {
    margin-bottom: 12px;
}

.why-item p {
    line-height: 1.8;
    font-size: 20px;

}

.divider {
    margin: 30px 0;
    height: 2px;
    background: #c05174;
}
.office-map {
    width: 320px;
}

.office-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    border-radius: 15px;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {

    .contact-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding-left: 0;
    }

   

    .page-title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {

    .page-title {
        font-size: 42px;
    }

    .contact-card {
        padding: 25px;
    }

    .enquiry-grid,
    .info-grid,
    .office-section {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .office-map img {
        width: 100%;
        max-width: 300px;
    }

    .why-card {
        padding: 30px;
    }

    
}.reviews-section{
    padding:80px 10%;
    background:#fff;
}


/* HEADER */

.reviews-header{
    text-align:center;
}


.reviews-header h2{
    font-size:22px;
    font-weight:500;
    margin-bottom:25px;
}


.reviews-header p{
    font-size:14px;
    line-height:1.4;
}



/* CARDS */

.reviews-wrapper{

    display:flex;
    justify-content:center;
    gap:80px;

    margin-top:50px;

}


.review-card{

    width:300px;
    text-align:center;
    font-style: italic;
    font-weight: 600;

}



.review-img{

    width:300px;
    height:300px;

    object-fit:cover;

    margin-bottom:20px;

    clip-path: polygon(
    10% 0,
    90% 10%,
    100% 80%,
    50% 100%,
    0 80%
    );

}



.review-card h5{

    font-size:12px;
    margin:5px 0;

}


.review-card i{

    font-size:12px;

}


.review-card h6{

    font-size:13px;

    font-weight:700;

    margin:12px 0;

}


.review-card p{

    font-size:12px;

    line-height:1.5;

}


.fa-location-dot {
    color: #f3b6c8;
    font-size: 14px;
}

/* FOOTER */

.review-footer {
    margin-top:60px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:25px;
}
 



 



.review-footer a{

    color:#000;

    font-weight:700;

    text-decoration:underline;

}




/* MOBILE */

@media(max-width:768px){

.reviews-wrapper{

    flex-direction:column;

    align-items:center;

}

}*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}


body{
    background:white;
}


/* TOP SECTION */

.who-section{

    display:flex;
    align-items:center;
    justify-content:center;

    gap:80px;

    padding:50px 8%;
}


.who-image img{

    width:500px;

}


.who-content h1{

    font-family: Georgia,serif;

    font-size:80px;

    line-height:1.1;

    margin-bottom:20px;

    color:#111;

}


.who-content p{

    font-size:20px;

    line-height:1.5;

    font-weight:400;

}



/* SERVICE BACKGROUND */


.service-section{
 

    background:#f6cbd4;

    padding:35px 5% 60px;

}



.service-row{
    display:flex;

    align-items:center;

    justify-content:center;
    
    gap: 80px;
 
 
}



.circle-img{

    width:500px;

    height:500px;

    border-radius:50%;

    overflow:hidden;

}


.circle-img img{

    width:100%;

    height:100%;

    object-fit:cover;

}



.service-text h2{

    font-size:30px;

    font-weight:500;

    margin-bottom:12px;

}



.service-text p{

    font-size:18px;

    line-height:1.5;

    font-weight:400;

}



.second{

    margin-top:0px;

}



/* MOBILE */


@media(max-width:768px){


.who-section{

    flex-direction:column;

    text-align:center;

}


.who-content h1{

    font-size:38px;

}


.service-row{

    flex-direction:column;

    gap:30px;

    text-align:center;

}


.second{

    flex-direction:column-reverse;

}


}