.header {
    padding: 10px 0;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 10;
}

/* Logo */
.header .logo img {
    max-height: 120px !important; /* Ensure smaller logo */
    display: block;
}

/* Contact Info */
.header .contact {
    display: inline-block;
    margin-right: 20px;
    color: #fff;
    font-size: 14px;
}

.header .contact a {
    color: #fff;
    margin-right: 10px;
    text-decoration: none;
}

.header .social img {
    width: 20px;
    margin-right: 5px;
}

.header .contact span {
    margin-right: 5px;
}

/* Social Icons */
.header .social {
    display: inline-block;
    margin-left: 10px;
}

.header .social .dropdown-menu {
    margin-left: 0px;
}

/* Navbar Toggle */
.navbar-toggle {
    border: 1px solid #fff;
    background-color: transparent;
    margin-top: 15px;
}

.navbar-toggle .icon-bar {
    background-color: #fff;
}

/* Navbar Collapse */
.navbar-collapse {
    display: none; /* Hidden by default */
}

/* Bootstrap Default Toggle Behavior */
.navbar-collapse.collapse {
    display: none !important;
}

.navbar-collapse.in {
    display: block !important;
}

/* Navigation Links */
.navbar {
    margin: 0;
    border: none;
}

.navbar-nav > li > a {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 10px 15px;
    background-color: transparent !important;
}

.navbar-nav > li.active > a,
.navbar-nav > li > a:hover {
    color: #f00;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .header-left {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-collapse.collapse {
        position: absolute; /* Prevents it from affecting the layout */
        width: 100%; /* Ensure it spans the full width */
        background-color: #092C69; /* Set a background to make it distinct */
        z-index: 2; /* Keep it above other elements */
        top: 10px; /* Adjust this based on your navbar height */
        left: 0;
    }

    /* Ensure the container and h1 position remain static */
    .inner-title-bar {
        position: relative; /* Keep the title bar independent of navbar flow */
        z-index: 1; /* Place it above the collapsing navbar if needed */
        margin-top: 0; /* Prevent it from being pushed */
        padding-top: 0;
    }

    /* Ensure h1 remains centered and move it upward */
    .inner-title-bar .title {
        position: relative;
        margin: 0 auto;
        padding: 0;
        z-index: 1;
        margin-top: -60px; /* Move h1 slightly upward */
    }

    /* Ensure navbar items align center */
    .navbar-nav > li {
        text-align: center;
    }

    .navbar-nav .dropdown-menu > li > a {
        color: white !important; /* White text for dropdown links */
        text-align: center;
    }

    .navbar-nav .dropdown-menu > li > a:hover {
        color: #ddd !important; /* Optional: Change hover color for better contrast */
    }
}


/* Video Background */
.video-header {
    position: relative;
    height: 75vh;
    overflow: hidden;
}

#video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Slightly lighter for better text contrast */
}

/* Slider Caption */
.slider-caption {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
}

.slider-caption h2 {
    font-size: 48px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}


@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}


/* Dropdown Container */
.countries-dropdown {
    position: relative; /* Ensures the dropdown positions relative to this container */
    display: inline-block;
}

/* Parent Dropdown Link */
.countries-t {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
}

.countries-t img .flag {
    width: 20px;
    margin-right: 5px;
    display: inline-block;
}

.countries-t span.caret {
    margin-left: 5px;
}

/* Dropdown Menu */
.countries-dropdown .dropdown-menu {
    position: absolute;
    top: 100%; /* Position directly below the parent */
    left: 0; /* Align to the left edge */
    background-color: #fff;
    padding: 0;
    margin: 0;
    list-style: none;
    min-width: 80px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000; /* Ensure it stays on top */
}


.countries-dropdown .dropdown-menu li {
    border-bottom: 1px solid #444;
}

.countries-dropdown .dropdown-menu li:last-child {
    border-bottom: none;
    border-radius: 10px;
}

.countries-dropdown .dropdown-menu li a {
    color: #000000;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-size: 13px;
}

.countries-dropdown .dropdown-menu li a img.flag {
    width: 18px;
    margin-right: 8px;
}

/* Hover State for Parent */
.countries-dropdown:hover .dropdown-menu {
    display: block; /* Optional for hover behavior */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .countries-t {
        font-size: 12px;
    }
    .countries-t img.flag {
        width: 16px;
    }
    .countries-dropdown .dropdown-menu {
        min-width: 100px;
    }
    .slider-caption {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
    }
}

.header-top{
    margin-top: 20px;
    margin-left: 370px;
}

/* Bouncing Arrow */
.arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.arrow .glyphicon {
    font-size: 44px;
    color: #fff;
}


/* General Container Styling */
.main-ctas {
    background-color: #0A2D63; /* Match the background color in the image */
    padding: 60px 0; /* Add vertical spacing */
    position: relative;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Background Overlay */
.main-ctas-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background-pattern.png'); /* Replace with the actual background pattern */
    background-size: cover;
    opacity: 0.1; /* Light background opacity */
    z-index: 1;
}

/* Inner Box Styling */
.main-cta-inner {
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px; /* Rounded corners */
    padding: 30px 20px;
    text-align: left;
    z-index: 2;
    transition: transform 0.3s ease-in-out;
}

/* Box Hover Effect */
.main-cta-inner:hover {
    transform: translateY(-10px);
    border: 1px solid #ffffff;
}

/* Heading Styling */
.main-cta-inner h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
    text-transform: uppercase;
}

/* List Styling */
.main-cta-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.main-cta-inner ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.main-cta-inner ul li::before {
    content: "➤"; /* Arrow icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 14px;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0A2D63; /* Text color */
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FF8C42; /* Highlight button on hover */
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-cta-inner {
        margin-bottom: 30px; /* Add spacing between boxes */
    }
}

@media (max-width: 768px) {
    .main-cta-inner h3 {
        font-size: 18px;
    }

    .main-cta-inner ul li {
        font-size: 12px;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 15px;
    }
}


/* General Container Styling */
.main-ctas {
    background-color: #0A2D63; /* Match the background color in the image */
    padding: 60px 0; /* Add vertical spacing */
    position: relative;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* Background Overlay */
.main-ctas-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/passport.jpg'); /* Replace with the actual background pattern */
    background-size: cover;
    opacity: 0.1; /* Light background opacity */
    z-index: 1;
}

/* Inner Box Styling */
.main-cta-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Slight transparent background */
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px; /* Rounded corners */
    padding: 30px 20px;
    text-align: left;
    z-index: 2;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.main-ctas .row {
    display: flex; /* Enable Flexbox */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-between; /* Even spacing */
    align-items: stretch; /* Ensure equal height */
}


/* Box Hover Effect */
.main-cta-inner:hover {
    transform: translateY(-10px);
    border: 1px solid #ffffff;
}

/* Heading Styling */
.main-cta-inner h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
    color: #ffffff;
    text-transform: uppercase;
}

/* List Styling */
.main-cta-inner ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.main-cta-inner ul li {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.main-cta-inner ul li::before {
    content: "➤"; /* Arrow icon */
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    font-size: 14px;
}

/* CTA Button Styling */
.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0A2D63; /* Text color */
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d41305; /* Highlight button on hover */
    color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .main-cta-inner {
        margin-bottom: 30px; /* Add spacing between boxes */
    }
}

@media (max-width: 768px) {
    .main-cta-inner h3 {
        font-size: 18px;
    }

    .main-cta-inner ul li {
        font-size: 12px;
    }

    .cta-button {
        font-size: 12px;
        padding: 8px 15px;
    }
}

/* General Container */
.hm-about {
    padding: 60px 0; /* Vertical spacing */
    font-family: Arial, sans-serif;
    background-color: #ffffff; /* White background */
    color: #333; /* Default text color */
}

/* Left Section: Text Content */
.hm-about-text h3 {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hm-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.hm-about-text blockquote {
    border-left: 4px solid #0A2D63; /* Dark blue border for blockquote */
    margin: 20px 0;
    padding-left: 15px;
    font-size: 18px;
    font-style: italic;
    color: #333;
}

.hm-about-text blockquote p {
    margin: 0;
}

/* CTA Button */
.cta.cta-blue {
    display: inline-block;
    background-color: #0A2D63; /* Dark Blue */
    color: #ffffff; /* White text */
    font-size: 14px;
    font-weight: bold;
    padding: 10px 20px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta.cta-blue:hover {
    background-color: #d41305; 
    color: #ffffff;
}

/* Right Section: Image */
.hm-about-image {
    text-align: center;
}

.hm-about-image img {
    max-width: 100%; /* Responsive image */
    height: auto;
    display: block;
    margin: 0 auto; /* Center the image */
}

/* Responsive Design */
@media (max-width: 992px) {
    .hm-about-text,
    .hm-about-image {
        text-align: center;
    }

    .hm-about-text h3 {
        font-size: 22px;
    }

    .hm-about-text p {
        font-size: 14px;
    }

    .hm-about-text blockquote {
        font-size: 16px;
    }

    .cta.cta-blue {
        font-size: 12px;
        padding: 8px 15px;
    }
}

@media (max-width: 768px) {
    .hm-about {
        padding: 30px 0;
    }

    .hm-about-text,
    .hm-about-image {
        margin-bottom: 20px;
    }
}


/* Footer General Styling */
.footer {
    background-color: #f5f5f5; /* Light grey background */
    color: #333; /* Default text color */
    padding: 60px 0;
    font-family: Arial, sans-serif;
    position: relative;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/aus-f.jpg'); /* Background city image */
    background-size: cover;
    opacity: 0.2;
    z-index: 1;
}

.footer section {
    position: relative;
    z-index: 2;
}

/* Logo and Social Links */
.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-widget p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.footer-social a img {
    width: 24px;
    margin-right: 10px;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-social a img:hover {
    opacity: 0.7;
}

/* Sitemap Section */
.footer-widget h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu-list li {
    margin-bottom: 10px;
}

.footer-menu-list li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu-list li a:hover {
    color: #0A2D63; /* Dark blue hover effect */
}

/* Contact Information */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-list li i {
    color: #0A2D63; /* Icon color */
    margin-right: 10px;
    font-size: 16px;
}

.footer-contact-list li a {
    color: #333;
    text-decoration: none;
}

.footer-contact-list li a:hover {
    color: #FF8C42; /* Hover effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-widget {
        text-align: center;
        margin-bottom: 30px;
    }

    .footer-social {
        margin-top: 10px;
    }

    .footer-menu-list,
    .footer-contact-list {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 30px 0;
    }

    .footer-logo {
        max-width: 150px;
    }

    .footer-widget h3 {
        font-size: 16px;
    }

    .footer-contact-list li {
        font-size: 12px;
    }
}


/* Footer Bottom Section */
.footer-bottom {
    background-color: #0A2D63; /* Dark Blue Background */
    padding: 10px 0; /* Top and bottom padding */
    text-align: center; /* Center align the text */
    color: #ffffff; /* White text color */
    font-family: Arial, sans-serif;
    font-size: 14px;
}

/* Copyright Text */
.footer-bottom .copyright {
    margin: 0; /* Remove default margin */
    color: #ffffff; /* White color */
    font-weight: 400;
}

/* Privacy Policy Link */
.footer-bottom .copyright a {
    color: #ffffff; /* White link color */
    text-decoration: none; /* Remove underline */
    font-weight: bold;
}

.footer-bottom .copyright a:hover {
    text-decoration: underline; /* Add underline on hover */
}

/* Divider Symbol */
.footer-bottom .copyright::after {
    content: "";
    display: inline-block;
    margin: 0 10px;
    height: 1px;
    background-color: #ffffff;
    width: 100%;
    max-width: 0px; /* Adds small horizontal lines for a modern look */
    vertical-align: middle;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-bottom .copyright {
        font-size: 12px;
    }
}

/* image Background */
.image-header {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 300px; /* Adjust height as needed */
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
}

#image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Slightly lighter for better text contrast */
}

/* Container Content */
.image-header .container {
    position: relative;
    z-index: 2; /* Ensure text is above the overlay */
}
@media (max-width: 768px) {
    .inner-title-bar .title h1{
        margin-bottom: 80px !important;
    }
}
/* Title Styling */
.inner-title-bar .title h1 {
    font-size: 48px; /* Large heading size */
    font-weight: bold;
    text-transform: uppercase; /* Capitalize the text */
    margin: 0;
    color: #ffffff;
}

/* Company Overview Section */
.company-overview {
    padding: 60px 0; /* Top and bottom spacing */
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.8;
}

/* Section Title */
.company-overview .section-title {
    font-size: 28px;
    font-weight: bold;
    color: #000; /* Black text for title */
    margin-bottom: 20px;
}

/* Paragraph Styling */
.company-overview p {
    font-size: 16px;
    color: #444; /* Dark gray for text */
    margin-bottom: 15px;
}

/* Blockquote Styling */
.company-overview blockquote.company-quote {
    margin: 20px 0;
    padding: 15px 20px;
    border-left: 5px solid #0A2D63; /* Left border */
    font-style: italic;
    color: #222;
    background-color: #f9f9f9; /* Light gray background */
    line-height: 1.6;
}

/* MARA Logo Styling */
.mara-logo {
    max-width: 100%; /* Responsive image */
    height: auto;
    margin-top: 40px; /* Space between content and image */
}

/* Text Centering */
.text-center {
    text-align: center;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .company-overview .section-title {
        font-size: 24px;
    }

    .company-overview p {
        font-size: 14px;
    }

    .mara-logo {
        margin-top: 20px;
    }
}

/* General Container */
.why-auz-container {
    padding: 50px 0; /* Add space above and below the section */
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px; /* Space below the title */
}



/* Individual Fact Box */
.fact-box {
    flex: 1; /* Make all boxes equal width */
    padding: 0; /* Remove internal padding */
    margin: 0; /* Remove margins */
}

/* Fact Box Inner Styling */
.fact-box-inner {
    background-color: #163977; /* Default dark blue */
    color: #ffffff; /* White text */
    padding: 30px 10px; /* Inner padding */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px; /* Fixed height for all boxes */
}

/* Box Background Variations */
.fact-box-inner.one {
    background-color: #2A5FB6; /* Slightly lighter blue */
}

.fact-box-inner.two {
    background-color: #1E4BA1;
}

.fact-box-inner.three {
    background-color: #163977;
}

.fact-box-inner.four {
    background-color: #0A2D63;
}

/* Tick Icon */
.tick-icon {
    width: 60px; /* Consistent icon size */
    height: 60px;
    margin-bottom: 10px; /* Space below the icon */
}

/* Fact Box Title */
.fact-box-inner h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px; /* Improve text spacing */
}

/* Fact Box Description */
.fact-box-inner p {
    font-size: 12px;
    margin: 0;
    opacity: 0.9; /* Subtle transparency for better contrast */
}

/* Hover Effect */
.fact-box-inner:hover {
    background-color: #0A2D63; /* Darker blue on hover */
}

.fact-box-inner.three:hover {
    background-color: #0958cf; /* Darker blue on hover */
}

.fact-box-inner.four:hover {
    background-color: #0958cf; /* Darker blue on hover */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fact-boxes {
        flex-wrap: wrap; /* Allow wrapping on medium screens */
    }

    .fact-box {
        flex: 50%; /* Two boxes per row */
    }
}

@media (max-width: 576px) {
    .fact-box {
        flex: 100%; /* One box per row */
    }

    .section-title {
        font-size: 24px;
    }

    .fact-box-inner {
        height: auto; /* Remove fixed height for smaller screens */
        padding: 20px;
    }

    .tick-icon {
        width: 50px;
        height: 50px;
    }

    .fact-box-inner h4 {
        font-size: 14px;
    }

    .fact-box-inner p {
        font-size: 11px;
    }
}

/* Container and Layout */
.container {
    margin-top: 30px;
    
}

/* Testimonial Card */
.testimonial-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    padding: 20px;
    text-align: center;
}

.testimonial-header {
    background: #002b6b;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px;
    font-size: 16px;
    margin-top: -50px;
    display: inline-block;
    position: relative;
    border-radius: 5px 5px 0 0;
}

.testimonial-content {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    text-align: justify;
}

/* Profile Picture */
.thumb-wrap {
    margin: 0 auto -20px auto;
    position: relative;
    top: -40px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 3px solid #002b6b;
}

/* Responsive Layout */
@media (max-width: 992px) {
    .testimonial-item {
        width: 50%;
        display: inline-block;
    }
}

@media (max-width: 768px) {
    .testimonial-item {
        width: 100%;
    }
}

.section-top h3 {
    text-align: left;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 40px;
}

.section-heading {
    color: #0073e6;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 25px;
}

.section-para {
    margin-bottom: 50px;
}

.content-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.feature-img {
    max-width: 230px;
    height: auto;
}

.section-bottom {
    margin-top: 70px;
    margin-bottom: 100px;
}

.section-bottom p {
    margin-bottom: 15px;
}

.exclusions-list {
    padding-left: 20px;
    list-style: disc;
}

.exclusions-list li {
    margin-bottom: 10px;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .content-row {
        flex-direction: column;
        text-align: center;
    }

    .content-row img {
        margin-bottom: 15px;
    }
}

.container_1{
    margin-top: 30px;
}

.contact-form {
    margin: 50px auto;
    max-width: 1200px;
}

/* Form Labels */
label {
    font-weight: 600;
    color: #333;
}

.required {
    color: red;
    margin-left: 2px;
}

/* Form Inputs */
.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    margin-bottom: 15px;
    height: 40px;
}

/* Textarea */
textarea.form-control {
    resize: none;
}

/* File Upload */
input[type="file"] {
    margin-top: 5px;
}

/* Captcha Input */
.captcha-input {
    width: 100%;
}

/* Submit Button */
.btn-submit {
    background-color: #002b6b;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background-color: #004bbd;
}

/* Contact Information Box */
.contact-info_1 {
    background-color: #002b6b;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
}

.contact-info_1 h4 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.contact-info_1 hr {
    border-top: 5px solid red;
    margin: 5px 0;
    width: 50px;
}

.contact-info_1 p {
    margin: 10px 0;
    font-size: 14px;
}

.contact-info_1 i {
    margin-right: 10px;
}

/* Radio Buttons */
label input[type="radio"] {
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form .row {
        display: block;
    }

    .contact-info_1 {
        margin-top: 20px;
    }

    .btn-submit {
        display: block;
        width: 100%;
    }
}



.error-message {
    color: red;
    font-weight: bold;
    margin-top: 5px;
    font-size: 14px;
}
.required {
    color: red;
}

.form-control {
    border: 1px solid #ccc;
    border-radius: 4px;
}

.captcha-box {
    background: #f2f2f2;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    padding: 10px;
    text-align: center;
    letter-spacing: 5px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
}

.blue-gr {
    background: #092C69; /* Dark Blue */
    padding: 20px 0;
    margin: 0;
}
/* Remove any border globally for tabs */
.nav-tabs > li > a {
    border: none !important; /* Override all default Bootstrap borders */
}

/* Tabs container styling */
.nav-tabs{
    border-bottom: none; /* Remove default bottom border */
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tabs > li {
    position: relative;
    text-align: center;
    flex: 1; /* Equal spacing for all tabs */
}

/* Default tab styling */
.nav-tabs > li > a {
    color: #ffffff; /* White text */
    font-weight: 500;
    text-transform: none; /* No uppercase */
    font-size: 14px;
    padding: 10px 0;
    border: none; /* Remove border */
    background-color: transparent;
    display: inline-block;
    position: relative;
}

/* Active tab styling */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover {
    color: #ffffff !important; /* White text for active tab */
    font-weight: 600; /* Slightly bolder text */
    background-color: transparent !important; /* No background */
    border: none; /* No border */
}

.nav-tabs > li.active > a::after {
    content: '';
    display: block;
    color: #ffffff;
    width: 30px; /* Length of the underline */
    height: 3px;
    background-color: #ffffff; /* White underline */
    margin: 5px auto 0; /* Space above the underline */
}

/* Hover effect for inactive tabs */
.nav-tabs > li > a:hover {
    color: #ffffff;
    background-color: transparent !important;
    text-decoration: none;
}

.nav-tabs > li:not(.active) > a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: transparent;
    margin: 5px auto 0;
    transition: width 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.nav-tabs > li > a:hover::after {
    width: 30px; /* Expand underline on hover */
    background-color: transparent !important;
}
/* Remove hover background completely */
.nav-tabs > li > a:hover {
    background-color: transparent !important;
    color: #ffffff;
}
/* Separator between tabs */
.nav-tabs > li .sep {
    position: absolute;
    top: 50%;
    right: 0;
    height: 40px;
    width: 1px;
    background-color: #ffffff; /* White separator line */
    transform: translateY(-50%);
}
.nav-tabs > li:last-child .sep {
    display: none; /* Remove separator on last tab */
}
.split {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}
.half-red {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #E30613;
}
.migration-content h2 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 30px;
}
.migration-content p {
    color: #fff;
    line-height: 1.6;
}
.list_new{
    color: #fff;
}
.panel {
    margin-bottom: 15px;
    border: 1px solid #ddd;
}
.panel-heading {
    background: #f5f5f5;
    padding: 10px;
    font-weight: bold;
}
.panel-heading a {
    text-decoration: none;
    color: #333;
    display: block;
}
.panel-collapse .panel-body {
    background: #fff;
    padding: 15px;
}



/* Paragraph Styling */
.section1 p {
    font-size: 16px; /* Adjust font size */
    margin-bottom: 15px; /* Space between paragraphs */
    text-align: justify; /* Align text for a polished look */
}

/* Strong Text Styling */
.section1 p strong {
    font-weight: bold; /* Make headings bold */
    display: block; /* Ensure they stand out as separate lines */
    margin-bottom: 10px; /* Add space below headings */
}

/* List Styling */
.section1 ul {
    margin-top: 10px; /* Space before the list */
    margin-bottom: 15px; /* Space after the list */
    padding-left: 20px; /* Indent the list */
}

.section1 ul li {
    font-size: 16px; /* Match paragraph font size */
    margin-bottom: 10px; /* Space between list items */
    line-height: 1.6; /* Better readability for list items */
}

/* Emphasizing List Items */
.section1 ul li:before {
    content: "» "; /* Add a bullet */
    color: #333; /* Match text color */
    font-weight: bold; /* Make the bullet stand out */
}

/* Heading Styling */
.overview h2 {
    font-size: 24px; /* Larger heading size */
    color: #333; /* Dark text */
    font-weight: bold; /* Emphasized text */
    margin-bottom: 15px; /* Space below heading */
    text-align: center; /* Center the heading */
}

.overview{
    margin-top: 20px;
    margin-bottom: 50px;
}

/* Small Screen Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .section1 p,
    .section1 ul li {
        font-size: 14px; /* Slightly smaller text */
    }
}

.fact-counter-wrapper {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('/images/aus-f.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    color: white;
    margin-top: 100px;
  }
  
  .single-fact {
    margin-bottom: 30px;
  }
  
  .icon-boxed {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-boxed i {
    font-size: 30px;
    color: white;
  }
  
  .counter {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
  }
  
  .single-fact p {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    margin-top: 10px;
  }
  
  @media (max-width: 767px) {
    .mb-xs-50 {
      margin-bottom: 50px;
    }
  }
  
  @media (max-width: 991px) {
    .mb-sm-30 {
      margin-bottom: 30px;
    }
  }
