/* General Reset to Prevent Header Overflow */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll caused by overflow */
    box-sizing: border-box; /* Include padding and border in width */
    width: 100%; /* Ensure width does not exceed viewport */
}

/* Body Font */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background: #f8f8f8;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white; /* Background color during loading */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensure it appears above everything else */
    transition: opacity 0.5s ease; /* Smooth fade-out */
}

/* Logo Bouncy Animation */
.preloader-logo {
    width: 150px; /* Adjust logo size */
    height: auto;
    animation: bounce 1s infinite ease-in-out; /* Bouncy effect */
}

/* Keyframes for Bounce */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Move up */
    }
}


/* Main Header Fix */
.main-header {
    position: absolute;
    top: 0;
    left: 0; /* Align to the very left of the viewport */
    width: 100%; /* Ensure header spans only the viewport width */
    z-index: 1000;
    display: flex;
    justify-content: space-between; /* Align logo and nav properly */
    align-items: center; /* Center vertically */
    padding: 1rem 2rem;
    background: transparent; /* Merge with hero background */
    box-sizing: border-box; /* Include padding in width calculation */
    overflow: hidden; /* Prevent overflow */
}

/* Logo */
.main-header .logo img {
    max-height: 100px; /* Restrict the logo size */
    display: block;
    /* margin-top: -60px; */
    margin: -20px 200px;
}

/* Navigation Menu */
.main-header .main-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem; /* Space between items */
    margin: 25px; /* Reset margins */
    padding: 0; /* Reset padding */
}

.main-header .main-nav ul li {
    position: relative;
}

.main-header .main-nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 200;
    font-size: 1rem;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    transition: color 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping */
}

.main-header .main-nav ul li a:hover {
    color: #ffd700; /* Gold hover effect */
}

/* Button Styling */
.btn-tsa {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.7rem;
    font-weight: bold;
    color: white;
    background-color: #005baa; /* Blue background */
    border: 2px solid #005baa; /* Blue border */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none;
    transition: all 0.3s ease-in-out; /* Smooth transition */
    position: relative; /* For animation */
    animation: bounceColor 1s infinite; /* Add bounce and color animation */
}

/* Continuous Bouncing and Blinking Animation */
.animated-hover {
    animation: bounceColor 1.5s infinite; /* Apply combined bounce and color change */
}

/* Hover Effects */
.btn-tsa:hover {
    background-color: white; /* Change background to white */
    color: #005baa; /* Blue text on hover */
    border: 2px solid #005baa; /* Keep the border */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow */
    transform: none; /* Reset position */
    animation: none; /* Stop bouncing and blinking on hover */
}

/* Keyframes for the Bounce and Color Animation */
@keyframes bounceColor {
    0%, 100% {
        transform: translateY(0); /* Start and end at the same position */
        background-color: #005baa; /* Blue background */
        color: white; /* White text */
    }
    50% {
        transform: translateY(-5px); /* Move slightly up */
        background-color: white; /* White background */
        color: #005baa; /* Blue text */
    }
}

/* Adjust positioning inside the header */
.header .btn-tsa {
    margin-left: auto; /* Push the button to the far right */
    align-self: center; /* Vertically align in the header */
    margin-right: 20px; /* Add spacing from the edge */
}

/* Mobile First Approach Adjustments */
@media (max-width: 768px) {
    .main-header {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: transparent;
        padding: 0.5rem 1rem;
    }

    /* Logo adjustments for mobile */
    .main-header .logo img {
        margin: 0;
        max-height: 60px; 
    }

    /* Hide the nav links initially on mobile */
    .main-header .main-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hide off canvas to the right */
        width: 70%;
        height: 100vh;
        background: #005baa; /* A solid background for the slide-out menu */
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .main-header .main-nav ul {
        flex-direction: column;
        gap: 2rem; /* Spacing between items */
        margin: 0;
    }

    .main-header .main-nav ul li a {
        font-size: 1.2rem;
        color: #fff;
    }

    /* The request TSA button for mobile */
    .main-header .btn-tsa {
        position: absolute;
        bottom: 2rem;
        /* This positioning is optional; you can adjust or keep it in the header */
    }

    /* Hamburger Icon Styles */
    .menu-toggle {
        position: relative;
        width: 30px;
        height: 30px;
        cursor: pointer;
        background: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: center;
        padding: 0;
        z-index: 1001; /* Above the nav */
    }
    .menu-toggle span {
        display: block;
        width: 100%;
        height: 3px;
        background: #050505;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* When menu is open, transform lines to an X */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Navigation Open State */
    .main-nav.open {
        right: 0; /* Slide in from the right */
    }
}

/* For larger screens, revert to original styling */
@media (min-width: 769px) {
    .menu-toggle {
        display: none; /* Hide hamburger on desktop */
    }

    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 2rem;
    }

    .main-header .main-nav {
        position: static;
        height: auto;
        width: auto;
        background: transparent;
        display: block;
    }

    .main-header .main-nav ul {
        display: flex;
        gap: 3rem;
        margin: 25px;
    }

    .main-header .btn-tsa {
        position: static;
        margin-left: auto;
        margin-right: 20px;
    }
}


/* ------------------------------------------ */


/* Hero Section */
.hero {
    height: 100vh; /* Full height of the viewport */
    background: linear-gradient(180deg, rgba(253, 30, 30, 0.273), rgba(0, 0, 255, 0.3)), 
        url('../img/hr2.jpeg') no-repeat center center/cover;
        display: flex;
        justify-content: flex-start; /* Align content to the left */
        align-items: center; /* Center vertically */
        color: white;
        text-align: left; /* Align text to the left */
        padding: 0 5%; /* Add padding for spacing */
}

/* Fix Spacing for the Hero Content */
/* Hero Content */
.hero-content {
    max-width: 600px; /* Limit the width of the text content */
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2; /* Adjust line spacing */
}

.hero-buttons {
    display: flex;
    gap: 1rem; /* Space between buttons */
    margin-top: 1rem;
}

.btn-primary, .btn-secondary {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.btn-primary {
    background: #005baa;
    color: white;
}

.btn-primary:hover {
    background: #003d80;
}

/* About Button (Secondary Style) */
.btn-secondary {
    display: inline-block;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px; /* Rounded corners */
    font-weight: bold;
    text-transform: uppercase;
    font-size: 1rem;
    color: white;
    border: 2px solid white;
    background-color: transparent; /* Transparent background */
    transition: all 0.6s ease; /* Slow transition for hover effect */
    border-radius: 0px;
}

/* Hover Effect for About Button */
.btn-secondary:hover {
    background-color: white; /* Fill with white background */
    color: #005baa; /* Change text color */
    transform: translateY(-2px); /* Slight upward movement */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}


/* Button Container */
.custom-button {
    display: inline-block;
    position: relative; /* Required for positioning the underline */
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    background-color: #00aef0; /* Blue background */
    text-decoration: none;
    border-radius: 5px; /* Rounded corners */
    overflow: visible; /* Allow underline to be visible */
    transition: box-shadow 0.3s ease-in-out; /* Smooth shadow effect */
    border-radius: 0px;
}

/* Arrow Styling */
.custom-button .arrow {
    display: inline-block;
    margin-left: 0.5rem; /* Initial position */
    transition: transform 0.3s ease-in-out; /* Smooth push effect */
}

/* Hover Effect for Button */
.custom-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}

/* Arrow Movement on Hover */
.custom-button:hover .arrow {
    transform: translateX(5px); /* Push the arrow forward */
}

/* Orange Underline */
.custom-button::after {
    content: ""; /* Ensure the pseudo-element is created */
    position: absolute;
    bottom: -5px; /* Position slightly below the button */
    left: 0;
    width: 0%; /* Start hidden */
    height: 3px; /* Thickness of the underline */
    background-color: #ff4500; /* Orange color */
    transition: width 0.3s ease-in-out; /* Smooth underline animation */
    z-index: 1; /* Ensure it is visible */
}

/* Extend Orange Underline on Hover */
.custom-button:hover::after {
    width: 100%; /* Expand the underline across the button */
}

/* ---------------------------------------
   Mobile Adjustments: Half-Size on Mobile
   --------------------------------------- */
   @media (max-width: 768px) {
    .hero-content {
        max-width: 300px; /* Half of 600px */
    }

    .hero-content h1 {
        font-size: 1.95rem; /* Half of 3.5rem */
        margin-bottom: 1rem; /* Slightly reduce spacing */
        line-height: 1.2; /* Can remain the same or slightly adjusted */
    }

    .btn-primary, .btn-secondary, .custom-button {
        font-size: 0.8rem; /* Slightly smaller than before for proportional scaling */
        padding: 0.5rem 1rem; /* Reduce padding to match smaller text */
    }

    /* If necessary, you can also reduce the gap between hero buttons */
    .hero-buttons {
        gap: 0.5rem;
        margin-top: 0.5rem;
    }
}

/* -------------------------------------- */


/* Cards Section */
.cards-section {
    position: relative;
    margin-top: -100px; /* Adjust overlap height */
    padding: 2rem 5%;
    z-index: 10; /* Ensure it appears above the hero */
    display: flex;
    justify-content: flex-end; /* Move cards slightly to the right */
}

.cards-container {
    display: flex;
    gap: 0; /* Remove space between cards */
    justify-content: flex-start;
    margin: auto 100px;
}

.card {
    background-color: #005baa;
    color: white;
    padding: 2rem;
    border-radius: 0px;
    text-align: left; /* Align text to the left */
    flex: 1;
    max-width: 250px;
    height: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Card Background Colors */
.card1 {
    background-color: #0092d2;
}

.card2 {
    background-color: #5f9fd7;
}

.card3 {
    background-color: #004c8e;
}

/* Card Headings */
.card h3 {
    font-size: 0.7rem; /* Adjust heading size */
    margin-bottom: 0.75rem;
    font-weight: normal;
    text-transform: uppercase;
    color: white;
    line-height: 1.4;
}

.card h1 {
    margin-top: -10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 1.7rem; /* Adjust heading size */
    /* margin-bottom: 0.75rem; */
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    line-height: 1;
}

/* Card Descriptions */
.card p {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    margin-top: 80px;
    font-size: 1.1rem;
    line-height: 1.5;
    color: white;
    font-weight: 100;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ---------------------------------------
   Mobile Adjustments: Half-Size on Mobile
   --------------------------------------- */
   @media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        margin: 0 auto;
        margin-top: 80px;
    }

    .card {
        width: 100%;
        height: auto;
    }
}


/* Accessibility Section */
.accessibility-section {
    background-color: #d8d5d5;
    padding: 2rem 5%;
}

.accessibility-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15rem;
    flex-wrap: wrap; /* Ensure it wraps for smaller screens */
}

/* Accessibility Item */
.accessibility-item {
    text-align: center;
    font-family: 'Arial', sans-serif;
    color: #003d80; /* Dark Blue */
}

.accessibility-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #005baa; /* Matches theme */
    display: flex;
    align-items: center;
    gap: 3.5rem; /* Space between text and arrow */
}

.accessibility-item img {
    width: 50px; /* Adjust size of icons */
    height: auto;
    margin: 0 auto;
}

.accessibility-item p {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: #ff4500; /* Red text for emphasis */
    margin-top: 0.5rem;
}

/* Arrows */
.arrow {
    color: #ff4500; /* Red for the arrows */
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accessibility-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}


/* About Section */
.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #ffffff;
}

.about-content {
    flex: 1.5;
    text-align: left;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.circle-image {
    width: 500px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: -20px;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-images {
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
    }

    .circle-image img{
        width: 50%;
    }

    .about-content p {
        text-align: justify;
    }

}

/* Stats Section */
.stats-section {
    background-color: #ff9900; /* Orange background */
    padding: 4rem 5%;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 2rem;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
}

.stat-card {
    background-color: #000000; /* Black background for cards */
    color: white;
    flex: 1;
    max-width: 250px; /* Card width */
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-card h3 {
    font-size: 2.5rem; /* Larger font size for numbers */
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffcc00; /* Yellow for numbers */
}

.stat-card p {
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .stat-card {
        width: 250px; /* Card width */
    }
}

/* Services Section */
.services-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #ffffff; /* White background */
}

/* Content Area */
.services-content {
    flex: 2;
    text-align: left;
}

.services-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #005baa; /* Blue text for headings */
    margin-bottom: 1rem;
}

.services-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #005baa;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.services-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

/* Image Area */
.services-image {
    flex: 1.5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .services-image {
        margin-top: 1rem;
    }

    .services-content {
        text-align: justify;
    }
}



/* Terminals Section */
.terminals-section {
    background-color: #e6f7ff; /* Light blue background */
    padding: 4rem 5%;
    text-align: center;
}

/* Section Header */
.terminals-header h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #005baa; /* Match theme color */
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.terminals-header p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto 2rem;
}

/* Terminals Container */
.terminals-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap; /* Stack on smaller screens */
}

/* Terminal Card */
.terminal-card {
    background: white;
    border-radius: 0px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 270px; /* Uniform size */
    height: 350px; /* Uniform size */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.terminal-card img {
    width: 100%;
    height: 65%; /* Control image height */
    object-fit: cover; /* Ensure image fits the area */
}

.card-content {
    height: 35%; /* Bottom section height */
    background-color: #000000; /* Blue background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Button Wrapper */
.button-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
}

/* Card Button */
.card-button {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    color: white;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 1rem;
    z-index: 2; /* Place above orange line */
}

/* Orange Line */
.orange-line {
    position: absolute;
    bottom: -5px;
    width: 50%; /* Starts as half-width */
    height: 3px;
    background-color: #ff4500; /* Orange line color */
    transition: width 0.3s ease-in-out;
}

.card-button:hover + .orange-line {
    width: 100%; /* Full width on hover */
}

/* Arrow */
.card-button .arrow {
    font-size: 1.2rem;
    margin-left: 0.5rem;
    display: inline-block;
    transition: transform 0.3s ease-in-out;
}

/* Arrow Hover */
.card-button:hover .arrow {
    transform: translateX(5px); /* Moves slightly forward */
}

/* Hover Effect */
.card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .terminals-container {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .terminal-card {
        width: 100%; /* Adjust width for smaller screens */
    }
}


/* Offer Section */
.offer-section {
    display: flex;
    flex-direction: row-reverse; /* Reverse order to place the image on the left */
    align-items: center;
    gap: 2rem;
    padding: 4rem 5%;
    background-color: #ffffff; /* White background */
}

.offer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Image Styling */
.offer-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.offer-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Content Styling */
.offer-content {
    flex: 1.5;
    text-align: left;
}

.offer-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333333;
    margin-bottom: 1.5rem;
}

.offer-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 1.5rem;
}

/* Button Styling */
.contact-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #ff6f00; /* Bright red button */
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}

.contact-button:hover {
    background-color: #ff6f00; /* Darker red on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .offer-section {
        flex-direction: column; /* Stack image and text for smaller screens */
    }

    .offer-content {
        text-align: center;
    }

    .offer-image img {
        max-width: 100%;
    }

    .offer-container {
        flex-direction: column;
    }
}

/* Why Choose Us Section */
.why-choose-us-section {
    background-color: #e6f7ff; /* Orange background */
    color: #ffffff; /* White text */
    padding: 4rem 5%;
    text-align: center;
}

/* Section Header */
.why-choose-us-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #000000; /* Black heading */
}

.why-choose-us-header p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #000000; /* Black subheading */
}

/* Card Grid */
.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Three cards per row */
    gap: 1rem;
    justify-items: center;
}

/* Cards */
.choose-card {
    background-color: #000000; /* Black card background */
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 350px; /* Ensure consistent card size */
}

.choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.choose-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ff8c00; /* Orange icon */
}

.choose-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #ffcc00; /* Yellow text for headings */
}

.choose-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff; /* White text for description */
}

/* Responsive Design */
@media (max-width: 768px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(1, 1fr); /* Stack cards on smaller screens */
    }

    .why-choose-us-header h2 {
        font-size: 2rem;
    }

    .why-choose-us-header p {
        font-size: 1rem;
    }

    .choose-card {
        padding: 1.5rem;
    }
}


/* Footer Section */
.site-footer {
    position: relative;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.9)),
    url('../img/hr.jpeg') no-repeat center center/cover;
    color: white;
    padding: 3rem 5%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 1;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 1.5;
}

.footer-logo {
    width: 150px;
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.locations li {
    list-style: none;
    margin-bottom: 0.5rem;
    color: #ff4500;
}

.locations li i {
    margin-right: 0.5rem;
    color: #ffcc00;
}

.footer-right {
    flex: 2.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-section .red-line {
    display: inline-block;
    width: 5px;
    height: 20px;
    background-color: #ff4500;
    margin-right: 0.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li i {
    margin-right: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.footer-section a:hover {
    color: #ff4500;
}

.social-icons a {
    margin-right: 1rem;
    font-size: 1.2rem;
    color: #ffcc00;
    text-decoration: none;
}

.social-icons a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ffffff;
    padding-top: 1rem;
    font-size: 0.8rem;
    margin: 0 auto;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.5rem;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.to-top {
    display: inline-block;
    position: fixed;
    bottom: 0;
    right: 1300px;
    background-color: #ff4500;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0px;
    font-size: 1rem;
    font-weight: LIGHT;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}


.to-top:hover {
    background-color: #ff1900;
    transform: translateY(-3px);
    color: #ffffff;
}

.fixed-button {
    position: fixed;
    bottom: 0;
    left: 0;
    /* width: 100%; */
    background-color: #ff4500; /* Red background */
    color: white;
    text-align: center;
    padding: 1rem 0;
    z-index: 1000; /* Ensure it stays on top of other elements */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
    width: 300px;
    height: 15px;
    margin: auto 1200px;
}

.fixed-button:hover {
    background-color: #ff1900; /* Darker red on hover */
    transform: translateY(-2px); /* Slight upward movement */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.4); /* Enhanced shadow on hover */
}

.fixed-button a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.fixed-button i {
    font-size: 1.5rem;
}


@media (max-width: 768px) {
    .site-footer{
        flex-direction: column;
    }
    .footer-container{
        flex-direction: column;
    }
    .footer-section{
        font-size: 0.5rem;
    }
    .fixed-button {
        width: 50px;
        height: 10px;
    }
    
}