/* General Reset */
html,
body {
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    background-color: #fcdd3e;
    /* Yellow theme */
}

/* 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: 20px;
}

/* Left Section: Image */
.header-left {
    flex: 0;
    position: absolute;
    left: 0;
}

.logo {
    width: 500px;
    /* Adjusted size of the logo */
    height: auto;
    padding-left: 10px;
    margin-top: 220px;
    margin-left: 20px;
}

.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: #fcdd3e;
    color: #333;
    border-radius: 5px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: #fcdd3e;
    /* Bright yellow background */
    border-radius: 8px;
    padding: 12px 0;
    margin-left: 28%;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 22px;
    font-weight: 500;
    color:#0b3d91;
}

/* 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 */
}

.partners-section {
    background-color: #fcdd3e;
    padding: 40px 20px;
    text-align: center;
    overflow: hidden;
}

.partners-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partner-track {
    display: flex;
    width: max-content;
    animation: scroll-left 15s linear infinite;
}

.partner-cards {
    display: flex;
}

.partner-card {
    min-width: 200px;
    height: 120px;
    margin: 0 15px;
    background: #fcdd3e;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.partner-track:hover {
    animation-play-state: paused;
    cursor: pointer;
}

/* Scroll Animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Poster Div */
.poster-div {
    background-color: #FCDD3E;
    color: #FCDD3E;
    width: 90%;
    max-width: 700px;
    margin-left: 600px;
    height: auto;
    padding: 20px 30px;
    text-align: center;
}

.poster-div h2 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #0b3d91;
}

.poster-div p {
    font-size: 1.8rem;
    margin-top: 20px;
    line-height: 1.5;
    color:  #333333;
    font-weight: 400;
}

.poster-div .font-italic {
    font-style: italic;
    font-size: 1.2rem;
    margin-top: 10px;
    color:white;
}

/* Stats Container Styling */
.stats-container {
    background-color: #f9f9f9;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    margin: 20px auto;
    width: 90%;
}

.stats-container h2 {
    font-size: 1.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    transition: transform 0.3s ease-in-out;
}

.stats-container h2:hover {
    transform: scale(1.1);
    cursor: pointer;
    color: #f39c12;
}

/* Google Review Styling */
.google-review {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.stars {
    font-size: 1.5rem;
    color: #f39c12;
}

.review-text {
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
    text-align: center;
}

/* Container for the scrolling updates */
.scrolling-flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 20px;
}

.scrolling-updates {
    overflow: hidden;
    width: 95%;
    /* Increase from 80% to 95% */
    max-width: 1200px;
    /* Increase max-width to allow more space */
    height: 400px;
    border-radius: 10px;
    background-color: #141313;
    margin-top: 20px;
    margin-left: 200px;
    margin-right: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}

/* Scrolling container */
.scroll-container {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    color: #fcdd3e;
    /* Gold text color */
    line-height: 1.8;
    font-size: 18px;
    animation: scroll 30s linear infinite;
    /* Smooth scrolling animation */
    padding: 0;
    /* Remove unnecessary padding */
    justify-content: center;
    /* Keep the content vertically centered */
    align-items: center;
    /* Center the content horizontally */
    height: 100%;
    /* Full height of the parent */
    width: 100%;
    /* Full width of the parent */
}

/* Hover state to pause the scrolling */
.scroll-container:hover {
    animation-play-state: paused;
    /* Pause scrolling on hover */
    cursor: pointer;
    color: #fff;
    scale: 1.01;
}

/* Content inside the scroll container */
.scroll-content {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center text horizontally */
}

/* Each scrolling block */
.scroll-block {
    min-height: 100px;
    /* Adjust height of each block */
    padding: 15px;
    /* Space around the text */
    box-sizing: border-box;
    /* Include padding in width */
    font-family: 'Lato', sans-serif;
    /* Smooth modern font */
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    /* Light gold divider */
}

/* Keyframes for vertical scrolling */
@keyframes scroll {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}


/* Calculator Section Container */

/* =====================
   Container Styling
===================== */
.calculator-container {
    background: linear-gradient(135deg, #141313, #2c2c2c);
    color: #fcdd3e;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    overflow-y: hidden;
    /* Hide vertical scroll */
    max-width: 600px;
    /* Wider container */
    width: 100%;
    padding: 30px;
    height: 550px;
    /* Increased height */
    margin-top: 20px;
    transition: transform 0.3s ease;
    margin-left: 20px;
    /* small left margin */
    margin-right: auto;
    /* auto right margin to push left */
}


.container-fluid {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 50px;
    gap: 30px;
}

/* =====================
   Header
===================== */
.head1 {
    font-size: 2.5rem;
    font-weight: bolder;
    color: white;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 20px;
}

/* =====================
   Form Elements
===================== */
.form-group {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.form-group label {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    display: block;
}

input[type="number"],
select {
    width: 100%;
    padding: 15px;
    margin-top: 10px;
    border-radius: 8px;
    border: 2px solid #fcdd3e;
    background-color: #1f1f1f;
    color: #fcdd3e;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

input[type="number"]:focus,
select:focus {
    border-color: #3498db;
    background-color: #3e4953;
    outline: none;
}

/* =====================
   Receiving Amount Box
===================== */
label[for="receiving-amount"] {
    font-size: 1.5rem;
    font-weight: bolder;
    color: white;
    display: block;
    margin-bottom: 12px;
}

#receiving-amount {
    width: 100%;
    padding: 12px 20px;
    font-size: 1.8rem;
    font-weight: bold;
    border: 2px solid #ccc;
    border-radius: 8px;
    background-color: #eaeaea;
    color: #e03721;
    text-align: center;
    cursor: not-allowed;
    box-sizing: border-box;
}

/* =====================
   Button Styling
===================== */
button {
    width: 100%;
    max-width: 300px;
    padding: 15px;
    background-color: #3e97fc;
    color: #1a1515;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    margin: 0 auto;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

button:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-2px);
}

/* =====================
   Extra Info & Notices
===================== */
h5 {
    font-size: 1.3rem;
    margin-top: 10px;
    color: rgb(0, 225, 255);
    font-weight: 500;
    text-align: center;
}

.text-primary {
    color: #ee3c05 !important;
    text-decoration: none;
    font-weight: bold;
}

.text-primary:hover {
    text-decoration: underline;
}

#alert {
    font-size: 1.8rem;
    font-weight: bold;
    color: rgb(31, 11, 11);
    background-color: #e74c3c;
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* =====================
   Responsive Grid (if used)
===================== */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    align-items: end;
}

.grid-container .full-width {
    grid-column: 1 / -1;
}
/* Services Container Styling */
.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Service Box Anchor Styling */
.service-box {
    background-color: #f0eee9;
    color: #2c3e50;
    width: 22%;
    min-width: 220px;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    font-size: 1.2rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    color: #fc743e;
    font-weight: bold;
}

/* Hover Effect for Service Box */
.service-box:hover {
    transform: translateY(-12px);
    box-shadow: 0px 12px 24px rgba(0, 0, 0, 0.15);
    background-color: white;
    color: #f39c12;
    cursor: pointer;
}

/* Service Icon Styling */
.service-icon {
    width: 60px;
    height: auto;
    padding: 5px;
}
/* Container styling for the info section */
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin: 40px auto;
    padding: 20px;
    max-width: 1200px;
    width: 90%;
    background-color: #eeeeee;
    border: 2px solid #ffeb3b;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    gap: 30px;
}

/* Image styling (left side) */
.info-image {
    flex: 1 1 40%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}
.info-image {
    flex: 1 1 40%;
    max-width: 40%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Content section (right side) */
.info-content {
    flex: 1 1 55%;
    text-align: left;
}

/* Heading style */
.info-content h2 {
    font-size: 28px;
    color: #ff9800;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Paragraph style */
.info-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}
/* Container holding all boxes */
.box-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    padding: 20px 0;
}

/* Individual box styling */
.box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #fff9c4;
    border: 2px solid #ffeb3b;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 30%;
    box-sizing: border-box;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 400px; /* force same min height for all */
}

/* Hover effect for boxes */
.box:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}
/* 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;
}

/* Modal Header Style */
.modal-header {
    background-color: #f8d347;
    /* Bright yellow background */
    color: #333;
    /* Dark text color for contrast */
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-header h5 {
    color: red;
}

.modal-header .close {
    color: #333;
    /* Close button color */
}

/* Modal Body Styling */
.modal-body {
    padding: 20px;
    background-color: #f8d347;
    /* Bright yellow background */
    color: #444;
    font-size: 1.1rem;
}

.modal-body img {
    max-width: 70%;
    /* Makes image responsive */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 8px;
    margin-bottom: 20px;
}

.modal-footer .btn-primary {
    background-color: #f8d347;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.modal-footer .btn-primary:hover {
    background-color: #e1c231;
    /* Slightly darker yellow on hover */
}

/* Modal Dialog and Content (Ensuring it’s centered and mobile-friendly) */
.modal-dialog {
    max-width: 90%;
    /* Ensure modal doesn't exceed 90% of the screen width */
    margin: 30px auto;
}