/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-right {
    padding: 45px 0;
    z-index: 1;
    width: 100%;
    max-width: 420px;
}
.features .wrapper .middel_img {
    height: 665px;
    border-radius: 15px;
    width: 100%;
}
/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 17px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.logo-rate {
    color: #0B4C8C;
}

.logo-aura {
    color: #FF7D1F;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    outline: none;
}

.nav-list a:hover {
    color: #0B4C8C;
}

.language select {
    border: none;
    background: transparent;
    font-size: 14px;
    cursor: pointer;
    padding: 5px;
    outline: none;
}

.btn-register {
    background: #0B4C8C;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

    .btn-register:hover {
        background: #0052a3;
    }

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
/*
--Travel partnter css--*/

.column {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

    .column.large-gap {
        gap: 25px;
    }


.icon-wrapper {
    padding: 20px;
    background: linear-gradient(180deg, #0B4C8C 0%, #13BCE0 100%);
    border-radius: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icon-40 {
    width: 40px;
    height: 40px;
    position: relative;
    overflow: hidden;
}

.icon-rotated {
    transform: rotate(180deg);
    transform-origin: top left;
}

.title {
    text-align: center;
    color: #2D2D2D;
    font-size: 18px;
    font-weight: 700;
}

.description {
    font-size: 16px;
    font-weight: 400;
    color: black;
}

.placeholder {
    width: 440px;
    background: #D8D8D8;
    border-radius: 12px;
}

.h-205 {
    height: 205px;
}

.h-655 {
    height: 655px;
}


/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}

.hero-left {
    position: relative;
}

.hero-images {
    position: relative;
    margin-bottom: 30px;
    height: 300px;
}

    .hero-images img {
        position: absolute;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border: 5px solid white;
    }

.hero-img-1 {
    width: 200px;
    top: 0;
    left: 0;
    z-index: 3;
    transform: rotate(-5deg);
}

.hero-img-2 {
    width: 200px;
    top: 30px;
    left: 120px;
    z-index: 2;
    transform: rotate(5deg);
}

.hero-img-3 {
    width: 180px;
    top: 60px;
    left: 240px;
    z-index: 1;
    transform: rotate(-3deg);
}

.palm-left,
.palm-right {
    position: absolute;
    pointer-events: none;
}

.palm-left {
    height: 580px;
}

.palm-right {
    right: -50px;
    top: 20%;
    transform: scaleX(-1);
}

.hero-text {
    background: rgba(0, 102, 204, 0.9);
    padding: 30px;
    border-radius: 15px;
    color: white;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

    .hero-title .special {
        font-style: italic;
        font-weight: 300;
    }

    .hero-title .contracted {
        font-style: italic;
        font-weight: 300;
    }

    .hero-title .rates {
        font-style: italic;
        font-weight: 300;
    }

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    background: #FF7D1F;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

    .btn-primary:hover {
        background: #e55a00;
    }

/* Sign In Card */
.signin-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .signin-card h2 {
        color: #0B4C8C;
        margin-bottom: 20px;
        font-size: 24px;
    }

.signin-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 5px;
        color: #333;
        font-size: 14px;
    }

    .form-group input {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 14px;
    }

        .form-group input:focus {
            outline: none;
            border-color: #0B4C8C;
        }

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.forgot-password {
    color: #0B4C8C;
    text-decoration: none;
}

.btn-signin {
    background: #FF7D1F;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

    .btn-signin:hover {
        background: #e55a00;
    }

.register-link {
    text-align: center;
    font-size: 14px;
}

    .register-link a {
        color: #0B4C8C;
        font-weight: 600;
        text-decoration: none;
    }

/* Features Section */
.features {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    width: 100%;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feature-card-full {
    grid-column: span 2;
}

.feature-icon {
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 20px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

.feature-image {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
}

    .feature-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Statistics Section */
.statistics {
    padding: 60px 0;
    background: #F3F4F6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

    .stats-grid:last-child {
        margin-bottom: 0;
    }

.stat-item h3 {
    font-size: 36px;
    color: #0B4C8C;
    margin-bottom: 10px;
}

.stat-label {
    color: #FF7D1F;
    font-size: 18px;
    font-weight: 600;
}

.stat-item p {
    color: #666;
    font-size: 16px;
}

/* Partners Section */
.partners {
    padding: 80px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 15px;
    align-items: center;
}

.partner-logo {
    background: white;
    padding: 5px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    transition: transform 0.3s;
    border: 1px solid #ECECEC;
}
    .partner-logo .main-image {
        width: 100%;
        height: 60px;
        display: flex;
        align-items: center;
        object-fit: contain;
    }
.partner-logo:hover {
    transform: translateY(-5px);
}
.top-box {
    width: 1362px;
    height: 250px;
    background: #D8D8D8;
    border-radius: 12px;
}

.main-image {
    width: 1363px;
    height: 584px;
}

.gradient-overlay {
    width: 815px;
    height: 271px;
    background: linear-gradient(90deg, #0B4C8C 12%, rgba(11, 76, 140, 0) 100%);
}
.cta_wrapper .button {
    background: #FF7D1F;
    padding: 6px 17px;
    color: #fff;
    border-radius: 5px;
}
.content {
    position: absolute;
    left: 45px;
    top: 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
}

.text-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title {
    color: white;
    font-size: 26px;
    font-weight: 700;
    text-align: center;
}

.subtitle {
    color: white;
    font-size: 18px;
    font-weight: 500;
}

/* CTA Banner */
.cta-banner {
    height:250px;
}
.cta-banner img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    border-radius:15px;
}
.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.cta_wrapper {
    position: relative;
}

.cta-text {
    color: white;
}

    .cta-text h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .cta-text p {
        font-size: 18px;
        margin-bottom: 25px;
    }

.cta-image img {
    width: 100%;
    border-radius: 15px;
}

/* Blog Section */
.blogs {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    overflow: hidden;
    transition: transform 0.3s;
}
.card_title {
    color: #2D2D2D;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

    .blog-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 15px;
    }

.blog-content {
    padding: 10px 0;
}

    .blog-content h3 {
        color: #333;
        font-size: 16px;
        line-height: 1.4;
    }

/* ===== Layout ===== */
.wrapper {
    margin: auto;
    justify-content: space-between;
    display: flex;
    gap: 15px;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.wrapper .colum_img {
    height: 205px;
    border-radius: 15px;
}
/* ===== Cards ===== */
.card {
    width: 100%;
    padding: 15px;
    background: #EEF6FF;
    border-radius: 15px;
    outline: 1px solid #E1EFFF;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: self-start;
}

.icon {
    padding: 20px;
    background: linear-gradient(180deg, #0B4C8C 0%, #13BCE0 100%);
    border-radius: 40px;
    width: fit-content;
}


.desc {
    font-size: 17px;
    color: #000;
}

.placeholder {
    width: 100%;
    height: 205px;
    background: #D8D8D8;
    border-radius: 12px;
}

    .placeholder.tall {
        height: 655px;
    }

/* Footer */
.footer {
    background: #003366;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-info {
    line-height: 1.8;
    font-size: 14px;
}

.footer-section h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

            .footer-section ul li a:hover {
                color: white;
            }

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .social-links a {
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s;
    }

        .social-links a:hover {
            color: white;
        }

.footer-bottom {
    border-top: 1px solid #004080;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #ccc;
}

.footer-credit {
    font-style: italic;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-images {
        height: 250px;
    }

    .hero-img-1,
    .hero-img-2,
    .hero-img-3 {
        width: 150px;
    }

    .hero-img-2 {
        left: 100px;
    }

    .hero-img-3 {
        left: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card-full {
        grid-column: span 1;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-content {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .btn-register {
        padding: 8px 15px;
        font-size: 14px;
    }

    .hero {
        padding: 15px 0;
    }
    .features {
        padding: 15px 0;
    }

    .hero-images {
        height: 200px;
        margin-bottom: 20px;
    }

    .hero-img-1,
    .hero-img-2 {
        width: 120px;
    }

    .hero-img-3 {
        width: 100px;
        left: 150px;
    }

    .hero-img-2 {
        left: 80px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .palm-left,
    .palm-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .cta-text h2 {
        font-size: 28px;
    }

    .signin-card {
        padding: 20px;
    }
}

/* ===== Tablet ===== */
@media (max-width: 1024px) {
 

    .column {
        flex: 1 1 100%;
        align-items: center;
    }

    .card,
    .placeholder {
        max-width: 520px;
    }
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
    .partners, .blogs {
        padding: 30px 0;
    }
    .content {
        left: 10px;
        top: 53px;
    }
    .wrapper {
        flex-direction: column-reverse;
    }
    body {
        width: 100%;
    }

    .card,
    .placeholder {
        max-width: 100%;
    }

    .title,
    .desc {
        text-align: center;
    }
    .wrapper .colum_img {
        width: 100%;
    }
    .hero-right {
        padding: 0;
        max-width: 100%;
    }
}

/* ===== Small Mobile ===== */
@media (max-width: 480px) {
    .title {
        font-size: 16px;
    }

    .desc {
        font-size: 14px;
    }
}