/* General Styling */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styling */
.header {
    background: #ffffff;
    padding: 0 0;           /* Reduced header height */
    transition: all 0.4s ease; 
    z-index: 999;
    width: 100%;
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);  /* Subtle shadow */
    animation: slideDown 0.5s ease;              /* Smooth animation */
}

/* Logo */
.logo-img {
    height: 100px;            
    width: 100px;
    transition: transform 0.3s, height 0.4s ease; /* Smooth logo resize */
}

/* Smaller logo when sticky */
.sticky .logo-img {
    height: 60px;              /* Resize logo on sticky */
    width: auto;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Center Navigation */
.navbar-nav {
    display: flex;
    width: 100%;
}

/* Navigation Links */
.nav-link {
    color: #333;
    text-decoration: none;
    font-size: 25px;  
    font-weight: 600 !important;   
    transition: color 0.3s ease;
}

/* Hover effect */
.nav-link:hover {
    color: #FF6600;            /* Hover color */
}

/* Active link color */
.nav-link.active {
    color: #E65C00 !important;
    font-weight: bold;
}

/* Login and Button Styling */
.auth-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.login-link {
    color: #333;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s;
}

.login-link:hover {
    color: #FF6600 !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-nav {
        display: block;
    }

    .navbar-nav .nav-link {
        padding: 12px 0;
        font-size: 16px;
    }

    .navbar-toggler {
        border: none;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .logo-img {
        height: 50px;         /* Smaller logo for mobile */
        width: auto;
    }

    .sticky .logo-img {
        height: 35px;         /* Smaller sticky logo on mobile */
    }

    .btn-demo {
        padding: 8px 20px;    
        font-size: 14px;
    }
}

/* ✅ Smooth slide-down animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


/* Section Styling  ///////////////////////////////////////////////////`*/
.business-section {
    min-height: 50vh;               /* Large section size */
    background: #fff;                /* White background */
    padding: 80px 20px;
}

/* Main Title Styling */
.main-title {
    font-size: 6rem;                /* Large heading */
    font-weight: bold;
    line-height: 1.2;
    color: #111;                     /* Dark color */
    margin-bottom: 20px;
}

/* Subtext Styling */
.sub-text {
    font-size: 1.2rem;              /* Subtext size */
    color: #444;                    /* Slightly lighter color */
    max-width: 800px;
    margin: 0 auto;                  /* Centered text */
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .business-section {
        padding: 60px 20px;
    }

    .main-title {
        font-size: 3rem;            /* Smaller font for tablets */
    }

    .sub-text {
        font-size: 1rem;            /* Smaller subtext */
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2.5rem;          /* Smaller heading on mobile */
    }

    .sub-text {
        font-size: 0.9rem;          /* Smaller subtext on mobile */
    }
}

/* Video Section /////////////////////////////////////////// */

/* ✅ Main Section */
.video-section {
    background: #ffffff;
    padding: 80prgb(255, 255, 255)
}

/* Rating Text */
.rating-text {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.g2-icon {
    width: 24px;
    height: 24px;
}

/* ✅ Video Wrapper */
.video-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

/* Main MP4 Video */
.main-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ✅ Bottom Button Styling */
.bottom-button-container {
    position: absolute;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
}

.watch-btn {
    background: #ff6600 !important;
    color: #fff;
    font-size: 16px;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.watch-btn:hover {
    background: #fdb27f !important;
    transform: scale(1.05);
}

.arrow-icon {
    font-size: 18px;
}

/* ✅ Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 197, 170, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s;
}

/* Modal Content */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 1300px;
    height: auto;
    background: #000;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Active Modal */
.video-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* MP4 Video in Popup */
video {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover {
    color: #ff6600;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
    }

    .watch-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}


/* carouel Section Styling //////////////////////////////////////////// */
/* ✅ Section Styling */
.carousel-section {
    background: #ffffff;
    padding: 60px 0;
}

/* ✅ Title Styling */
.carousel-title {
    font-size: 26px;
    color: #333;
    font-weight: 600;
    margin-bottom: 40px;
}

/* ✅ Logo Styling */
.carousel-logo {
    max-width: 150px;
    height: auto;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    filter: grayscale(0%); /* Colorful logos */
    opacity: 0.9;
}

/* Hover Effect */
.carousel-logo:hover {
    transform: scale(1.1);
    filter: none; /* Full color on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 1;
}

/* ✅ Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 6%;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
    .carousel-logo {
        max-width: 120px;  /* Smaller logos on smaller screens */
    }
    .carousel-title {
        font-size: 22px; /* Smaller title on mobile */
    }
    .carousel-control-prev, .carousel-control-next {
        width: 10%;
    }
    .carousel-indicators {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .carousel-logo {
        max-width: 100px; /* Further smaller logos for mobile */
    }
    .carousel-title {
        font-size: 20px;
    }
    .carousel-indicators {
        display: none !important;
    }
    
}




/* General Styling ///////////////////////////////////////// */


body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* Section Styling */
.team-wrapper {
    padding: 0px 5%;
    background: #ffffff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Layout */
.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Content */
.text-content {
    flex: 1;
}

.title {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #000;
}

.description {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

/* Cards */
.card-container {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff4e4 !important;
    padding: 25px;
    border-radius: 60px !important;
    width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.card:hover {
    background: #fae8dd !important;
}

.card h3 {
    font-size: 20px;
    color: #000;
    margin-bottom: 10px;
}

.card p {
    font-size: 16px;
    color: #555;
}

.arrow {
    display: inline-block;
    margin-top: 10px;
    font-size: 24px;
    color: #FF6600;
    text-decoration: none;
}

/* Right Section */
.image-content {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main Image */
.main-image {
    position: relative;
    z-index: 1;
}

.team-img {
    width: 100%;
    max-width: 550px;
    border-radius: 12px;  
    object-fit: cover;
    transition: transform 0.3s;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Floating Images */
.floating-image {
    position: absolute;
    z-index: 2;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    border: 3px solid #4b4b4b;
    border-radius: 12px;
    transition: transform 0.3s;
}

/* Floating Images Styling */
.floating-image img {
    width: 200px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Positions */
.bottom-left {
    bottom: -40px;
    left: -0px;
    transform: rotate(0deg);
}

.top-right {
    top: -40px;
    right: -50px;
    transform: rotate(0deg);
}



/* 📌 Perfect Mobile View */
@media (max-width: 991px) {
    .content {
        flex-direction: column;          
        text-align: center;
    }

    .text-content {
        order: 1;                        
    }

    .image-content {
        order: 2;                        
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .main-image {
        width: 90%;
        max-width: 400px;
    }

    .team-img {
        width: 100%;
        max-width: 350px;                 
    }

    .floating-image {
        position: absolute;
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
    }

    .floating-image img {
        width: 120px;
        max-width: 140px;
    }

    .bottom-left {
        bottom: -20px;
        left: -30px;
    }

    .top-right {
        top: -20px;
        right: -30px;
    }
}

/* For Smaller Mobile Screens */
@media (max-width: 576px) {
    .title {
        font-size: 35px;                 
    }

    .description {
        font-size: 18px;
    }

    .card {
        width: 100%;
    }

    .team-img {
        width: 100%;
        max-width: 300px;
    }

    .floating-image img {
        width: 100px;
        max-width: 120px;
    }

    .bottom-left {
        bottom: -15px;
        left: -15px;
    }

    .top-right {
        top: -10px;
        right: -15px;
    }
}

/* Section Styling ///////////////////////////////////////////*/
/* Section Styling */
.payroll-section {
    padding: 50px 0;
    background: #fff;
    font-family: Arial, sans-serif;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Image Section */
.image-container {
    position: relative;
    flex: 1;
    max-width: 50%;
}

/* Main Image */
.main-image1 {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

/* Floating Small Image (Independent) */
.floating-image-wrapper {
    position: absolute;
    top: 80px;
    left: -60px;
    z-index: 2;
    /* background: #fff; */
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
    padding: 10px;
    transition: 0.3s;
}

.small-image {
    width: 180px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    border: 3px solid #4b4b4b;
}

/* Text Section */
.text-content {
    flex: 1;
    max-width: 45%;
}

.title {
    font-size: 48px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
    margin-bottom: 20px;
}

.description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-container {
    display: inline-block;
}

.cta-button {
    background: #fff4e4 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #000;
    border: none;
    padding: 42px 35px;
    font-size: 18px;
    border-radius: 40px;
    border: 1px solid rgb(199, 198, 198);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: #fae8dd !important;
}

.arrow {
    font-size: 20px;
    color: #000;
    transition: 0.3s;
}



/* Mobile-First Layout with Consistent Image Style */
@media (max-width: 991px) {
    .content-wrapper {
        flex-direction: column-reverse;     /* Text appears below the images */
        text-align: center;
    }

    .image-container, .text-content {
        max-width: 100%;
    }

    /* Ensure floating image maintains same style */
    .image-container {
        position: relative;
        display: inline-block;
    }

    .main-image1 {
        width: 90%;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .floating-image-wrapper {
        position: absolute;
        top: 30px;               /* Overlapping main image */
        left: -10px;                /* Positioned outside main image */
        z-index: 2;
        /* background: #fff; */
        border-radius: 12px;
        /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); */
        padding: 8px;
    }

    .small-image {
        width: 140px;              /* Smaller floating image */
    }

    .title {
        font-size: 36px;
    }

    .description {
        font-size: 16px;
    }
}

/* Section Styling ///////////////////////////*/
/* Section Styling */
.hris-section2 {
    background: #fff;
    padding: 0px 0;
    font-family: Arial, sans-serif;
}

/* Container */
.container2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
}

/* Image Wrapper */
.image-wrapper2 {
    position: relative;
    flex: 1;
    max-width: 50%;
    height: 450px;
}

/* Main Image */
.main-img2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

/* Floating Images */
.overlay-img {
    position: absolute;
    z-index: 2;
    transition: 0.3s;
    border: 3px solid rgb(97, 97, 97);
}

/* Top-Left Small Image */
.img-top-left2 {
    top: 220px;
    left: -80px;
    width: 180px;
    height: 180px;
}

.img-bottom-right2 {
    bottom: 220px;
    right: -50px;
    width: 170px;
    height: 170px;
}

/* Image Styling */
.overlay-img, .main-img2 {
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}


/* Content Section */
.content2 {
    flex: 1;
    max-width: 45%;
}

/* Title */
.title2 {
    font-size: 48px;
    color: #222;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* Description */
.description2 {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* CTA Button */
.cta-wrapper2 {
    display: inline-block;
}

.cta-button2 {
    background: #fff4e4 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: #000;
    border: none;
    padding: 45px 35px;
    font-size: 18px;
    border-radius: 40px;
    border: 1px solid rgb(199, 198, 198);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button2:hover {
    background: #fae8dd !important;
    color: #000000;
}

.arrow2 {
    font-size: 20px;
    color: #000;
    transition: 0.3s;
}



/* Mobile Layout - Content on top, images below */
@media (max-width: 991px) {
    .container2 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .content2 {
        order: 1; /* Content appears first */
        max-width: 100%;
    }

    .image-wrapper2 {
        order: 2; /* Images appear below */
        max-width: 100%;
        height: auto;
    }
    .cta-wrapper2{
        width: 80%;
    }
    .main-img2 {
        width: 80%;
        height: auto;
    }

    .overlay-img {
        width: 120px;
        height: 120px;
    }

    .img-top-left2 {
        top: 230px;
        left: 5px;
    }

    .img-bottom-right2 {
        bottom: 230px;
        right: 5px;
    }

    .title2 {
        font-size: 36px;
    }

    .description2 {
        font-size: 16px;
    }
}

/* Section Styling /////////////////////////////////*/
/* Container Styling */
.section-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 80vh;
    background: #F4F1E8;  /* Beige background */
    color: #181818;
    font-family: Arial, sans-serif;
    flex-wrap: wrap;
}

/* Left Side with Image */
.image-container5{
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #F4F1E8;
}

/* Image Styling */
.section-image8 {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
    transition: 0.3s ease-in-out;
    top: 20px;        /* Move image down */
    left: 0;  
}

/* Heading Overlay */
.heading-overlay {
    position: absolute;
    top: 50px;                  /* Adjust position */
    left: 50%;
    /* transform: translateX(-50%); */
    z-index: 2;
    text-align: center;
    color: #181818;
    /* background: rgba(255, 255, 255, 0.9);  */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
    border-radius: 12px;
}

/* Heading Styling */
.section-title {
    font-size: 64px;
    font-weight: bold;
    line-height: 1.2;
    margin: 0;
}

/* Right Side with Content */
.content-container {
    flex: 1;
    padding: 80px;
    background: #F4F1E8;  /* Beige background */
    z-index: 1;
}

/* Typography */
.section-description {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Info Item Styling */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    /* background: #e46666; */
    /* border-radius: 12px; */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    /* transition: 0.3s; */
    /* border: 1px solid #ddd; */
    margin-bottom: 20px;
}


/* Icon Styling */
.icon {
    font-size: 28px;
    /* background: #F4F1E8; */
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Info Text */
.info-text h3 {
    font-size: 22px;
    font-weight: bold;
    color: #181818;
    margin: 0;
}

.info-text p {
    font-size: 16px;
    color: #555;
    margin: 5px 0 0;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .section-container {
        flex-direction: column;
    }

    .content-container {
        order: 1;  /* Content on top */
        padding: 60px 30px;
        width: 100%;
    }

    .image-container {
        order: 2;  /* Image at bottom */
        width: 100%;
        height: auto;
    }

    .section-image2 {
        width: 100%;
        height: auto;
        max-height: 400px;
    }

    .heading-overlay {
        position: static;         /* Remove absolute for mobile */
        transform: none;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
        background: transparent;  /* No background */
        padding: 0;
        box-shadow: none;
    }

    .section-title {
        font-size: 40px;
        color: #181818;
    }

    .section-description {
        font-size: 16px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .icon {
        font-size: 24px;
        padding: 12px;
    }
}


/*////////////////////////////////////// */
  

  
  .work-section {
    margin-top: 60px;
    padding: 60px 30px;
    background-color: #f8f0e4;
  }
  
  .container7 {
    max-width: 1200px;
    margin: auto;
  }
  
  .top-text {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  
  .top-text h1 {
    font-size: 48px;
    font-weight: 700;
    flex: 1;
    min-width: 260px;
    color: #1e1e1e;
  }
  
  .top-text .paragraph {
    flex: 1;
    min-width: 260px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
  }
  
  .image-container7 {
    flex: 1;
    min-width: 280px;
  }
  
  .image-container7 img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
  }
  
  .features {
    flex: 1;
    min-width: 280px;
  }
  
  .feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  
  .icon {
    font-size: 20px;
    padding-top: 5px;
  }
  
  .feature h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: #1e1e1e;
  }
  
  .feature p {
    font-size: 14px;
    margin-top: 6px;
    color: #333;
  }
  
  hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px 0;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .top-text {
      flex-direction: column;
    }
  
    .content {
      flex-direction: column-reverse;
    }
  
    .top-text h1 {
      font-size: 36px;
    }
  
    .top-text .paragraph {
      font-size: 15px;
    }
  }
  
  .global-platform-section {
    padding: 50px 0;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  .global-platform-section .container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .left h1 {
    font-size: 72px;
    font-weight: 600;
    color: #140901;
    line-height: 1.1;
    margin: 0;
  }
  
  .right {
    max-width: 500px;
  }
  
  .right p {
    font-size: 18px;
    line-height: 1.7;
    color: #1e1e1e;
    margin-bottom: 30px;
  }
  
  .btn-orange {
    display: inline-block;
    padding: 14px 28px;
    background-color: #ff6a00;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    transition: background 0.3s ease;
    font-size: 16px;
  }
  
  .btn-orange:hover {
    background-color: #e25800;
  }
  
  /* Responsive for mobile */
  @media (max-width: 768px) {
    /* .global-platform-section .container {
      flex-direction: column;
      text-align: center;
    } */
  
    .left h1 {
      font-size: 48px;
    }
  
    /* .right p {
      font-size: 16px;
    } */
  }
  
  /* body, html {
    width: 100%;
    height: 100%;
    font-family: "Segoe UI", sans-serif;
    background-color: #f5f5f5;
  } */

  .orbit-section {
    position: relative;
    width: 100vw;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .center-image {
    width: clamp(100px, 20vw, 250px);
    height: clamp(100px, 20vw, 250px);
    border-radius: 50%;
    overflow: hidden;
    z-index: 5;
  }

  .center-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Orbit Circles */
  .orbit-circle {
    position: absolute;
    border: 2px dashed #ccc;
    border-radius: 50%;
    pointer-events: none;
  }

  .orbit-circle.outer {
    width: min(80vw, 600px);
    height: min(80vw, 600px);
  }

  .orbit-circle.inner {
    width: min(55vw, 420px);
    height: min(55vw, 420px);
  }

  .floating-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(var(--radius)) rotate(calc(-1 * var(--angle)));
    transform-origin: center;
    z-index: 3;
  }

  .orbit-object {
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
  }

  .label {
    padding: 6px 14px;
    border-radius: 20px;
    color: #fff;
    font-size: clamp(10px, 2.5vw, 14px);
    font-weight: 600;
    white-space: nowrap;
  }

  .label.green { background: #00966D; }
  .label.pink { background: #DE62FF; }
  .label.orange { background: #FF6838; }
  .label.blue { background: #366BFF; }
  .label.red { background: #FF6B57; }

  .icon-card {
    background: #fff;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: clamp(10px, 2.5vw, 14px);
    white-space: nowrap;
    box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  }

  .avatar {
    width: clamp(32px, 6vw, 48px);
    height: clamp(32px, 6vw, 48px);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
  }

  @media (max-width: 480px) {
    .label, .icon-card {
      font-size: 12px;
      padding: 5px 10px;
    }
    .avatar {
      width: 32px;
      height: 32px;
    }
  }

  /* ////////////////////////////////////////////////////// */

  .features-section {
    display: flex;
    /* justify-content: left; */
    gap: 40px;
    flex-wrap: wrap;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .feature-card {
    flex: 1 1 280px;
    max-width: 340px;
    text-align: left;
  }
  
  .feature-icon {
    width: 90px;
    height: 80px;
    margin-bottom: 20px;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 600;
  }
  
  .feature-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
  }
  
  /* ///////////////////////////////// */

  .container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 10px;
}
.background-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.overlay-image {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
    .overlay-image {
        width: 90%;
        max-width: 400px;
    }
}
@media (max-width: 480px) {
    .overlay-image {
        width: 95%;
        max-width: 300px;
    }
}

/* ///////////////////////////////////////////////// */
.hero-section {
    position: relative; /* Allows precise positioning */
    width: 100%;
    margin-top: 300px;
    display: flex;
    align-items: center; 
    justify-content: flex-start; /* Adjust placement */
    padding-left: 5%;
    background-color: white;
    height: 200px; /* Adjust height based on content */
}

.content7 {
    max-width: 600px;
    text-align: left;
    position: absolute;
    top: 20%; /* Move down */
    left: 30%; /* Move right */
    transform: translateY(-50%); /* Center vertically */
}

.hero-section h1 {
    font-size: 40px;
    font-weight: bold;
    color: #000;
    margin-bottom: 15px;
}

.hero-section p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

.cta-button7 {
    background-color: #fff4e4 !important;
   
    color: rgb(0, 0, 0);
    border: 1px solid rgb(199, 198, 198);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 44px;
    font-size: 16px;
    border-radius: 25px;
    cursor: pointer;
    /* transition: 0.3s ease-in-out; */
}

.cta-button7:hover {
    background-color: #fae8dd !important;
    /* border: 1px solid rgb(199, 198, 198); */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        justify-content: center;
        /* padding: 20px; */
        text-align: center;
        height: auto;
        margin-top: 110px;
        
    }
    
    .content7 {
        position: static; 
        transform: none;
        max-width: 100%;
        /* text-align: center; */
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }
    .cta-button7 {
        background-color: #ff6a00;
        color: white;
        width: 100%;
        border: none;
        padding: 12px 24px;
        font-size: 16px;
        border-radius: 25px;
        cursor: pointer;
        transition: 0.3s ease-in-out;
        margin-bottom: 20px;
    }
    
    .cta-button7:hover {
        background-color: #e65c00;
    }
}
/* //////////////////////////////////////// */
.trusted-section {
    background-color: #3b1c0d; /* Dark Brown Background */
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.trusted-section h2 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 80px;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.badges-container img {
    height: 80px; /* Adjust badge size */
    object-fit: contain;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 80px;
    font-weight: 400;
}

.stat p {
    font-size: 16px;
    color: #ddd;
}

/* Responsive Design */
@media (max-width: 768px) {
    .badges-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .badges-container img {
        height: 60px;
    }

    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .stat h3 {
        font-size: 32px;
    }

    .stat p {
        font-size: 14px;
    }
}


/* /////////////////////////////////////////////////// */
.carousel-container{
    max-width: 1200px; 
    margin: auto; 
    padding: 20px; 
}
.carousel-container h1{
    margin-bottom: 25px;
}
.owl-carousel .item4 { 
    background: #fff5ee; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1); 
    height: 400px;
}
.item4 img { 
    width: 100%; 
    height: 180px; 
    object-fit: cover; 
    display: block; 
}
.content5 { 
    padding: 15px; 
}
.content h3 { 
    font-size: 16px; 
    font-weight: bold; 
    color: #333; 
    margin: 10px 0; 
}
.content p { 
    font-size: 14px; 
    color: #666; 
    margin: 5px 0; 
}
.read-more { 
    color: #007bff; 
    text-decoration: none; 
    font-weight: bold; 
    font-size: 14px; 
}
.read-more:hover { 
    text-decoration: 
    underline; 
}
.owl-nav { 
    position: absolute; 
    top: 50%; width: 100%; 
    display: flex; 
    justify-content: space-between; 
    transform: translateY(-50%); 
}
.owl-prev, .owl-next { 
    background: #fff; 
    padding: 10px 15px; 
    border-radius: 50%; 
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2); 
    cursor: pointer; 
}
.owl-prev:hover, .owl-next:hover { 
    background: #ddd; 
}
.owl-prev i, .owl-next i { 
    font-size: 18px; 
    color: #333; 
}

/* /////////////////////////////////////// */
/* Section Styling */
.bridge-section {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bridge-section h1 {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.2;
    color: #000;
}

.bridge-section p {
    font-size: 18px;
    margin: 15px 0 30px;
    color: #555;
}

/* Button Container */
.btn-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Button Styling */
.btn5 {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    border-radius: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
}

/* Span Styling for Sliding Effect */
.btn5 span {
    display: inline-block;
    transition: all 0.4s ease;
}

/* Hover Effect: Text Sliding Up and Color Change */
.btn5:hover span {
    transform: translateY(-10px);
    color: white;
}

.btn5:hover {
    background: orange;
    border-color: rgb(2, 2, 2);
}


/* ///////////////////////////////////////// */
 /* ===========================
           General Styling
        =========================== */
        /* * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            color: #333;
            line-height: 1.6;
        } */

        /* ===========================
           Carousel Styling
        =========================== */
        .carousel-gallery {
            max-width: 2000px;
            margin: 50px auto;
            padding: 0 15px;
            overflow: hidden; /* Prevents scrollbar */
        }

        .swiper-container {
            width: 100%;
            height: 400px;
        }

        .swiper-wrapper {
            display: flex;
        }

        .swiper-slide {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100%;
        }

        .swiper-slide a {
            display: block;
            width: 100%;
            height: 100%;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s, box-shadow 0.4s;
            cursor: pointer;
        }

        .swiper-slide a:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .image {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transition: 0.4s ease-in-out;
        }

        /* Pagination Styling */
        .swiper-pagination {
            bottom: 10px !important;
            text-align: center;
        }

        .swiper-pagination-bullet {
            background: #d63031;
            opacity: 0.7;
            transition: all 0.3s;
        }

        .swiper-pagination-bullet:hover {
            background: #ff4747;
            transform: scale(1.2);
        }

        .swiper-pagination-bullet-active {
            background: #ff0000;
            transform: scale(1.3);
        }

        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .swiper-container {
                height: 320px;
            }
        }

        @media screen and (max-width: 768px) {
            .swiper-container {
                height: 260px;
            }
        }

        @media screen and (max-width: 480px) {
            .swiper-container {
                height: 200px;
            }
        }
/* ///////////////////////////////// */
.section-container5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f46c23;  /* Orange Background */
    color: #fff;
    height: 700px;         /* Custom height */
    overflow: hidden;
    padding: 0 0;  
}

/* Content Section */
.content9 {
    width: 50%;
    padding: 80px;
    text-align: left;
    z-index: 1;
}

.content9 h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.content9 .btn {
    display: inline-block;
    background: #fff;
    color: #f46c23;
    padding: 12px 30px;
    font-size: 18px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.content9 .btn:hover {
    background: #ff944d;
    color: #fff;
}

/* Stats Section */
.stats {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.stats div {
    text-align: left;
}

.stats h2 {
    font-size: 50px;
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.stats p {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
}

/* Image Container */
.image-container9 {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 100%;          /* Full height of the section */
}

/* Image Styling */
.image-container9 img {
    width: 80%;
    height: 80%;
    /* object-fit: cover; */
    /* display: block; */
}

/* Mobile Styling: Image on Top */
@media (max-width: 1200px) {
    .section-container5 {
        flex-direction: column-reverse;  /* Image on top */
        height: auto;                    /* Flexible height */
        padding: 40px 0;
    }

    .image-container9 {
        width: 100%;
        height: 400px;                   /* Custom height for mobile */
    }

    .image-container9 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .content9 {
        width: 100%;
        padding: 40px;
        text-align: center;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .content9 h1 {
        font-size: 36px;
    }

    .stats h2 {
        font-size: 36px;
    }

    .stats p {
        font-size: 14px;
    }

    .content9 .btn {
        padding: 10px 25px;
        font-size: 16px;
    }

    .image-container9 {
        height: 300px; /* Smaller image height on small screens */
    }
}

/* Footer Styling */
.footer {
    background: #fff;          /* White background */
    color: #333;               /* Dark text */
    padding: 60px 0;
    font-family: Arial, sans-serif;
    border-top: 2px solid #ddd;
}

/* Top Line */
.footer-top-line {
    width: 100%;
    height: 2px;
    background: #ddd;       /* Orange line */
    margin-bottom: 40px;
}

/* Full-Width Line Above Bottom Row */
.footer-full-line {
    width: 100%;
    height: 2px;
    background: #ddd;          /* Light grey line */
    margin: 50px 0;
}

/* Footer Logo */
.footer-logo {
    font-size: 120px;
    font-weight: bold;
    color: #f46c23;
    margin-bottom: 40px;
}

/* Footer Headings */
.footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Links */
.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    transition: 0.3s;
}

.footer a:hover {
    color: #f46c23;
    transform: scale(1.05);
}

/* Icons with Spacing */
.footer i {
    margin-right: 10px;
}

/* Social Media Icons */
.footer .footer-icons a {
    font-size: 24px;
    margin: 0 10px;
    color: #555;
    transition: 0.3s;
}

.footer .footer-icons a:hover {
    color: #f46c23;
    transform: scale(1.1);
}

/* Bottom Row Styling */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 14px;
    color: #777;
    padding: 20px 0;
}

.footer-bottom p {
    margin: 0;
}

/* Privacy & Terms Links */
.footer-links a {
    color: #555;
    text-decoration: none;
    margin: 0 10px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f46c23;
}

/* Separator */
.footer-links .separator {
    color: #777;
    margin: 0 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-logo {
        font-size: 90px;
    }
}

@media (max-width: 992px) {
    .footer-logo {
        font-size: 70px;
    }

    .footer-icons a {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 60px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-icons a {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .footer-logo {
        font-size: 50px;
    }

    .footer-icons a {
        font-size: 16px;
    }
}




