﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Roboto", sans-serif !important;
    line-height: 1.6;
    color: #333;
}

/* Main Content */
/*.main-container {*/
/* max-width: 1200px; */
/*margin: 0 auto;
    padding: 2rem;
}*/

.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #fef2f2, #eff6ff);
    border-radius: 15px;
}

    .hero-section h2 {
        font-size: 2.5rem;
        color: #c02125;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.2rem;
        color: #6b7280;
        max-width: 600px;
        margin: 0 auto;
    }

/* Rate Board Section */
.rate-board {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #032b4e;
    margin-bottom: 1.5rem;
    text-align: center;
}

.currency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
/*    height: 650px;
    overflow-y: scroll;
    scrollbar-width: thin !important;
    scrollbar-color: #cecccc #ededed !important;*/
}

.currency-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .currency-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.currency-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.currency-flag {
    width: 40px;
    height: 30px;
    background: #f3f4f6;
    border-radius: 5px;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #6b7280;
}

.currency-info h3 {
    color: #032b4e;
    font-size: 1.0rem;
}

.currency-info p {
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: capitalize;
}

.rate-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rate-item {
    text-align: center;
    padding: 0.5rem;
    background: #f8fafc;
    border-radius: 5px;
}

.rate-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-bottom: 0.50rem;
}

.rate-value {
    font-size: 1.0rem;
    font-weight: bold;
    color: #dc2626;
}

.inverse-rate-value {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.sell-rate .rate-value {
    color: #059669;
}

/* Calculator Section */


.tab-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tab-btn {
    flex: 1;
    border: none;
    padding: 0.8rem;
    height: 45px;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
}
    /* .tab-btn.active {
        background: linear-gradient(135deg, #dc2626, #1e40af);
        background: #EEF1F6;
           border: #EEF1F6; 
        color: #1e40af;
    } */

    .tab-btn.active {
        border: none;
        background-color: #EEF1F6;
        border-bottom: 4px solid transparent;
        border-image: linear-gradient(135deg, #dc2626, #1e40af) 1;
        color: #1e40af;
    }

    .tab-btn:hover {
        transform: translateY(-2px);
    }

.calculator-section {
    margin: auto;
    max-width: 1000px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.calculator-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #374151;
        font-size:14px;
    }

    .form-group select,
    .form-group input {
        padding: 0.75rem;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.3s;
    }

        .form-group select:focus,
        .form-group input:focus {
            outline: none;
            border-color: #032b4e;
        }

    .form-group select {
        padding: 0.75rem;
        border: 2px solid #d1d5db;
        border-radius: 8px;
        font-size: 0.9rem;
        transition: border-color 0.3s;
        text-transform: capitalize;
    }

        .form-group select:focus {
            outline: none;
            border-color: #032b4e;
            text-transform: capitalize;
        }

.transaction-type {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.radio-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .radio-group input[type="radio"] {
        width: auto;
        margin: 0;
    }

.calculate-btn {
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

    .calculate-btn:hover {
        transform: translateY(-2px);
    }

/* .result {
            background: #f0f9ff;
            border: 2px solid #0ea5e9;
            border-radius: 8px;
            padding: 1rem;
            margin-top: 1rem;
            text-align: center;
            display: none;
        }

        .result.show {
            display: block;
        } */


.result {
    /* background: linear-gradient(135deg, #e0f7ff, #f9f9f9); */
    border: 1px solid #1e40af;
    border-radius: 16px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: center;
    display: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.4s ease-in-out;
}

    .result h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #032b4e;
        margin-bottom: 0.5rem;
    }

    .result p {
        font-size: 15px;
        font-weight: 400;
        color: #111827;
    }

    .result.show {
        display: block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Customer Details Form */
.customer-form {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

    .customer-form h3 {
        color: #032b4e;
        margin-bottom: 1.5rem;
        text-align: center;
    }

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.proceed-btn {
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-size: 1.0rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    margin-top: 1rem;
}

    .proceed-btn:hover {
        transform: translateY(-2px);
    }

/* Footer */
footer {
    background: linear-gradient(90deg, #fff);
    color: #c02125;
    text-align: center;
    padding: 2rem 0;
    margin-top: 1rem;
    border-top: 1px solid #032b4e;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

/* Modal Box */
.modal-content {
    /* background: #fff; */
    /* border-radius: 12px; */
    /* padding: 2rem; */
    width: 60%;
    /* max-width: 600px; */
    position: relative;
    /* box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
    animation: fadeInUp 0.4s ease;
}

/* Close Button */
.modal .close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    color: #555;
    cursor: pointer;
}

    .modal .close:hover {
        color: #000;
    }

.search-box {
    text-align: center;
    margin-bottom: 1.5rem;
}

    .search-box input {
        width: 100%;
        max-width: 350px;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border: 1px solid #cbd5e1;
        border-radius: 12px;
        outline: none;
        transition: border 0.3s;
    }

        .search-box input:focus {
            border: 1px solid #032b4e;
            box-shadow: 0 0 6px rgba(30,64,175,0.3);
        }

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Main Content */
.main-container {
    width: 100%;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Section */
/*.hero-section {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}*/

.about-label {
    background: #eff6ff;
    color: #1e40af;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/*.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-section .currency-exchange {
    color: #032b4e;
}

.hero-section .partner {
    color: #c02125;
}

.hero-section p {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}*/

/* Key Strengths Section */
.strengths-section {
    margin-bottom: 4rem;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.strength-card {
    background: white;
    border-left: 5px solid transparent;
    border-image: linear-gradient(135deg, #dc2626, #1e40af) 1;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .strength-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

.strength-icon {
    width: 60px;
    height: 60px;
    background: #c02125;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.strength-card h4 {
    color: #032b4e;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.strength-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Two Column Content Section */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.content-column h3 {
    font-size: 2rem;
    color: #032b4e;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.content-column p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.content-column ul {
    list-style: none;
    margin-top: 1.5rem;
}

.content-column li {
    padding: 0.5rem 0;
    color: #4b5563;
    position: relative;
    padding-left: 2rem;
    line-height: 1.6;
}

    .content-column li::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.8rem;
        width: 12px;
        height: 12px;
        background: #c02125;
        border-radius: 50%;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        /* background: #fff; */
        /* border-radius: 12px; */
        /* padding: 2rem; */
        width: 80%;
        /* max-width: 600px; */
        position: relative;
        /* box-shadow: 0 8px 20px rgba(0,0,0,0.2); */
        animation: fadeInUp 0.4s ease;
    }
    .calculate-btn {
        margin-top: 0.50rem;
    }
}

/* Main Content */
/*.main-container {*/
/* max-width: 1200px; */
/*margin: 0 auto;
    padding: 2rem;
}*/

/*.hero-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2, #eff6ff);
    border-radius: 15px;
}

    .hero-section h2 {
        font-size: 3rem;
        color: #c02125;*/
/* margin-bottom: 1rem; */
/*}

    .hero-section p {
        font-size: 1.3rem;
        color: #6b7280;
        max-width: 700px;
        margin: 0 auto;
    }*/

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(135deg, #dc2626, #1e40af);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #1e40af;
    /* margin-bottom: 1rem; */
    text-align: center;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .service-features li {
        padding: 0.5rem 0;
        color: #4b5563;
        position: relative;
        padding-left: 1.5rem;
    }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #059669;
            font-weight: bold;
        }

.service-btn {
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

    .service-btn:hover {
        transform: translateY(-2px);
    }

/* DHL Specific Styles */
.dhl-card {
    border-color: #ffcc00;
}

    .dhl-card::before {
        background: linear-gradient(135deg, #ffcc00, #d40511);
    }

    .dhl-card .service-icon {
        background: linear-gradient(135deg, #ffcc00, #d40511);
    }

/* Live Scan Specific Styles */
.livescan-card {
    border-color: #10b981;
}

    .livescan-card::before {
        background: linear-gradient(135deg, #10b981, #059669);
    }

    .livescan-card .service-icon {
        background: linear-gradient(135deg, #10b981, #059669);
    }

/* Travel Insurance Specific Styles */
.insurance-card {
    border-color: #8b5cf6;
}

    .insurance-card::before {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }

    .insurance-card .service-icon {
        background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    }

/* Additional Services Section */
.additional-services {
    background: #f8fafc;
    padding: 3rem 0;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.additional-container {
    max-width: 1200px;
    margin: 0 auto;
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.additional-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

    .additional-item:hover {
        transform: translateY(-5px);
    }

    .additional-item h5 {
        color: #032b4e;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .additional-item p {
        color: #6b7280;
        line-height: 1.6;
    }

/* Contact Section */

/* .contact-section {
            background: linear-gradient(135deg, #1e40af, #dc2626);
            color: white;
            padding: 3rem 0;
            border-radius: 15px;
            text-align: center;
        }

        .contact-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .contact-content p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .contact-btn {
            background: white;
            color: #1e40af;
            border: none;
            padding: 1rem 2rem;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s;
            text-decoration: none;
            display: inline-block;
        }

        .contact-btn:hover {
            transform: translateY(-2px);
        } */
.contact-section {
    background: #f9fafb;
    padding: 4rem 2rem;
}

.contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .contact-header h2 {
        font-size: 2rem;
        font-weight: 700;
        background: linear-gradient(135deg, #dc2626, #1e40af);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 0.5rem;
    }

    .contact-header p {
        font-size: 1.1rem;
        color: #475569;
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
    border-image: linear-gradient(135deg, #dc2626, #1e40af) 1;
}

    .contact-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    }

    .contact-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 1rem;
        position: relative;
    }

        .contact-card h3::after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            margin-top: 6px;
            background: linear-gradient(135deg, #dc2626, #1e40af);
            border-radius: 2px;
        }

    .contact-card ul {
        list-style: none;
        padding: 0;
    }

    .contact-card li {
        margin-bottom: 0.8rem;
        font-size: 1rem;
        color: #334155;
    }

        .contact-card li strong {
            color: #032b4e;
        }

    /*.form-group {
    margin-bottom: 1rem;
}*/

    .contact-card input,
    .contact-card textarea {
        width: 100%;
        padding: 0.9rem;
        border: 1px solid #cbd5e1;
        border-radius: 10px;
        font-size: 1rem;
        outline: none;
        transition: border-color 0.3s;
        font-family: "Roboto", sans-serif !important;
    }

        .contact-card input:focus,
        .contact-card textarea:focus {
            border-color: #032b4e;
            box-shadow: 0 0 4px rgba(30,64,175,0.4);
        }

.contact-btn {
    display: inline-block;
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #1e40af);
    color: #fff;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

    .contact-btn:hover {
        opacity: 0.9;
    }

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.show-all-rates {
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: #c02125;
    text-decoration: underline;
}

    .show-all-rates:hover {
        font-size: 20px;
        color: #032b4e;
        text-decoration: underline;
    }

.book_preload {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.65);
    z-index: 999999;
    /*background: #fff url('../Images/loader.gif') no-repeat 10px 50%;*/
}

.book {
    top: 52%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    position: relative;
    margin: 0 auto;
    width: 95px;
    height: 65px;
}


.book__page img {
    width: 60px;
}