html, body {
    max-width: 100%;
    padding-top: 100px;

}

* {
    margin: 0;
    padding: 0;
    font-family: 'IBM Plex sans';
}


* h1 {
    font-size: 64px;
    color: #010C80;
    font-family: 'IBM Plex' sans;
    font-weight: 600;
}

* h2 {
    font-size: 46px;
    color: #010C80;
    font-weight: 600;
}

* p {
    font-size: 24px;
    color: #000;
    margin-top: 8px;
    font-weight: 400;
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
    background-color: #fff;
    padding-top: 20px;
    animation: fadeIn 0.7s ease-in;
    /* Optional: if you want elements to start completely transparent */
    opacity: 1;
}

@keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px); /* Optional: adds a slight upward movement */
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

.left-column {
    flex: 1;
    padding-right: 20px;
}

.left-column p {
    font-weight: 400;
}

.right-column {
    flex: 1;
    text-align: right;
}

.right-column img {
    max-width: 100%;
    height: auto;
}

.button-primary {
    width: fit-content;
    height: fit-content;
    padding: 10px 39px;
    background-color: #010C80;
    color: #fff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    margin-top: 40px;
    transition: background-color 0.3s, color 0.3s
        /*, transform 0.3s*/
    ;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.button-primary:hover {
    background-color: #87C0CD;
    color: #000;
    /* transform: scale(1.1);*/
}

.button-secondary {
    display: inline-block;
    text-decoration: none;
    width: fit-content;
    height: fit-content;
    padding: 10px 39px;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    border: 0.5px solid #000;
    cursor: pointer;
    font-size: 16px;
    margin-top: 40px;
    transition: background-color 0.3s, color 0.3s
        /*, transform 0.3s*/
    ;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    margin-left: 20px;
}

.button-secondary:hover {
    background-color: #87C0CD;
    color: #000;
    border: none;
    /* transform: scale(1.1);*/
}

header {
    background-color: #fff;
    padding: 20px 0;
    text-align: center;
    padding-top: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Keeps navbar above other content */
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

header.scrolled .logo-container img {
    width: 100px;
    transition: all 0.3s ease;
}

header.scrolled nav ul li a {
    font-size: 16px;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 5px;
}

.logo-container img {
    width: 150px;
    height: auto;
    align-items: center;
}

.hamburger-menu {
    display: none;
}

nav {
    margin-top: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
    padding-right: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    position: relative;
    padding-bottom: 5px;
    font-size: 18px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;  /* Thickness of the underline */
    background-color: #87C0CD;  /* Color of the underline */
    transition: width 0.3s ease-out;   /* Transition effect for the underline */
}

nav ul li a:hover::after {
    width: 100%;
    /* Expands the underline from left to right */
}

/* Tablet Styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    /* Header adjustments */
    .logo-container img {
        width: 120px; /* Slightly smaller logo */
    }

    nav ul {
        gap: 15px; /* Reduce gap between nav items */
    }

    nav ul li {
        padding-right: 20px; /* Reduce padding */
    }

    nav ul li a {
        font-size: 16px; /* Slightly smaller font */
    }

    header.scrolled {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    header.scrolled .logo-container img {
        width: 90px;
    }

    /* Hero section adjustments */
    .hero-section {
        padding: 40px; /* Reduce padding */
        flex-direction: column; /* Stack columns on tablet */
        text-align: center;
    }

    .left-column {
        padding-right: 0;
        margin-bottom: 40px;
    }

    h1 {
        font-size: 48px; /* Smaller heading */
    }

    p {
        font-size: 20px; /* Smaller paragraph text */
        padding-bottom: 20px;
    }

    .right-column {
        text-align: center;
    }

    .right-column img {
        width: 80%; /* Slightly smaller image */
    }

    .button-container {
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .button-primary,
    .button-secondary {
        margin: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    header {
        padding: 10px 20px;
    }

    header.scrolled {
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }

    header.scrolled .logo-container img {
        width: 80px;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .logo-container {
        margin-bottom: 0;
    }

    .logo-container img {
        width: 100px;
    }

    .hamburger-menu {
        display: block;
        cursor: pointer;
        padding: 10px;
        margin-left: auto; /* Pushes menu to right */
        font-size: 24px;
        color: #010C80;
    }

    .hamburger-menu i {
        font-size: 28px; /* Make the icon bigger */
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        padding: 10px 0;
    }
}

/* How it works section */

.cards-section {
    text-align: center;
    padding: 80px 20px;
    background-color: #fff;
}

.cards-section h2 {
    font-size: 40px;
    color: #010C80;
    margin-bottom: 60px;
    text-align: center;
}

.cards-container {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    /* Allows the cards to wrap on smaller screens */
}

.card-explanation {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    max-width: 200px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.card-explanation:hover {
    transform: translateY(-10px);
}

.icon {
    background-color: #010C80;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    margin-top: -55px;
}

.icon img {
    width: 50px;
    height: auto;
}

.card-explanation {
        background-color: #fff;
        border-radius: 10px;
        padding: 30px;
        max-width: 200px;
        text-align: center;
        transition: transform 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        opacity: 0; /* Start with opacity 0 */
        visibility: hidden; /* Hide the cards by default */
        transform: translateY(50px); /* Start below their final position */
        transition: opacity 0.8s ease, transform 0.8s ease;
}

@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card-explanation h3 {
    font-size: 24px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-explanation p {
    font-size: 18px;
    color: #000;
    font-weight: 300;
}

/* Tablet Styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .cards-section {
        padding: 60px 20px; /* Slightly reduce padding */
    }

    .cards-section h2 {
        font-size: 36px; /* Slightly smaller heading */
        margin-bottom: 50px;
    }

    .cards-container {
        gap: 30px; /* Adjust gap between cards */
        padding: 0 20px; /* Add some padding to container */
        align-items: center;
    }

    .card-explanation {
        max-width: 280px; /* Slightly wider cards on tablet */
        margin-bottom: 20px;
    }

    .card-explanation h3 {
        font-size: 22px; /* Adjust heading size */
    }

    .card-explanation p {
        font-size: 16px; /* Adjust paragraph size */
    }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .cards-section {
        padding: 40px 15px;
    }

    .cards-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .cards-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
        gap: 40px; /* Increase gap between stacked cards */
    }

    .card-explanation {
        max-width: 100%; /* Full width on mobile */
        width: calc(100% - 40px); /* Account for padding */
        margin: 10px 20px;
        padding: 25px 20px;
        align-items: center;
    }

    /* Adjust icon positioning for mobile */
    .icon {
        width: 45px;
        height: 45px;
        margin-top: -45px; /* Adjust based on new icon size */
    }

    .icon img {
        width: 45px;
        height: auto;
    }

    .card-explanation h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .card-explanation p {
        font-size: 16px;
        line-height: 1.4;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .cards-section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .card-explanation {
        padding: 20px 15px;
        margin: 10px 0;
    }

    .cards-container {
        gap: 35px; /* Slightly reduce gap for very small screens */
    }
}

/* Join us section*/
.join-us-section {
    padding: 80px 20px;
    background-color: #fff;
    opacity: 0; /* Start hidden */
    visibility: hidden; /* Hide by default */
    transform: translateY(20px); /* Start slightly below final position */
    transition: opacity 2.5s ease, transform 0.7s ease, visibility 2.5s ease;
}

.join-us-section.fade-in {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.join-us-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.join-us-image {
    flex: 1;
    padding-right: 20px; /* Space between the image and the text */
}

.join-us-image img {
    width: 100%;
    height: auto;
    max-width: 400px; /* You can adjust the max-width as needed */
}

.join-us-text {
    flex: 1;
    padding: 20px;
}

.join-us-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Tablet Styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .join-us-section {
        padding: 60px 40px; /* Adjust padding for tablets */
    }

    .join-us-container {
        max-width: 900px; /* Slightly reduce max-width */
        gap: 30px; /* Add gap between image and text */
    }

    .join-us-image {
        padding-right: 0; /* Remove right padding */
    }

    .join-us-image img {
        max-width: 350px; /* Slightly smaller image */
    }

    .join-us-text h2 {
        font-size: 36px; /* Smaller heading */
        margin-bottom: 15px;
    }

    .join-us-text p {
        font-size: 18px; /* Adjust paragraph text size */
        margin-bottom: 25px;
    }

    .join-us-text .button-primary {
        padding: 12px 30px; /* Slightly smaller button */
    }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .join-us-section {
        padding: 40px 20px;
    }

    .join-us-container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
        text-align: center;
    }

    .join-us-image {
        order: 2;
        margin-bottom: 30px;
    }

    .join-us-image img {
        max-width: 280px; /* Even smaller image for mobile */
        margin: 0 auto; /* Center image */
    }

    .join-us-text {
        order: 1; /* Pull text to top */
        padding: 0; /* Remove padding */
    }

    .join-us-text h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .join-us-text p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px; /* Add some padding to text */
    }

    .join-us-text .button-primary {
        width: 100%; /* Full-width button */
        max-width: 280px; /* Maximum button width */
        margin: 0 auto; /* Center button */
        padding: 14px 20px; /* Larger touch target */
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .join-us-section {
        padding: 30px 15px;
    }

    .join-us-image img {
        max-width: 240px; /* Smaller image for very small screens */
    }

    .join-us-text h2 {
        font-size: 28px;
    }

    .join-us-text p {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* Review Section Text */ 
.review-section{
    padding: 80px 20px 20px 40px;
    display: flex;
    align-items: center;
    background: #cfe7ed;
}

.review-paragraph h2{
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.review-paragraph p{
    font-size: 24px;
    text-align: center;
}

.review-container{
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Swiper section styles */
.carousel-section{
    display: flex;
}
.owl-carousel {
    position: relative;
    background: #cfe7ed;
    overflow: hidden;
    display: flex;
    padding: 40px 150px;
    padding-top: 20px;
}

.carousel-slide {
    height: auto;
}

.card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    min-height: 450px; /* Increased minimum height to accommodate content */
    margin: 20px 10px;
    padding: 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    position: relative; /* Added for better positioning control */
}

.image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.name-profession {
    margin: 5px 0;
    text-align: center;
}

.name {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.rating {
    color: orange;
    padding-bottom: 15px;
}

.review-text {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
    text-align: center;
    padding: 0 10px;
}

.review-text p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.logo-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    padding-top: 15px; /* Space above logo */
}

.logo-bottom img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/*Arrows style */
.nav-button {
    color: #fff; /* Customize text color */
    border-radius: 100%; /* Optional: Add rounded corners */
    padding: 10px 18px 10px 15px; /* Add padding for the buttons */
    cursor: pointer; /* Change cursor on hover */
    transition: 0.3s ease;
}

.nav-button:hover {
    color: #fff; /* Customize text color */
    border-radius: 100%; /* Optional: Add rounded corners */
    cursor: pointer; /* Change cursor on hover */
    border: #87C0CD solid 3px;
    padding: 10px 18px 10px 15px;
    background-color: #87C0CD;
}

.owl-nav .nav-button {
    position: absolute; /* Positioning */
    top: 50%; /* Center vertically */
    transform: translateY(-50%); /* Adjust for exact center */
    z-index: 10; /* Ensure they are above other elements */
}

.owl-nav .prev {
    left: 80px; /* Position the left button */
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 10px 18px 10px 15px; /* Add padding for the buttons */
}

.owl-nav .next {
    right: 80px; /* Position the right button */
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 10px 15px 10px 18px; /* Add padding for the buttons */
}

/* Tablet Styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    /* Review section text */
    .review-section {
        padding: 60px 40px 20px 40px;
    }

    .review-paragraph h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .review-paragraph p {
        font-size: 18px;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Carousel section */
    .owl-carousel {
        padding: 60px 100px;
        padding-top: 20px;
    }

    .card {
        min-height: 480px;
        padding: 25px;
    }

    .image {
        width: 120px;
        height: 120px;
    }

    /* Adjust navigation buttons */
    .owl-nav .prev {
        left: 40px;
    }

    .owl-nav .next {
        right: 40px;
    }
}

/* Mobile Styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Review section text */
    .review-section {
        padding: 40px 20px 20px 20px;
    }

    .review-paragraph h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .review-paragraph p {
        font-size: 16px;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Carousel section */
    .owl-carousel {
        padding: 40px 20px;
        padding-top: 20px;
    }

    .card {
        min-height: 400px;
        padding: 20px 15px;
    }

    .image {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 16px;
    }

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

    .rating {
        font-size: 14px;
        padding-bottom: 10px;
    }

    .logo-bottom img {
        width: 30px;
        height: 30px;
    }

    /* Adjust navigation buttons for mobile */
    .owl-nav .prev,
    .owl-nav .next {
        display: none; /* Hide arrows on mobile for better UI */
    }

    /* Add touch swipe indication (optional) */
    .carousel-section::after {
        content: '';
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 4px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 2px;
    }
}

/* Small Mobile Styles (max-width: 480px) */
@media screen and (max-width: 480px) {
    .review-section {
        padding: 30px 15px 15px 15px;
    }

    .review-paragraph h2 {
        font-size: 28px;
    }

    .review-paragraph p {
        font-size: 15px;
    }

    .card {
        min-height: 380px;
        padding: 15px;
    }

    .image {
        width: 80px;
        height: 80px;
    }

    .name {
        font-size: 16px;
    }

    .review-text p {
        font-size: 13px;
    }
}


/* Footer section*/

footer {
    background-color: #fff;
    padding: 20px;
    color: #000;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    width: 100px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 12px;
}

.footer-payment,
.footer-help,
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-payment h3,
.footer-help h3,
.footer-social h3 {
    margin-bottom: 10px;
    color: #010C80;
}

.footer-payment i,
.footer-social i {
    width: 30px;
    margin: 5px;
}
.footer-payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Adds space between the payment icons */
}

.footer-social i {
    margin: 0 5px;
}

.footer-social-icons{
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-help a {
    color: black;
    text-decoration: none;
}

.footer-help a:hover {
    text-decoration: underline;
}

/* Footer responsive styles */
@media screen and (max-width: 1024px) {
    .footer-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .footer-logo img {
        width: 80px;
    }

    .footer-logo p {
        font-size: 11px;
    }
}

@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 25px;
        padding: 20px;
    }

    .footer-logo,
    .footer-payment,
    .footer-help,
    .footer-social {
        width: 100%;
        margin: 10px 0;
    }

    .footer-logo img {
        width: 70px;
        margin-bottom: 8px;
    }

    .footer-payment-icons,
    .footer-social-icons {
        gap: 20px;
    }

    .footer-payment h3,
    .footer-help h3,
    .footer-social h3 {
        margin-bottom: 8px;
        font-size: 16px;
    }

    .footer-help a {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        gap: 20px;
        padding: 15px;
    }

    .footer-logo img {
        width: 60px;
    }

    .footer-logo p {
        font-size: 10px;
    }
}


/* About Us Page Hero Section */
.about-hero-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-image {
    width: 200px;
    height: auto;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
}

.about-hero-content h2 {
    color: #010C80;
    font-size: 46px;
    font-weight: 600;
    margin: 0 0;
}

.about-hero-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

@media screen and (max-width: 1024px) {
    .about-hero-section {
        padding: 60px 20px;
    }

    .about-hero-content {
        max-width: 800px;
    }

    .hero-image {
        width: 180px;
    }

    .about-hero-content h2 {
        font-size: 40px;
    }

    .about-hero-content p {
        font-size: 20px;
        max-width: 700px;
    }
}

@media screen and (max-width: 768px) {
    .about-hero-section {
        padding: 40px 20px;
    }

    .hero-image {
        width: 150px;
    }

    .about-hero-content h2 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
        padding: 0 15px;
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .about-hero-section {
        padding: 30px 15px;
    }

    .hero-image {
        width: 120px;
    }

    .about-hero-content h2 {
        font-size: 28px;
    }
}

/* What we offer section */
.what-we-offer {
    padding: 60px 20px;
    background-color: #fff;
    max-width: 1400px;  /* Add max-width to match other sections */
    margin: 0 auto;     /* Center the section */
}

.what-we-offer h2 {
    color: #010C80;
    font-size: 46px;
    text-align: center;
    margin-bottom: 0px;
}

.what-we-offer p{
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
    margin-bottom: 30px;
}


/* Common styles for both sections */
.offer-item-right, 
.offer-item-left {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 1200px;  /* Fixed maximum width */
    height: 400px;      /* Fixed height for both */
    margin: 0 auto 40px;
}

.offer-item-right {
    background: linear-gradient(to right, #87C0CD 60%, #ffffff);
    animation: slideIn 1s ease-out forwards;
    
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.offer-item-left {
    background: linear-gradient(to left, #87C0CD 60%, #ffffff);
    animation: slideInRight 1s ease-out forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Content styling */
.offer-content-left {
    max-width: 500px;
    text-align: left;
    padding-right: 40px;
}

.offer-content-left p{
    text-align: left;
}

/* Paw prints image */
.paw-prints {
    flex-shrink: 0;
    width: 600px;  /* Fixed width */
    height: auto;
}

.paw-prints img {
    width: 100%;
    height: auto;
    object-fit: contain;  /* Keep image proportions */
    opacity: 0.8;
    transform: scaleX(-1);  /* This will flip the image horizontally */
}

/* Support team image */
.support-image {
    flex-shrink: 0;
    width: 400px;  /* Match the paw prints width */
    height: auto;
}

.support-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Common text styles */
.offer-item-right h3,
.offer-item-left h3 {
    color: #010C80;
    font-size: 32px;
    margin-bottom: 20px;
}

.offer-item-right p,
.offer-item-left p {
    font-size: 18px;
    line-height: 1.6;
}

/* Download button container */
.download-button-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 200px;
    animation: fadeIn 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Tablet styles */
@media screen and (max-width: 1024px) {
    .what-we-offer {
        padding: 40px 0;
    }
 
    .what-we-offer h2 {
        font-size: 36px;
    }
 
    .what-we-offer p {
        font-size: 18px;
        max-width: 90%;
    }
 
    .offer-item-right,
    .offer-item-left {
        padding: 40px 0;
        height: auto;
        background: #87C0CD;
    }

    .offer-content-left {
        padding-left: 60px;
    }
 
    .offer-content-left h3 {
        font-size: 28px;
    }

    .offer-content-left p {
        margin-left: 0;
    }
 
    .paw-prints,
    .support-image {
        width: 400px;
    }
 }
 
 /* Mobile styles */

    @media screen and (max-width: 768px) {
    .what-we-offer {
        padding: 30px 0;
        width: 100%;
    }
    .what-we-offer p {
        padding: 0 15px;
        width: 100%;
        box-sizing: border-box;
    }
    .what-we-offer h2 {
        font-size: 32px;
    }
 
    .what-we-offer p {
        font-size: 16px;
        max-width: 100%;
    }
 
    .offer-item-right,
    .offer-item-left {
        display: flex;
        flex-direction: column;
        padding: 30px 0;
        background: #87C0CD;
    }
 
    .offer-content-left {
        width: 100%;
        order: 1;
        padding: 15px;
        margin-bottom: 20px;
        text-align: left;
    } 
 
    .paw-prints,
    .support-image {
       width: 100%;
       order: 2;
    }

    .paw-prints {
        margin-top: -100px;
    }

    .support-image {
        width: 80%;
        margin-top: -50px;
    }
 
    .paw-prints img,
    .support-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }
 
    .offer-content-left p {
        padding: 0 15px;
        margin: 15px 0;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }
 
    .offer-content-left h3 {
        color: #010C80;
        font-size: 24px;
        margin-bottom: 15px;
        text-align: center;
    }
 
    .download-button-container {
        margin: 30px 0;
    }
 
    .download-button-container .button-primary {
        width: 80%;
        max-width: 280px;
    }
 }
 
 /* Small mobile styles */
 @media screen and (max-width: 480px) {
    .what-we-offer h2 {
        font-size: 28px;
    }
 
    .what-we-offer p {
        font-size: 14px;
    }
 
    .offer-content-left h3 {
        font-size: 22px;
    }

    .offer-item-left,
    .offer-item-right {
        background: #87C0CD;
    }
 }

/* Join us page*/

.join-hero-section {
    padding: 150px 20px;
    background-color: #fff;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.join-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;  /* Keep content above image */
}

.join-hero-content h2 {
    color: #010C80;
    font-size: 46px;
    font-weight: 600;
    margin: 0 0;
}

.join-hero-content p {
    font-size: 24px;
    line-height: 1.6;
    color: #000;
    max-width: 800px;
    margin: 20px auto;
    text-align: center;
}

.join-hero-image {
    position: absolute;
    right: -20px;  /* Adjust this value to position the image */
    top: 50%;
    transform: translateY(-50%);
    width: 500px;  /* Adjust size as needed */
    z-index: 1;
    opacity: 0.3;  /* Make image semi-transparent */
}

.join-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* Responsive design */
/* Tablet styles */
@media screen and (max-width: 1024px) {
    .join-hero-section {
        padding: 100px 40px;
    }

    .join-hero-content {
        max-width: 600px;
    }

    .join-hero-content h2 {
        font-size: 40px;
    }

    .join-hero-content p {
        font-size: 20px;
    }

    .join-hero-image {
        width: 400px;
        right: -40px;
    }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
    .join-hero-section {
        padding: 60px 20px;
    }

    section.join-hero-section {
        padding-bottom: 30px;
    }

    .join-hero-content {
        max-width: 100%;
    }

    .join-hero-content h2 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .join-hero-content p {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .join-hero-image {
        position: static;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 0;
        transform: none;
        opacity: 0.2;
        display: block;
    }

    .join-hero-image img {
        margin-top: -30px;
    }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
    .join-hero-section {
        padding: 40px 15px;
    }

    .join-hero-content h2 {
        font-size: 28px;
    }

    .join-hero-content p {
        font-size: 16px;
        padding: 0 15px;
        line-height: 1.5;
    }

    .join-hero-image {
        max-width: 250px;
    }
}

/* Form Section Styles */
section.form-section {
    padding-top: 30px;
}

.form-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    color: #010C80;
    font-size: 46px;
    margin-bottom: 20px;
}

.form-intro p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 24px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    margin-bottom: 200px;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #000;
    border: none;
    border-bottom: 2px solid #87C0CD;
    outline: none;
    background: transparent;
    transition: 0.3s;
}

.form-group label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    pointer-events: none;
    transition: 0.3s;
}

/* Label animation when input is focused or has content */
.form-group input:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: #010C80;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 2px solid #010C80;
}

.form-group textarea {
    height: 100px;
    resize: none;
}

/* Submit button styles - using your existing button-primary class with some modifications */
.form-container .button-primary {
    width: 100%;
    margin-top: 20px;
}

/* Responsive design */
   
@media screen and (max-width: 1024px) {
    .form-intro p {
        font-size: 20px;
    }

    .form-intro {
        padding: 30px 60px;
    }
    
    .join-hero-image {
        margin-right: 50px;
        opacity: 20%;
    }
}

@media screen and (max-width: 768px) {
    .form-container {
        padding: 20px;
    }

    .form-intro p {
        font-size: 14px;
        line-height: 1.5;
    }

    .form-intro h2 {
        font-size: 32px;
    }

    .form-intro {
        margin: 20px 0;
        padding: 0 15px;
    }

    .join-hero-image {
        opacity: 100%;
        align-items: center;
    }
}