/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    background-color: #fcdd3e;
    /* Yellow theme */
}

/* Main Header Styles */
.main-header {
    width: 100%;
}

/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fcdd3e;
    /* Yellow theme */
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* Left Section: Image */
.header-left {
    flex: 0;
    position: absolute;
    left: 0;
}

.logo {
    width: 400px;
    /* Adjusted size of the logo */
    height: auto;
    padding-left: 10px;
    margin-top: 270px;
    margin-left: 30px;
}

.logo:hover {
    border-radius: 5px;
    cursor: pointer;
}

/* Right Section: Navigation Menu */
.header-right {
    flex: 1;
    text-align: right;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    /* Center the nav links */
    align-items: center;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    font-size: 28px;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    font-family: 'Georgia', serif;
    /* Changed font family */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth transition */
}

nav ul li a:hover {
    background-color: #fff;
    color: #fcdd3e;
    border-radius: 5px;
}

/* Quick Enquiry Nav Link */
.quick-enquiry a {
    background-color: #333;
    /* Dark background */
    color: #fcdd3e;
    /* Yellow text */
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: bold;
    display: inline-block;
    /* Necessary for the shake animation */
    animation: shake-up-down 1s ease-in-out infinite alternate;
    /* Up and down shake effect */
    transition: background-color 0.3s ease, color 0.3s ease;
    /* Smooth transition */
}

.quick-enquiry a:hover {
    background-color: #ffd700; /* Slightly darker yellow */
    color: #000; /* Better contrast */
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        /* Ensure items wrap */
    }

    .header-left {
        flex: 0 0 auto;
        text-align: left;
        margin-left: 10px;
        margin-bottom: 0;
    }

    .logo {
        width: 250px;
        /* Adjust logo size */
        margin: 0;
        padding: 0;
    }

    .header-right {
        flex: 1 1 100%;
        text-align: right;
        /* Align text to the right */
        margin-top: 20px;
    }

    nav ul {
        flex-direction: column;
        /* Stack items vertically */
        align-items: flex-end;
        /* Align items to the right */
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
    }

    .header-left {
        flex: 0 0 auto;
        text-align: left;
        margin-left: 10px;
        margin-bottom: 0;
    }

    .logo {
        width: 250px;
        margin: 0;
        padding: 0;
    }

    .header-right {
        flex: 1 1 100%;
        text-align: right;
        /* Align text to the right */
        margin-top: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-end;
        /* Align items to the right */
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 200px;
    }

    nav ul li a {
        font-size: 18px;
    }

    .quick-enquiry a {
        font-size: 14px;
        padding: 6px 12px;
    }
}

/* Contact Header Styles */
.contact-header {
    background-color: #fcdd3e;
    /* Yellow background for contact info */
    color: #333333;
    /* Dark text for better readability */
    padding: 15px 30px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Clean, professional font */
    display: flex;
    font-style: italic;
    font-weight: 500;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-transform: none;
    /* Removed uppercase for a more relaxed feel */
    font-weight: normal;
    /* Balanced weight for professional appeal */
}

.contact-info {
    display: flex;
    gap: 25px;
    /* More balanced gap between items */
    font-size: 22px;
    /* Slightly larger font size for clarity */
    justify-content: center;
    color: #387ece;
}

.contact-info span {
    display: flex;
    align-items: center;
}

.contact-info a {
    color: #333;
    /* Dark text for links */
    text-decoration: none;
    margin-left: 5px;
    transition: color 0.3s ease;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    /* Consistent font */
}

.contact-info a:hover {
    color: #387ece;
    /* Soft blue hover color for links */
}


/* Responsive Design for Main Header */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        margin-bottom: 10px;
        /* Reduced gap */
    }

    .header-left {
        margin-bottom: 10px;
    }

    .logo {
        width: 200px;
        /* Adjust logo for smaller screens */
    }

    .header-right {
        flex: 1 1 100%;
        text-align: right;
        /* Align text to the right */
        margin-top: 20px;
    }

    nav ul {
        flex-direction: column;
        align-items: right;
        gap: 15px;
        font: 18px;
    }
}

/* Responsive Design for Contact Header */
@media (max-width: 768px) {
    .contact-info {
        font-size: 20px;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .contact-container {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    nav ul li a {
        font-size: 14px;
    }

    .quick-enquiry a {
        font-size: 14px;
        padding: 6px 12px;
    }
}
/* General container styling */
.custom-container {
    width: 90%;
    max-width: 1200px;
    height: auto; /* Allow content to adjust height */
    margin: 20px auto;
    border: 1px solid #141414;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(28, 102, 185, 0.1);
}

/* First Row Styling */
.first-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* Wrap content for small screens */
    padding: 15px 10px;
    background-color: #2a9de0;
    border-bottom: 1px solid #141212;
}

/* Navigation Link Styling */
.nav-link {
    text-align: center;
    flex: 1;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    padding: 10px;
    border-radius: 4px;
    transition: background-color 0.3s, color 0.3s;
    min-width: 100px; /* Ensure links don't shrink too much */
}

.nav-link:hover {
    color: #fcdd3e;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}


/* Column Styling */
.second-row {
    padding: 20px;
    background-color: #fa1c1c; 
    height: auto;
    flex: 1 1 50%; 
}

/* Tab Pane Content Styling */
.tab-pane h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000000; /* Black text for headers */
    margin-bottom: 10px;
}

.tab-pane p {
    font-size: 16px;
    color: #333333; /* Darker text for readability */
    line-height: 1.5;
    text-align: justify;
}

.col-6 {
    padding: 15px;
}

.col-6 .border {
    text-align: center;
    background-color: #ffffff; /* White background for the border sections */
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive Styling for Tablets and Smaller Screens */
@media (max-width: 1024px) {
    .custom-container {
        width: 90%;
    }

    .nav-link {
        font-size: 16px;
        padding: 8px;
    }
}
@media (max-width: 768px) {
    .custom-container {
        width: 100%;
    }
}
/* Responsive Styling for Medium-Sized Phones */
@media (max-width: 440px) { /* iPhone 14 Pro */
    .custom-container {
        width: 90%; /* Reduce width */
        padding: 10px;
    }

    .first-row {
        flex-direction: column; /* Stack links vertically */
        justify-content: flex-start;
    }

    .nav-link {
        font-size: 14px;
        padding: 5px;
    }

    .tab-pane h2 {
        font-size: 20px;
    }

    .tab-pane p {
        font-size: 14px;
    }
}

/* Responsive Styling for Small Screens */
@media (max-width: 360px) { /* iPhone 12 Mini */
    .custom-container {
        width: 80%;
    }

    .first-row {
        flex-direction: column;
    }

    .nav-link {
        font-size: 12px;
        padding: 5px;
    }

    .tab-pane h2 {
        font-size: 18px;
    }

    .tab-pane p {
        font-size: 12px;
    }
}

/* Additional Responsive Styling */
@media (max-width: 768px) { /* Tablets and smaller */
    .custom-row {
        flex-direction: column; /* Stack the rows */
    }

    .col-6 {
        width: 100%; /* Columns take full width */
        padding: 10px;
    }

    .tab-pane h2 {
        font-size: 20px;
    }

    .tab-pane p {
        font-size: 14px;
    }
}

@media (max-width: 390px) { /* Compact screens */
    .tab-pane h2 {
        font-size: 18px;
    }

    .tab-pane p {
        font-size: 12px;
    }

    .col-6 {
        padding: 8px;
    }
}

/* Money Transfer Section */
.money-transfer-text {
    font-size: 16px;
    color: #333333; /* Dark text */
    line-height: 1.8;
    text-align: justify;
}

.money-transfer-text strong {
    font-size: 18px;
    color: #000000; /* Black color for strong text */
}

.money-transfer-list {
    margin: 10px 0;
    padding-left: 20px;
    color: #333333; /* Dark color for list items */
    list-style-type: disc;
}

.money-transfer-list li {
    margin-bottom: 5px;
}

.money-transfer-text .highlight {
    color: #d9534f; /* Highlighted text color (red) */
    font-weight: bold;
}

/* Service Container Styling */
.service-container {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

/* Title Styling */
.service-title {
    font-size: 24px;
    font-weight: bold;
    color: #2a2a2a;
    margin-bottom: 15px;
}

/* Description Styling */
.service-description {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* List Styling */
.service-list {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
    font-size: 16px;
    margin-bottom: 20px;
}

.service-list li {
    margin-bottom: 5px;
}

/* Call to Action Styling */
.service-call-to-action {
    font-size: 18px;
    font-weight: bold;
    color: #0056b3;
    text-align: center;
    margin-top: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .service-container {
        padding: 15px;
        max-width: 100%; /* Ensure container fits on smaller screens */
    }

    .service-title {
        font-size: 20px; /* Smaller title for mobile */
    }

    .service-description,
    .service-list,
    .service-list h3,
    .service-call-to-action {
        font-size: 14px; /* Reduce font size for smaller screens */
    }

    .service-call-to-action {
        font-size: 16px; /* Adjust CTA for mobile */
    }
}

@media (max-width: 480px) {
    .service-title {
        font-size: 18px; /* Smaller title for very small screens */
    }

    .service-description,
    .service-list,
    .service-call-to-action {
        font-size: 12px; /* Further reduce font size */
    }

    .service-call-to-action {
        font-size: 14px; /* Adjust CTA for mobile */
    }
}
    /* General modal styling */
    .modal-content {
        background-color: #fff; 
        border-radius: 8px; 
        border: 1px solid #ccc;
        padding: 20px;
    }
    
    .modal-header {
        border-bottom: none;
        padding: 0;
        text-align: center;
        background-color: #f8f8f8;
        border-radius: 8px 8px 0 0;
    }
    
    .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f1f1d; /* Western Union yellow */
        text-transform: uppercase;
        margin: 0;
    }
    
    .modal-body {
        text-align: center;
        color: #333;
        font-size: 1rem;
    }
    
    .modal-body p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: #444;
    }

    .modal-body img {
        width:200px;
        height:200px;
       
        border-radius: 8px;
    }

    .modal-footer {
        background-color: #f8f8f8;
        border-radius: 0 0 8px 8px;
        padding: 10px;
        text-align: center;
    }

    .btn-primary {
        background-color: #7f8eaa;
        border: none;
        color: #fff;
        font-size: 1rem;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 8px;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        background-color: #e6a900;
    }

    .btn-secondary {
        background-color: #ccc;
        color: #333;
        font-size: 1rem;
        font-weight: bold;
        padding: 10px 20px;
        border-radius: 8px;
        border: none;
    }

    .btn-secondary:hover {
        background-color: #999;
    }

    .list-unstyled {
        list-style: none;
        padding-left: 0;
        margin-top: 20px;
    }

    .list-unstyled li {
        font-size: 1rem;
        color: #333;
        margin-bottom: 10px;
    }

    .list-unstyled li strong {
        color: #fcbf49; /* Western Union yellow */
        font-weight: 600;
    }

    /* Styling for the strong elements */
    strong {
        font-weight: bold;
        color: #fcbf49;
    }

    .modal-body p strong {
        font-weight: 600;
    }
/* General Footer Layout */
.footer-container {
    background-color: #1e1e2f;
    /* Dark background for a professional look */
    color: #e6e6e6;
    /* Light text for contrast */
    font-family: 'Roboto', sans-serif;
    padding: 40px 20px;
    border-top: 3px solid #007bff;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 10px 20px;
}

.footer-column li {
    list-style: none;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ffffff;
    /* Brighter header text */
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 5px;
    font-weight: 700;
}

.footer-column p {
    line-height: 1.8;
    margin: 0;
    color: #fcdd3e;
    font-weight: bold;
    font-size: 20px;
    /* Large font size for prominence */
}

.footer-column a {
    color: #00bfff;
    /* Bright accent color for links */
    text-decoration: none;
    /* No underline */
    font-size: 20px;
    /* Large font size for prominence */
    font-family: 'Roboto', sans-serif;
    /* Clean and modern font */
    font-weight: bold;
    /* Bold text for emphasis */
    line-height: 40px;
    transition: color 0.3s ease, transform 0.3s ease;
    /* Smooth hover effect */
}

.footer-column a:hover {
    color: #1e90ff;
    /* Slightly darker blue on hover */
    transform: scale(1.05);
    /* Subtle enlargement on hover */
}
/* Social Icons Styling */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    font-size: 1rem;
    color: #00bfff;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon i {
    font-size: 1.2rem;
}

.social-icon:hover {
    color: #1e90ff;
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #999;
    border-top: 1px solid #333;
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-column {
        margin: 15px 0;
    }

    .social-icons {
        justify-content: center;
    }
}