/* ═══════════════════════════════════════════════════════════ */
/* ███████ GLOBAL STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    padding-top: 68px;
    /* Add padding to account for fixed announcement bar */
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

.container {
    width: 94%;
    max-width: 1250px;
    margin: 0 auto;
}

container-announcement {
    width: 94%;
    max-width: 1250px;
    margin: 0 auto;
}

ul#navMenu {
    padding: 100px 120px 0 100px;
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    nav ul#navMenu {
        padding: 100px 50px 0 50px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1024px) {

    div.footer-section,
    .award-images {
        flex-direction: row !important;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ ANNOUNCEMENT BAR STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

/* Main announcement bar wrapper - sticky positioning */
.top-yellow-bar {
    background: #fff11a;
    padding: 12px 0px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    /* Higher than header */
    transition: transform 0.3s ease-in-out;
}

/* Hide announcement bar when CTA section is visible */
.top-yellow-bar.hidden {
    transform: translateY(-100%);
}

/* Announcement bar content layout */
.yellow-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-button {
    flex-shrink: 0;
}

/* Main CTA button in announcement bar */
.cta-btn {
    background: #FF3630;
    color: #fff;
    padding: 10px 15px 23px 13px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 0;
}

.cta-btn:hover {
    background: #c73e2a;
    transform: translateX(3px);
}

/* Subtext positioning in announcement bar button */
.cta-subtext {
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    text-transform: lowercase;
    position: absolute;
    bottom: 5px;
    left: 13px;
}

.cta-btn i {
    font-size: 1rem;
    margin-left: auto;
}

/* Right side content - phone number */
.right-yellow {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 15px;
}

.talk-text {
    margin-right: 7px;
    color: #5a7272;
    font-size: 18px;
    font-weight: 600;
}

.phone {
    color: #5a7272;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
}

.phone i {
    margin-right: 4px;
    color: #5a7272;
    font-size: 15px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ HEADER STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

.header {
    position: relative;
    z-index: 999;
    margin-top: 0px;
    /* Push header down below announcement bar */
}

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

ul#navMenu {
    padding: 0px;
    margin: 0;
}

.logo img {
    width: 150px;
    height: auto;
    object-fit: contain;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image img {
    width: 200px;
    height: 115px;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 18px;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: #333;
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #666;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    transition: background 0.3s ease;
}

.dropdown-link:hover {
    background: #f8f9fa;
    color: #333;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ SEARCH FUNCTIONALITY ███████ */
/* ═══════════════════════════════════════════════════════════ */

.search-container {
    position: relative;
}

.search-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: #666;
    padding: 8px;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: #333;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 2000;
}

.search-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.search-input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    outline: none;
}

.search-results {
    margin-top: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.close-search {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ LANGUAGE SELECTOR ███████ */
/* ═══════════════════════════════════════════════════════════ */

.language-selector {
    position: relative;
}

.language-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    transition: all 0.3s ease;
}

/* .language-btn:hover {
    border-color: #e6ff00;
    background: #f8f9fa;
} */

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 150px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.language-selector:hover .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: background 0.3s ease;
}

.language-option:hover {
    background: #f8f9fa;
    color: #333;
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ MOBILE MENU ███████ */
/* ═══════════════════════════════════════════════════════════ */

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    z-index: 1001;
}

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

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

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

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

/* ═══════════════════════════════════════════════════════════ */
/* ███████ CTA SECTION STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

/* CSS Variables for CTA section */
:root {
    --cta-yellow: #fcdd2d;
    --btn-red: #e74c3c;
    --white: #fff;
    --text-dark: #333;
}

/* Main CTA section wrapper */
.yellow-cta {
    background: var(--cta-yellow);
    padding: 70px 0;
    margin-top: 0;
}

/* CTA section container */
.cta-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    gap: 40px;
}

/* CTA message text */
.cta-message {
    font-size: 18px;
    line-height: 1.55;
    color: var(--text-dark);
    max-width: 620px;
    margin: 0;
}

/* CTA section button */
.plan-trip-btn {
    background: var(--btn-red);
    color: var(--white);
    display: inline-flex;
    flex-direction: column;
    padding: 18px 80px 18px 28px;
    text-decoration: none;
    border-radius: 2px;
    position: relative;
    font-weight: 700;
    width: max-content;
    transition: transform 0.3s ease;
}

.plan-trip-btn:hover {
    transform: translateY(-2px);
}

.plan-main {
    font-size: 16px;
    line-height: 1;
}

.plan-sub {
    font-size: 11px;
    margin-top: 4px;
    opacity: 0.9;
}

/* Arrow icon in CTA button */
.plan-trip-btn i {
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.plan-trip-btn:hover i {
    transform: translateY(-50%) translateX(3px);
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ RESPONSIVE STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
    .header {
        margin-top: 30px;
        /* Adjusted for announcement bar on mobile */
    }

    .header-container {
        padding: 0 15px;
        height: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 145px;
        /* Account for both announcement bar and header */
        left: -100%;
        width: 100%;
        height: calc(100vh - 145px);
        background: white;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 998;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-link {
        padding: 15px 0;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-item.dropdown-active .dropdown {
        max-height: 300px;
    }

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

    .header-actions {
        gap: 15px;
    }

    .language-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Announcement bar mobile styles */
    .yellow-bar-content {
        height: auto;
        padding: 8px 0;
        flex-direction: row;
        gap: 8px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .cta-subtext {
        font-size: 0.6rem;
        left: 20px;
    }

    .right-yellow {
        flex-direction: column;
        gap: 8px;
        font-size: 13px;
    }

    /* CTA section mobile styles */
    .yellow-cta {
        padding: 50px 0;
    }

    .cta-container {
        flex-direction: column;
        gap: 25px;
        padding: 0 25px;
    }

    .cta-message {
        font-size: 16px;
        max-width: 100%;
    }

    .plan-trip-btn {
        padding: 16px 70px 16px 24px;
    }

    .plan-main {
        font-size: 15px;
    }

    .plan-sub {
        font-size: 10px;
    }

    .plan-trip-btn i {
        right: 24px;
        font-size: 13px;
    }
}

@media (min-width: 1024px) {
    .footer-navigation {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 25px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .footer-navigation {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 30px;
        text-align: center;
    }
}
/* Mobile styles (480px and below) */
@media (max-width: 480px) {
    .triangle-decoration img {
    width: 100%;
    height: 35px !important;
    display: block;
}
    .triangle-decoration {
    width: 100%;
    /* height: 80px; */
    overflow: hidden;
    line-height: 0;
    position: relative;
    top: -17px !important;
    z-index: 10;
}
    .fa-brands, .fab {
    font-weight: 400;
    font-size: 20px !important;
}
    body {
        padding-top: 75px;
        /* Adjust for mobile announcement bar height */
    }

    .container {
        width: 96%;
    }

    .header {
        margin-top: 0;
        /* Reset margin on small mobile */
    }

    .header-container {
        height: 112px;
    }

    .nav-menu {
        top: 75px;
        /* Adjusted for smaller total height */
        height: calc(100vh - 75px);
    }

    .yellow-bar-content {
        padding: 6px 10px;
        gap: 6px;
    }

    .cta-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
        gap: 8px;
    }

    .cta-subtext {
        font-size: 0.6rem;
        left: 18px;
        bottom: 2px;
    }

    .right-yellow {
        gap: 6px;
        font-size: 12px;
    }

    .talk-text {
        margin-right: 5px;
        font-size: 15px;
    }

    /* CTA section mobile styles */
    .yellow-cta {
        padding: 40px 0;
    }

    .cta-container {
        gap: 20px;
        padding: 0 20px;
    }

    .cta-message {
        font-size: 15px;
        line-height: 1.4;
    }

    .plan-trip-btn {
        padding: 14px 60px 14px 20px;
    }

    .plan-main {
        font-size: 14px;
    }

    .plan-sub {
        font-size: 9px;
        margin-top: 3px;
    }

    .plan-trip-btn i {
        right: 20px;
        font-size: 12px;
    }
}

/* ═══════════════════════════════════════════════════════════ */
/* ███████ MAIN FOOTER STYLES ███████ */
/* ═══════════════════════════════════════════════════════════ */

.main-footer {
    background: linear-gradient(135deg, #e91e63, #ff4081);
    color: white;
    padding: 50px 0 30px;
    width: 100%;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
        padding: 0 10px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-left {
    flex: 0 0 auto;
}

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

.logo-triangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid white;
    margin-right: 12px;
    position: relative;
}

.logo-triangle::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -12px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid #e91e63;
}

.logo-text {
    font-size: 22px;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.copyright-info {
    font-size: 18px;
    opacity: 0.85;
    line-height: 22px;
}

/* Footer Center Section */
.footer-center {
        flex: 0.8;
    text-align: left;
    margin: 0 40px;
}

.address-info {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 1.5;
}

.location-icon {
    color: white;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 2px;
    flex-shrink: 0;
}
.social-media {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.fa-brands, .fab {
    font-weight: 400;
    font-size: 35px;
}
.social-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
}

img.searchiconsimg {
    width: 20px;
    object-fit: cover;
    height: 20px;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

/* Footer Right Section */
.footer-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.phone-info {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.phone-icon {
    margin-right: 8px;
    font-size: 16px;
}

.login-button {
    background: white;
    color: #e91e63;
    padding: 10px 24px;
    border: none;
    border-radius: 3px;
    font-weight: bold;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.login-button:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Footer Navigation */
.footer-navigation {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    padding-top: 20px;
}

.nav-column {
    text-align: left;
}

.nav-column h3 {
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 9px;
    letter-spacing: 0.3px;
}

.nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-column li {
    margin-bottom: 5px;
}

.nav-column a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 13px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.nav-column a:hover {
    color: white;
    text-decoration: underline;
}

/* Footer Responsive Design */
@media (max-width: 1024px) {
    .footer-navigation {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .footer-center {
        margin: 0 20px;
    }
}

@media (max-width: 768px) {
    .isd-day-india-left-section{
        padding: 1rem !important;
    }
    .social-icon {
    width: 30px;
    height: 30px;
    }
    .m-footer-left{
        order: 1;
    }
    .m-footer-top {
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    margin: 0px;
    flex-wrap: wrap;
    }
.fa-brands, .fab {
    font-weight: 400;
    font-size: 24px;
}
    .m-footer-center {
    flex: 1.8;
    text-align: left;
    order: 1;
    }

.logo-image img {
    width: 120px;
    height: 64px;
    object-fit: cover;
    margin-top: 10px;
}
.m-none{
        display: none !important;
    }
    .m-show{
        display: flex !important;
    }
    .copyright-info{
    font-size: 12px;
    opacity: 0.85;
    line-height: 17px;
    }

    .address-info {
    text-align: left;
}
    .main-footer {
        padding: 40px 0 25px;
    }

    .footer-top {
        flex-direction: row-reverse;
        gap: 30px;
        margin: 0px 10px;
       
    }

    .footer-center {
        margin: 0;
        order: 1;
    }

    .footer-left {
        order: 2;
    }

    .footer-right {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .footer-navigation {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    } .phone {
    font-size: 11px !important;
}

    /* .nav-column {
        text-align: center;
    } */
}

@media (max-width: 480px) {
    .footer-container {
        padding: 0 15px;
    }

    .footer-navigation {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(2, 1fr);
        grid-column-gap: 30px;
        grid-row-gap: 20px;
    }

    .social-media {
        flex-wrap: wrap;
        gap: 7px;
    }

    /* .address-info {
        flex-direction: column;
        align-items: center;
    } */

    .location-icon {
        margin-bottom: 5px;
    }
    
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
        .m-footer-center {
                flex: none;
        text-align: left;
        order: 1;
    }
    .yellow-bar-content {
        padding: 8px 30px;
    }

    nav ul#navMenu {
               padding: 100px 10px 0 10px;
    }

    nav ul#navMenu {
        margin-top: -6rem;
    }

    .nav-link {
        color: #000000;
        font-size: 15px;
        line-height: 35px;
    }
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
    .nav-link {
        font-size: 18px;
        font-weight: 500;
        line-height: 30px;
        letter-spacing: 1px;
    }
    .login-button {
    padding: 10px 8px;
}   
}