/* new code css start */

.logotrip{
    width:120px !important;
     height:auto !important; 
    padding: 10px;
    margin: 10px;
}
/* underlines start */
.underline-container {
    max-width: 1200px;
    margin: 0 auto;
}

.underline-header {
    text-align: center;
    margin: 40px 0;
}

.underline-title {
    font-size: 2.8rem;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(to right, #4a6cf7, #da1b60);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.underline-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto 30px;
}

.underline-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.underline-btn {
    padding: 12px 25px;
    background: #4a6cf7;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.underline-btn:hover {
    background: #3b5be3;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.underline-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.underline-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.underline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.underline-card-header {
    padding: 20px 20px 15px;
    border-bottom: 1px solid #e2e8f0;
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
}

.underline-card-header h2 {
    font-size: 1.4rem;
    color: #2d3748;
    margin-bottom: 5px;
}

.underline-card-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.underline-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.underline-example-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.underline-code-example {
    background: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
    overflow-x: auto;
    margin-top: 20px;
    border-left: 4px solid #4a6cf7;
}

/* Underline Style 1: Gradient Underline */
.unique-line-1 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-1::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.unique-line-1:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Underline Style 2: Dotted with Animation */
.unique-line-2 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-2::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background: transparent;
    border-bottom: 2px dotted #4a6cf7;
    transition: all 0.3s ease;
}

.unique-line-2:hover::after {
    border-bottom: 2px solid #4a6cf7;
    height: 5px;
    bottom: -7px;
}

/* Underline Style 3: Double Line */
.unique-line-3 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-3::before,
.unique-line-3::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #38b2ac;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.unique-line-3::before {
    bottom: -10px;
}

.unique-line-3:hover::before,
.unique-line-3:hover::after {
    transform: scaleX(1);
}

/* Underline Style 4: Highlight Effect */
.unique-line-4 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    z-index: 1;
    padding: 0 2px;
}

.unique-line-4::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 0;
    left: 0;
    background-color: #f6e05e;
    opacity: 0.5;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    z-index: -1;
}

.unique-line-4:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Underline Style 5: Animated Dots */
.unique-line-5 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-5::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: -8px;
    left: 0;
    background-image: radial-gradient(circle, #4a6cf7 2px, transparent 2px);
    background-size: 8px 8px;
    background-position: 0 0;
    transition: background-position 0.5s ease;
}

.unique-line-5:hover::after {
    background-position: 8px 0;
}

/* Underline Style 6: Wavy Line */
.unique-line-6 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-6::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 6px;
    bottom: -6px;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 4'%3E%3Cpath fill='none' stroke='%234a6cf7' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-size: 20px 6px;
    transition: background-position 0.5s ease;
}

.unique-line-6:hover::after {
    background-position: 20px 0;
}

/* Underline Style 7: Brush Stroke */
.unique-line-7 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-7::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 12px;
    bottom: -6px;
    left: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 12'%3E%3Cpath fill='%23f56565' d='M0,12 C5,12 5,0 10,0 C15,0 15,12 20,12 L20,15 L0,15 Z'/%3E%3C/svg%3E");
    background-size: 20px 12px;
    background-repeat: repeat-x;
    opacity: 0.7;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.5s ease;
}

.unique-line-7:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Underline Style 8: Arrow Underline */
.unique-line-8 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-8::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #4a6cf7;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
}

.unique-line-8::before {
    content: '›';
    position: absolute;
    bottom: -12px;
    left: 50%;
    color: #4a6cf7;
    font-size: 24px;
    transform: translateX(-50%) scale(0);
    transition: transform 0.3s ease;
}

.unique-line-8:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.unique-line-8:hover::before {
    transform: translateX(-50%) scale(1);
}

/* Underline Style 9: Shadow Underline */
.unique-line-9 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-9::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 8px;
    bottom: -8px;
    left: 0;
    border-radius: 50%;
    background: rgb(7, 61, 142);
    transform: scaleX(0) scaleY(0.3);
    transform-origin: bottom right;
    transition: transform 0.3s ease;
    filter: blur(2px);
}

.unique-line-9:hover::after {
    transform: scaleX(1) scaleY(0.3);
    transform-origin: bottom left;
}

/* Underline Style 10: Color Change Underline */
.unique-line-10 {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 0 2px;
}

.unique-line-10::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: -5px;
    left: 0;
    background-color: #4a6cf7;
    transition: all 0.3s ease;
}

.unique-line-10:hover::after {
    height: 6px;
    background: linear-gradient(to right, #4a6cf7, #da1b60, #f6ad55, #48bb78);
    border-radius: 3px;
}

.underline-footer {
    text-align: center;
    margin-top: 60px;
    color: #64748b;
    font-size: 0.9rem;
    padding: 20px;
}

.underline-keyboard-hint {
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 600px;
    font-size: 0.9rem;
}

.underline-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4a6cf7;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .underline-showcase {
        grid-template-columns: 1fr;
    }

    .underline-title {
        font-size: 2.2rem;
    }

    .underline-subtitle {
        font-size: 1rem;
    }

    .underline-controls {
        flex-direction: column;
        align-items: center;
    }

    .underline-btn {
        width: 200px;
    }
}
/* underlines end */

/* new footer css */
.itt-demo-notice {
    background: #4a6cf7;
    color: white;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Footer Styles */
.itt-footer {
    background: linear-gradient(to right, #1a2a6c, #2b5876);
    color: white;
    padding: 60px 0 20px;
    width: 100%;
    max-width: 100%;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

.itt-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #254872, #ffffff);
}

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

.itt-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.itt-col {
    flex: 1 0 25%;
    padding: 0 15px;
    margin-bottom: 30px;
    min-width: 250px;
    text-align: left;
}

.itt-footer-brand h3 {
    font-size: 28px;
    margin-bottom: 15px;
    background: linear-gradient(to right, white, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-align: left;
}

.itt-footer-brand p {
    color: #b3c6e3;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
    text-align: left;
}

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

.itt-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.itt-social-icons a:hover {
    background: linear-gradient(to right, #ff8a00, #da1b60);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.itt-footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    text-align: left;
}

.itt-footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 111px;
    height: 3px;
    background: linear-gradient(to right, #254872, #ffffff);
    border-radius: 3px;
}
.itt-footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 111px;
    height: 3px;
    background: linear-gradient(to right, #ff8a00, #da1b60);
    border-radius: 3px;
}
.itt-payment-methods {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.itt-payment-image {
    max-width: 100%;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.itt-payment-image:hover {
    transform: scale(1.03);
}

.itt-payment-methods p {
    color: #b3c6e3;
    font-size: 14px;
    margin-top: 10px;
}

.itt-footer-links {
    list-style: none;
}

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

.itt-footer-links a {
    color: #b3c6e3;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 15px;
}

.itt-footer-links a i {
    margin-right: 10px;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.itt-footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.itt-contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #b3c6e3;
    font-size: 15px;
}

.itt-contact-info i {
    margin-right: 12px;
    margin-top: 4px;
    font-size: 16px;
    min-width: 16px;
}

.itt-contact-info a {
    color: #b3c6e3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.itt-contact-info a:hover {
    color: white;
    text-decoration: underline;
}

.itt-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.itt-footer-bottom p {
    color: #b3c6e3;
    font-size: 14px;
}

.itt-footer-links-bottom {
    display: flex;
    gap: 20px;
}

.itt-footer-links-bottom a {
    color: #b3c6e3;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.itt-footer-links-bottom a:hover {
    color: white;
    text-decoration: underline;
}

/* Animation for elements */
@keyframes itt-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.itt-footer-section {
    animation: itt-fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.itt-footer-section:nth-child(1) {
    animation-delay: 0.1s;
}

.itt-footer-section:nth-child(2) {
    animation-delay: 0.2s;
}

.itt-footer-section:nth-child(3) {
    animation-delay: 0.3s;
}

.itt-footer-section:nth-child(4) {
    animation-delay: 0.4s;
}

/* Back to top button */
.itt-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #1a2a6c, #2b5876);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.itt-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.itt-back-to-top:hover {
    background: linear-gradient(to right, #ff8a00, #da1b60);
    transform: translateY(-5px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .itt-col {
        flex: 1 0 50%;
    }
}

@media (max-width: 768px) {
    .itt-col {
        flex: 1 0 100%;
        /* text-align: center !important; */
    }

   

    .itt-footer-section h4::after {
        left: 20%;
        transform: translateX(-50%);
    }

   

    .itt-footer-bottom {
        flex-direction: column;
        /* text-align: center; */
        gap: 15px;
    }

    .itt-footer-links-bottom {
        justify-content: center;
    }

    .itt-footer {
        padding: 40px 0 20px;
    }

    .itt-footer-brand h3 {
        font-size: 24px;
    }

    .itt-footer-section h4 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .itt-footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .itt-social-icons {
        flex-wrap: wrap;
    }

    .itt-payment-methods {
        padding: 10px;
    }
}
/* new footer css end */
/* for google review background */
 
/* for google review background end */
/* faq start */
.taj-info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 50px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.taj-info-bg-element {
    position: absolute;
    font-size: 20rem;
    color: rgba(37, 99, 235, 0.03);
    z-index: 0;
    pointer-events: none;
}

.taj-info-bg-1 {
    top: -100px;
    left: -100px;
    transform: rotate(-30deg);
}

.taj-info-bg-2 {
    bottom: -100px;
    right: -100px;
    transform: rotate(30deg);
}

.taj-info-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.taj-info-pre-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.taj-info-pre-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--blue-primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.taj-info-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--blue-dark);
    position: relative;
    display: inline-block;
}

.taj-info-main-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--blue-primary), var(--teal-accent));
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.taj-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 40px auto;
}

/* FAQ Styles */
.taj-faq-section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--blue-light);
}

.taj-faq-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    text-align: center;
    position: relative;
}

.taj-faq-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--blue-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.taj-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.taj-faq-item {
    background: var(--blue-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.taj-faq-item.active {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.taj-faq-question {
    padding: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e3c72;
    transition: var(--transition);
}

.taj-faq-item.active .taj-faq-question {
    background:#1e3c72;
    color:white;
}

.taj-faq-question-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color:white;
}

.taj-faq-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.taj-faq-item.active .taj-faq-icon {
    transform: rotate(180deg);
    color: white;
}

.taj-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
}

.taj-faq-item.active .taj-faq-answer {
    max-height: 500px;
}

.taj-faq-answer-content {
    padding: 10px 20px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.taj-faq-payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.taj-faq-payment-method {
    background: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.taj-faq-payment-method i {
    color: var(--blue-primary);
}

/* Map Styles */
.taj-map-section {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--shadow);
    border: 1px solid var(--blue-light);
    display: flex;
    flex-direction: column;
}

.taj-map-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1e3c72;
    text-align: center;
    position: relative;
}

.taj-map-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--blue-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.taj-map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.taj-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.taj-map-info {
    background: var(--blue-light);
    border-radius: 15px;
    padding: 20px;
    margin-top: auto;
}

.taj-map-info-title {
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.taj-map-info-title i {
    color: var(--blue-primary);
}

.taj-map-info-desc {
    color: var(--text-light);
    line-height: 1.6;
}

.taj-info-cta {
    text-align: center;
    margin-top: 70px;
}

.taj-info-button {
    background: linear-gradient(45deg, var(--blue-primary), var(--teal-accent));
    color: white;
    border: none;
    padding: 16px 45px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    font-family: 'Poppins', sans-serif;
}

.taj-info-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 148, 136, 0.4);
}

.taj-info-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.taj-info-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1100px) {
    .taj-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .taj-info-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .taj-info-container {
        padding: 50px 30px;
    }
    
    .taj-info-main-title {
        font-size: 2.8rem;
    }
    
    .taj-faq-section, .taj-map-section {
        padding: 30px 25px;
    }
    
    .taj-faq-title, .taj-map-title {
        font-size: 2rem;
    }
    
    .taj-map-container {
        height: 300px;
    }
}

@media (max-width: 576px) {
    
    
    .taj-info-container {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .taj-info-main-title {
        font-size: 2.4rem;
    }
    
    .taj-info-pre-title {
        font-size: 1rem;
    }
    
    .taj-faq-title, .taj-map-title {
        font-size: 1.8rem;
    }
    
    .taj-faq-question-text {
        font-size: 1.1rem;
    }
    
    .taj-info-bg-element {
        font-size: 15rem;
    }
    
    .taj-info-bg-1 {
        top: -70px;
        left: -70px;
    }
    
    .taj-info-bg-2 {
        bottom: -70px;
        right: -70px;
    }
    
    .taj-faq-payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* faq end */

/* why choose us start */
.blue-taj-container {
    max-width: 1200px;
    margin: 10px auto;
    padding: 20px 50px;
    background: lavender;
    /* border-radius: 24px; */
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.blue-taj-bg-element {
    position: absolute;
    font-size: 20rem;
    color: rgba(37, 99, 235, 0.03);
    z-index: 0;
    pointer-events: none;
}

.blue-taj-bg-1 {
    top: -100px;
    left: -100px;
    transform: rotate(-30deg);
}

.blue-taj-bg-2 {
    bottom: -100px;
    right: -100px;
    transform: rotate(30deg);
}

.blue-taj-header {
    text-align: center;
    /* margin-bottom: 80px; */
    position: relative;
    z-index: 2;
}

.blue-taj-pre-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--#1e3c72);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    font-weight: 600;
}

.blue-taj-pre-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: var(--blue-primary);
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.blue-taj-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e3c72;
    position: relative;
    display: inline-block;
    
}

.blue-taj-main-title::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 4px;
    background: linear-gradient(to right, var(--#1e3c72), var(--teal-accent));
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.blue-taj-subtitle {
    font-size: 1.3rem;
    color: black;
    max-width: 700px;
    margin: 0px auto 0;
    line-height: 1.8;
    font-weight: 400;
}

.blue-taj-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.blue-taj-feature-card {
    background:aliceblue;
    opacity: 0.8 !important;
    border-radius: 20px;
    padding: 20px;
    box-shadow: black;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 5px solid var(--blue-light);
}

.blue-taj-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--blue-primary), var(--teal-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.blue-taj-feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: var(--blue-accent);
}

.blue-taj-feature-card:hover::before {
    transform: scaleX(1);
}

.blue-taj-icon-wrapper {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--blue-light), #E0F2FE);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    position: relative;
    transition: var(--transition);
}

.blue-taj-feature-card:hover .blue-taj-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-accent));
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.blue-taj-feature-icon {
    font-size: 2.8rem;
    color: var(--blue-primary);
    transition: var(--transition);
}

.blue-taj-feature-card:hover .blue-taj-feature-icon {
    color: var(--white);
}

.blue-taj-feature-heading {
    font-family: 'Playfair Display', serif;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 22px;
    color: var(--blue-dark);
    position: relative;
}

.blue-taj-feature-heading::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 2px;
    background: var(--blue-primary);
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.blue-taj-feature-card:hover .blue-taj-feature-heading::after {
    width: 90px;
    background: var(--teal-accent);
}

.blue-taj-feature-text {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.blue-taj-highlight {
    color: var(--blue-primary);
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.blue-taj-highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.15);
    z-index: -1;
    transition: var(--transition);
    border-radius: 2px;
}

.blue-taj-feature-card:hover .blue-taj-highlight::after {
    height: 12px;
    background: rgba(37, 99, 235, 0.2);
}

.blue-taj-badge {
    position: absolute;
    top: 25px;
    right: -38px;
    background: var(--teal-accent);
    color: var(--white);
    padding: 8px 45px;
    font-size: 0.95rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 2px 12px rgba(13, 148, 136, 0.3);
}

.blue-taj-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    z-index: -1;
    animation: bluePulse 2.5s infinite;
}

@keyframes bluePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

.blue-taj-watermark {
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 6rem;
    color: rgba(37, 99, 235, 0.03);
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .blue-taj-features-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .blue-taj-main-title {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .blue-taj-container {
        padding: 50px 30px;
    }
    
    .blue-taj-main-title {
        font-size: 2.8rem;
    }
    
    .blue-taj-subtitle {
        font-size: 1.2rem;
    }
    
    .blue-taj-feature-card {
        padding: 35px 25px;
    }
    
    .blue-taj-icon-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .blue-taj-feature-icon {
        font-size: 2.5rem;
    }
    
    .blue-taj-feature-heading {
        font-size: 1.7rem;
    }
}

@media (max-width: 576px) {
    
    
    .blue-taj-container {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .blue-taj-main-title {
        font-size: 30px;
    }
    
    .blue-taj-subtitle {
        font-size: 1.1rem;
    }
    
    .blue-taj-pre-title {
        font-size: 1rem;
    }
    
    .blue-taj-feature-heading {
        font-size: 1.6rem;
    }
    
    .blue-taj-bg-element {
        font-size: 15rem;
    }
    
    .blue-taj-bg-1 {
        top: -70px;
        left: -70px;
    }
    
    .blue-taj-bg-2 {
        bottom: -70px;
        right: -70px;
    }
    
    .blue-taj-watermark {
        font-size: 4rem;
        bottom: 15px;
        right: 20px;
    }
}
/* why choose us end */


.destinations-container {
    max-width: 1200px;
    margin: 0px auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    /* border-radius: 25px; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
  }
  
  .destinations-header {
    text-align: center;
    /* margin-bottom: 60px; */
    position: relative;
  }
  
  .destinations-subtitle {
    font-family: 'Pacifico', cursive;
    font-size: 1.4rem;
    color: #FF9F43;
    margin-bottom: 15px;
    display: inline-block;
    background: linear-gradient(45deg, #FFF9F0, #FFE4C9);
    padding: 8px 25px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(255, 159, 67, 0.15);
    animation: fadeIn 1s ease;
  }
  
  .destinations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    /* margin-bottom: 15px; */
    background: #1e3c72;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: slideUp 1s 
ease;
  }
  
  .destinations-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: black;
    line-height: 1.6em;
    margin-top: 10px;
  }
  
  .destination-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
  }
  
  .destination-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeIn 1s ease;
  }
  
  .destination-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .destination-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  
  .destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .destination-card:hover .destination-image img {
    transform: scale(1.15);
  }
  
  .destination-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #FF9F43, #FF7A00);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(255, 159, 67, 0.3);
    z-index: 2;
  }
  
  .destination-content {
    padding: 10px 15px;
  }
  
  .destination-name {
     /* font-family: 'Playfair Display', serif; */
     font-size: 15px;
     font-weight: 500;
     margin-bottom: 10px;
     color: #2C3E50;
     height: 45px;
  }
  .toursdiv{font-size: 14px;}
  
  .destination-location {
    display: flex;
    align-items: center;
    color: #27AE60;
    font-weight: 500;
    margin-bottom: 15px;
  }
  
  .destination-location i {
    margin-right: 8px;
  }
  
  .destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .destination-feature {
    background: #F8F9FA;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    color: #555;
    display: flex;
    align-items: center;
  }
  
  .destination-feature i {
    margin-right: 5px;
    color: #27AE60;
  }
  
  .destination-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }
  
  .destination-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #EEE; */
    /* padding-top: 20px; */
  }
  
  .destination-price {
    font-weight: 700;
    color: #2C3E50;
  }
  
  .destination-price-amount {
    font-size: 1.5rem;
    color: #FF9F43;
  }
  
  .destination-price-duration {
    font-size: 0.8rem;
    color: #888;
  }
  
  .destination-button {
    background: linear-gradient(45deg, #27AE60, #2ECC71);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);

  }
  
  .destination-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(39, 174, 96, 0.4);
  }
  
  .destination-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .destination-button:hover i {
    transform: translateX(4px);
  }
  
  .destination-card-premium {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    z-index: 1;
  }
  
  .destination-card-premium::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #FF9F43, #27AE60, #2C3E50);
    border-radius: 22px;
    z-index: -1;
    animation: borderGlow 3s infinite alternate;
  }
  
  .destination-card-premium .destination-badge {
    background: linear-gradient(45deg, #27AE60, #2C3E50);
  }
  
  .floating-plane {
    position: absolute;
    right: -50px;
    top: 50%;
    font-size: 3rem;
    color: #27AE60;
    animation: flyPlane 20s linear infinite;
    opacity: 0.7;
    z-index: 0;
  }
  
  .view-all-container {
    text-align: center;
    margin-top: 50px;
  }
  
  .view-all-button {
    background: linear-gradient(45deg, #2C3E50, #34495E);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
  }
  
  .view-all-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(44, 62, 80, 0.4);
  }
  
  .view-all-button i {
    margin-left: 10px;
    transition: transform 0.3s ease;
  }
  
  .view-all-button:hover i {
    transform: translateX(5px);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes borderGlow {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
  }
  
  @keyframes flyPlane {
    0% { transform: translate(0, -50%) rotate(10deg); }
    25% { transform: translate(-200px, -30%) rotate(-5deg); }
    50% { transform: translate(-400px, -50%) rotate(5deg); }
    75% { transform: translate(-600px, -70%) rotate(-3deg); }
    100% { transform: translate(-800px, -50%) rotate(10deg); }
  }
  
  /* Responsive Design */
  @media (max-width: 1200px) {
    .destination-cards {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
    }
    
    .destinations-container {
      max-width: 1200px;
    }
  }
  
  @media (max-width: 900px) {
    .destination-cards {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 40px auto;
    }
    
    .destinations-container {
      padding: 30px;
    }
    
    .destinations-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    .destinations-title {
      font-size: 2.5rem;
    }
    
    .floating-plane {
      display: none;
    }
  }
  
  @media (max-width: 576px) {
    .destinations-title {
      font-size: 30px;
    }
    .gifdiscount img {
        max-width: 364px;
    }
    .destinations-subtitle {
      font-size: 1.2rem;
    }
    
    .destination-name {
        font-size: 15px;
    }
    
    .destinations-container {
      padding: 20px;
    }
  }
/* new code css end */



/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: white;
}

.social-link {
    font-size: 16px;
}

/* Header */
.header-premium {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.log-size {
    width: 180px;
    height: 50px;
    /* border-radius: 50%; */
}

.site-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e3c72;
}

.site-title span {
    color: white;
}

.golden-desktop-menu {
    display: flex;
    gap: 30px;
}

.golden-desktop-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.golden-desktop-menu a:hover {
    color: #1e3c72;
}

.golden-desktop-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: white;
    transition: width 0.3s ease;
}

.golden-desktop-menu a:hover::after {
    width: 100%;
}

.golden-mobile-btn {
    display: none;
    background: #1e3c72;
    color: white;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.2));
    z-index: 1;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dot.active {
    background: white;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    /* box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); */
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Tours Section */
.tours-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: #1e3c72;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: white;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}






.btn-inquire, .btn-whatsapp, .btn-quick-view {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
    justify-content: center;
    min-width: 80px;
    margin-top: 10px;
}

.btn-inquire {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #20b358 100%);
    color: white;
}

.btn-quick-view {
    background: transparent;
    color: #1e3c72;
    border: 1px solid #1e3c72;
}

.btn-inquire:hover, .btn-whatsapp:hover, .btn-quick-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 20px;
}

.why-choose-text p {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.why-choose-features {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h4 {
    color: #1e3c72;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #666;
    font-size: 14px;
}

.why-choose-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

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

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: white;
    font-family: serif;
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.review-rating i {
    color: white;
}

.review-text {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.reviewer-details h4 {
    color: #1e3c72;
    font-size: 16px;
}

.reviewer-details p {
    color: #999;
    font-size: 14px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    background: #f8f9fa;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h4 {
    color: #1e3c72;
    font-size: 16px;
}

.faq-toggle {
    font-size: 20px;
    color: #1e3c72;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 20px;
    color: #666;
    margin: 0;
}

/* Contact Section */
.contact-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: white;
    margin-bottom: 30px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.contact-methods {
    margin-top: 40px;
}

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

.contact-item i {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    font-size: 18px;
}

.contact-item h4 {
    color:white;
    margin-bottom: 5px;
}

.contact-item a {
    color: white;
    text-decoration: none;
}

/* Premium Form */
.premium-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.premium-form h3 {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.premium-form input::placeholder,
.premium-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.premium-form textarea {
    grid-column: 1 / -1;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff6b35 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: slideDown 0.3s ease;

}

@keyframes slideDown {
    from { transform: translateY(-100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
}

.modal-close:hover {
    color: #333;
}

.modal h3 {
    color: #1e3c72;
    margin-bottom: 30px;
    text-align: center;
}

.modal .form-row input,
.modal .form-row select,
.modal textarea {
    color: #333;
    background: white;
    border: 1px solid #ddd;
}

.modal input::placeholder,
.modal textarea::placeholder {
    color: #999;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #244683 0%, #3a5a92 100%);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-brand p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.social-icons a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
}

.footer-links-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #ccc;
}

/* Mobile Menu Styles */
.golden-mobile-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    z-index: 2000;
    transition: left 0.3s ease;
}

.golden-mobile-overlay.active {
    left: 0;
}

.golden-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.golden-menu-header h3 {
    color: white;
    font-size: 1.2rem;
}

.golden-close-btn {
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.golden-mobile-nav {
    padding: 20px;
}

.golden-mobile-nav a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
    transition: color 0.3s ease;
}

.golden-mobile-nav a:hover {
    color: white;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.8s ease forwards;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .golden-desktop-menu {
        display: none;
    }
    
    .golden-mobile-btn {
        display: block;
    }
    
    .hero-slider {
        height: 300px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tour-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .tour-actions {
        flex-direction: column;
    }
    
    .btn-inquire, .btn-whatsapp, .btn-quick-view {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-slider {
        height: 250px;
    }
    
    .slide-content h2 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .tour-card-ultra {
        margin: 0 10px;
    }
    
    .premium-form {
        padding: 0px;
    }
    
    .floating-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .why-choose-text h2 {
        font-size: 2rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1e3c72;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #2a5298;
}


.tour-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; /* a bit tighter for 4 columns */
    margin-bottom: 40px;
}

/* Responsive: 2 columns for tablets, 1 for mobile */
@media (max-width: 1100px) {
    .tour-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tour-grid { grid-template-columns: 1fr; }
}

/* Tour Card */
.tour-card-ultra {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 3px 12px rgba(30,60,114,0.09);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    min-width: 0;
    max-width: 320px; /* sets a consistent max width in wide screens */
    margin: 0 auto;   /* center if fewer items on a row */
}
.tour-card-ultra:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 8px 32px rgba(30,60,114,0.16);
}

/* Tour Image */
.tour-image {
    height: 170px;
    overflow: hidden;
}
.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tour Content */
.tour-content {
    flex: 1;
    padding: 18px 18px 12px 18px;
}
.tour-content h3 {
    font-size: 1.04rem;
    margin-bottom: 10px;
    color: #1e3c72;
    font-weight: 600;
    min-height: 42px;
}

/* Tour Features */
.tour-features, .tour-highlights {
    font-size: 13px;
}
.tour-features {
    margin-bottom: 8px;
}
.feature {
    gap: 6px;
    color: #555;
    margin-bottom: 4px;
}
.tour-highlights {
    gap: 6px;
    margin-bottom: 10px;
}

/* Footer */
.tour-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
    margin-top: 8px;
}

.tour-rating {
    font-size: 12px;
}

/* Card Actions */
.tour-actions {
    margin-top: 5px;
    gap: 5px;
}
.btn-inquire, .btn-whatsapp, .btn-quick-view {
    
    font-size: 11px;
    border-radius: 15px;
}

@media (max-width: 600px) {
    .tour-grid {
        grid-template-columns: 1fr !important;
    }

    .tour-card-ultra {
        max-width: 100% !important; /* Make sure cards fill the container */
        margin: 0 auto;
    }
}
@media (max-width: 600px) {
    .tour-grid {
        grid-template-columns: 1fr !important; /* One column for all cards */
        gap: 20px;
    }

    .tour-card-ultra {
        max-width: 100% !important; /* Full width in grid */
        margin: 0 auto;
    }

    
}

.azaan-feature-split {
  background: linear-gradient(90deg,#f7fafc 0%,#eff3f9 100%);
  padding: 48px 0;
}
.azaan-feature-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}
.azaan-feature-content {
  flex: 1;
  min-width: 270px;
  max-width: 520px;
  padding: 0 12px;
}
.azaan-feature-title {
  font-size: 2rem;
  color: #1e3c72;
  font-weight: 700;
  margin-bottom: 16px;
}
.azaan-feature-desc {
  font-size: 1.08rem;
  color: #444;
  margin-bottom: 18px;
}
.azaan-feature-list {
  list-style: none;
  margin: 0 0 26px 0;
  padding: 0;
}
.azaan-feature-list li {
  font-size: 1rem;
  color: #226;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.azaan-feature-list i {
  color: white;
  font-size: 1.15em;
  min-width: 20px;
  text-align: center;
}
.azaan-feature-btn {
  display: inline-block;
  background: linear-gradient(99deg,#1e3c72,#1e3c72);
  color: #fff;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 24px;
  text-decoration: none;
  font-size: 1.08rem;
  box-shadow: 0 3px 12px rgba(30,60,114,0.08);
  transition: background 0.2s, box-shadow 0.2s;
}
.azaan-feature-btn:hover {
  background: linear-gradient(120deg,linear-gradient,--blue-light);
  box-shadow: 0 8px 24px rgba(30,60,114,0.15);
}

.azaan-feature-image {
  flex: 1;
  min-width: 230px;
  max-width: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.azaan-feature-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  box-shadow: 0 6px 28px rgba(30,60,114,0.13);
  object-fit: cover;
  aspect-ratio: 16/10;
  background: #e0e6f6;
  border: 1px solid #e5e8ed;
}
@media (max-width:900px){
  .azaan-feature-container {
    flex-direction: column-reverse;
    gap: 22px;
    text-align: center;
  }
  .azaan-feature-content,
  .azaan-feature-image {
    max-width: 100%;
    padding: 0;
  }
  .azaan-feature-btn { padding: 11px 20px; font-size: 1rem;}
  .azaan-feature-title { font-size: 1.4rem;}
}
@media (max-width:500px){
  .azaan-feature-split {padding: 26px 0;}
  .azaan-feature-title {font-size: 1.1rem;}
  .azaan-feature-btn {font-size: 0.98rem;}
  .azaan-feature-list li {font-size: 0.95rem;}
}


.eWlLsU{
    background-color: transparent !important;
}

form#quickInquiryForm {
    overflow: hidden;
}

.line3{
    height: 65px;
}

.elfsight-app-36d25c05-a58b-44de-a61e-1cb08cd37bc3 {
    margin-top: 25px;
}