*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px;
    background-color: #e5edf0;
    border: 0px solid  transparent !important;
   
}

.left-buttons,
.right-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.left-buttons button {
    background-color: #b41c1c;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.right-buttons button {
    background-color: #2c2f3c;
    color: white;
    border: none;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
}

.logo {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}



.search-icon {
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.right-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsive */
@media (min-width: 768px) {
    header {
        flex-wrap: nowrap;
    }

    .logo {
        flex: none;
        margin: 0;
    }
}

@media (max-width: 480px) {

    .left-buttons button,
    .right-buttons button {
        font-size: 12px;
        padding: 8px 10px;
    }

   
    .search-icon {
        font-size: 18px;
    }
}


h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.category-slider-container {
    padding: 20px;
    border-radius: 8px;
    position: relative;
    z-index: 999;
}

.category-item {
    text-align: center;
    padding: 15px 5px;
    position: relative;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.category-item:hover {
    transform: translateY(-3px);
}

.category-item img {
    max-width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
    margin: 0 auto 35px;
    padding: 5px;
}

.category-item::after {
    content: '';
    position: absolute;
    width: 45px;
    height: 45px;
    background-color: #e6ebec;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -80%);
    z-index: -1;
}

.owl-carousel,
.owl-carousel .owl-stage-outer {
    overflow: visible !important;
}

@media (max-width:750px){
    
.owl-carousel,
.owl-carousel .owl-stage-outer {
    overflow: hidden !important;
}
}

.category-item p {
    margin: 0;
    font-size: 13px;
    color: #555;
    font-weight: 500;
    min-height: 30px;
}

/* Mega Menu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 1000;
    text-align: left;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.category-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu h4 {
    margin: 0 0 15px;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.mega-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.mega-menu li {
    margin-bottom: 8px;
}

.mega-menu a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
    transition: color 0.2s ease;
}

.mega-menu a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.mega-menu-img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 4px;
    display: block;
}

/* Owl Carousel Navigation */
.category-slider-container .owl-nav {
    position: static;
    margin-top: 15px;
    text-align: center;
}

.category-slider-container .owl-nav button.owl-prev,
.category-slider-container .owl-nav button.owl-next {
    background: #007bff !important;
    color: white !important;
    border-radius: 50% !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 20px !important;
    line-height: 35px !important;
    margin: 0 10px !important;
    transition: background-color 0.3s ease;
}

.category-slider-container .owl-nav button.owl-prev:hover,
.category-slider-container .owl-nav button.owl-next:hover {
    background: #0056b3 !important;
}

.category-slider-container .owl-dots {
    display: none;
}



/* Global or Section Styling */
.b {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    padding: 40px 20px;
    color: #343a40;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Slider Container */
.video-slider-container {

    
    margin: 0 auto;
    padding: 20px 15px;
    /* White background for the slider area */
    border-radius: 12px;
    /* Rounded corners */
    /* Subtle shadow */
    position: relative;
    overflow: hidden;
    /* Needed for absolute positioning of nav buttons */
}

h2 {
    /* text-align: center; */
    margin-bottom: 30px;
    font-weight: 600;
    color: #212529;
}

/* Styling for individual slider items */
.video-item {
    display: block;
    /* Make it a block element */
    text-decoration: none;
    /* Remove underline from link */
    color: inherit;
    /* Inherit text color */
    /* border: 1px solid #dee2e6; Subtle border */
    border-radius: 8px;
    /* Rounded corners for items */
    overflow: hidden;
    /* Ensure content fits */
    /* background-color: #fff; */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-item:hover {
    transform: translateY(-5px);
    /* Lift effect on hover */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    /* Enhanced shadow on hover */
}

.video-thumbnail-wrapper {
    position: relative;
    /* For positioning the play button */
    width: 100%;
    /*padding-top: 125%;*/
    /* Aspect ratio hack (adjust percentage for different ratios, e.g., 56.25% for 16:9) */
    background-color: #e9ecef;
    /* Placeholder background */
}

.video-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area */
    display: block;
}

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* Dark overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    /* Hidden by default */
    transition: opacity 0.3s ease;
}

.video-item:hover .play-button-overlay {
    opacity: 1;
    /* Show on hover */
}

.play-icon {
    width: 50px;
    /* Size of the play icon */
    height: 50px;
    background-color: rgba(255, 255, 255, 0.8);
    /* White semi-transparent background */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-icon::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #343a40;
    /* Dark play triangle */
    margin-left: 4px;
    /* Adjust position */
}

.video-info {
    padding: 12px;
}

.video-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 5px;
    /* Clamp text to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: auto;
    /* Ensure space for 2 lines */
}

.video-price {
    font-size: 1rem;
    font-weight: 600;
    color: #007bff;
    /* Blue price color */
}

/* Owl Carousel Navigation Buttons Styling */
.video-slider-container .owl-nav {
    position: absolute;
    top: 40%;
    /* Adjust vertical position */
    left: -25px;
    /* Position left arrow */
    right: -25px;
    /* Position right arrow */
    width: calc(100% + 50px);
    /* Span across the container + arrow width */
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
    /* Allow clicks to pass through the nav container */
}

.video-slider-container .owl-nav button.owl-prev,
.video-slider-container .owl-nav button.owl-next {
    pointer-events: all;
    /* Enable clicks on buttons */
    background: #ffffff !important;
    /* White background */
    color: #343a40 !important;
    /* Dark icon color */
    border-radius: 50% !important;
    width: 40px !important;
    /* Button size */
    height: 40px !important;
    font-size: 22px !important;
    line-height: 38px !important;
    /* Center icon vertically */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e0e0e0 !important;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    /* Reset padding */
}

/* Adjust positioning if arrows overlap content on smaller screens */
@media (max-width: 1300px) {
    .video-slider-container .owl-nav {
        left: -15px;
        right: -15px;
        width: calc(100% + 30px);
    }
}

@media (max-width: 768px) {
    .video-slider-container .owl-nav {
        position: static;
        /* Position below slider on small screens */
        transform: none;
        margin-top: 20px;
        width: 100%;
        justify-content: center;
        gap: 20px;
        /* Space between buttons */
    }

    .video-slider-container .owl-nav button.owl-prev,
    .video-slider-container .owl-nav button.owl-next {
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
    }
}


.video-slider-container .owl-nav button.owl-prev:hover,
.video-slider-container .owl-nav button.owl-next:hover {
    background: #f1f3f5 !important;
    /* Slightly grey background on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Hide default dots */
.video-slider-container .owl-dots {
    margin-top: 20px;
    text-align: center;
}

.video-slider-container .owl-dot span {
    background: #adb5bd !important;
    /* Grey dots */
    width: 10px !important;
    height: 10px !important;
    margin: 0 5px !important;
}

.video-slider-container .owl-dot.active span {
    background: #007bff !important;
    /* Blue active dot */
}


/* Lightbox Styling */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    /* Dark semi-transparent background */
    display: none;
    /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1000;
    /* Ensure it's on top */
    padding: 20px;
    /* Padding around the video */
    cursor: pointer;
    /* Indicate it can be clicked to close */
}

.lightbox-content {
    position: relative;
    max-width: 900px;
    /* Max width of the video container */
    width: 90%;
    background-color: #000;
    /* Black background for video area */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    /* Hide overflowing parts of iframe */
    cursor: default;
    /* Default cursor for the content area */
}

.lightbox-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.lightbox-video-wrapper iframe,
.lightbox-video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    /* Remove iframe border */
}

.lightbox-close {
    position: absolute;
    top: -35px;
    /* Position above the content */
    right: -5px;
    background: transparent;
    border: none;
    color: #ffffff;
    /* White color for 'X' */
    font-size: 35px;
    /* Size of the 'X' */
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #cccccc;
    /* Lighter grey on hover */
}

/* Class to prevent body scroll when lightbox is open */
.no-scroll {
    overflow: hidden;
}


.top-image,
.bottom-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.top-image {
    background-image: url('https://images.unsplash.com/photo-1726607102396-548750ce07f6?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDF8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    height: 650px;
}

.bottom-banner {
    background: #D0202A;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

.bottom-banner p {
    margin: 0;
    flex: 1 1 60%;
}

.enquiry-btn {
    background: white;
    color: #D0202A;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
    flex: 1 1 30%;
    text-align: center;
}

.enquiry-btn:hover {
    background: #ffe5e5;
}

.bottom-image {
    background-image: url('https://via.placeholder.com/1200x200?text=Bottom+Image');
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-image {
        height: 400px;
    }

    .bottom-banner {
        flex-direction: column;
        text-align: center;
    }

    .bottom-banner p {
        font-size: 16px;
    }

    .enquiry-btn {
        width: 100%;
        padding: 12px 0;
    }
}

@media (max-width: 480px) {
    .top-image {
        height: 300px;
    }

    .bottom-banner p {
        font-size: 15px;
    }

    .enquiry-btn {
        font-size: 16px;
    }
}


.layb {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdff;
    /* Very light off-white background */
    padding: 40px 20px;
    /* Padding around the content */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* Align items to the top */
    min-height: 100vh;
}

/* Main Layout Container */
.service-layout {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    gap: 30px;
    /* Gap between columns */
    max-width: 1200px;
    width: 100%;
}

/* Columns */
.left-column,
.right-column {
    flex: 1;
    /* Each column takes equal space initially */
    min-width: 300px;
    /* Minimum width before wrapping */
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* Gap between items within a column */
}

/* Styling for individual Service Blocks */
.service-block {
    border-radius: 16px;
    /* Rounded corners */
    padding: 25px;
    border: 1px solid #e0e0e0;
    /* Subtle border */
    position: relative;
    /* For positioning tags */
    background-color: #fff;
    /* Default white background */
    overflow: hidden;
    /* Hide overflow for tags */
}

/* Specific Background Colors */
.block-pink {
    background-color: #ffeef4;
    /* Light pink */
    border-color: #f8cdda;
}

.block-orange {
    background-color: #fff0e1;
    /* Light orange */
    border-color: #ffd9b8;
}

.block-white-lg {
    /* Larger white block */
    padding: 30px;
}

/* Service Tags (e.g., Service 01) */
.service-tag {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #343a40;
    /* Dark background */
    color: #fff;
    padding: 5px 15px 5px 25px;
    /* Padding with space for triangle */
    font-size: 0.75rem;
    font-weight: 500;
    border-bottom-right-radius: 12px;
    /* Rounded corner */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%, 0 calc(100% - 15px));
    /* Shape with triangle cutout */
}

.service-tag::before {
    /* Triangle shape */
    content: '';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
    /* White triangle */
}

/* Position tags differently if needed */
.tag-bottom-right {
    top: auto;
    left: auto;
    bottom: 0;
    right: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 12px;
    clip-path: polygon(calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%, 0 0);
    /* Adjusted clip-path */
    padding: 5px 25px 5px 15px;
    /* Adjust padding */
}

.tag-bottom-right::before {
    /* Adjust triangle position */
    left: auto;
    right: 8px;
    border-left: none;
    border-right: 8px solid #fff;
}

.tag-bottom-left {
    /* For Service 03 */
    top: auto;
    left: 0;
    bottom: 0;
    right: auto;
    border-bottom-right-radius: 0;
    border-top-right-radius: 12px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
    /* Adjusted clip-path */
    padding: 5px 15px 5px 25px;
    /* Adjust padding */
}


/* Text Styling within Blocks */
.sub-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 5px;
}

.main-text {
    font-size: 1.8rem;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
}

.block-white-lg .main-text {
    /* Slightly smaller main text in large white blocks */
    font-size: 1.6rem;
}

/* Decorative Line Elements */
.decorative-line {
    border: 1px solid #ccc;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    /* Example height */
    position: relative;
}

.line-vertical {
    width: 2px;
    height: 80%;
    /* Adjust height */
    background-color: #aaa;
    position: absolute;
    left: 50%;
    top: 10%;
    transform: translateX(-50%);
}

.line-dot {
    width: 10px;
    height: 10px;
    background-color: #333;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.line-arrow {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #333;
    /* Arrow shape */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.line-diamond {
    width: 8px;
    height: 8px;
    background-color: #333;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    /* Rotate square to make diamond */
}

/* Positioning for line elements */
.line-1 .line-dot {
    top: 15%;
}

.line-1 .line-arrow {
    bottom: 15%;
}

.line-2 .line-diamond:nth-of-type(1) {
    top: 25%;
}

.line-2 .line-diamond:nth-of-type(2) {
    top: 50%;
}

.line-2 .line-diamond:nth-of-type(3) {
    top: 75%;
}


/* People/Arrow Element */
.people-arrow {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 0 0 0;
    /* Spacing */
}

.people-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    /* Overlap effect */
}

.people-avatars img:first-child {
    margin-left: 0;
}

.arrow-right {
    width: 20px;
    /* Simple arrow using border */
    height: 2px;
    background-color: #333;
    position: relative;
    margin: 0 10px;
    /* Space around arrow line */
}

.arrow-right::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #333;
}

.final-avatar img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ccc;
}


/* Book a Demo Button */
.demo-button {
    display: inline-flex;
    /* Align icon and text */
    align-items: center;
    justify-content: center;
    /* Center content */
    background-color: #ffcce7;
    /* Pink background */
    color: #c71585;
    /* Darker pink text */
    border: 1px solid #f7b0d7;
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
    /* Space above button */
}

.demo-button:hover {
    background-color: #f8bde0;
    transform: translateY(-2px);
}

.demo-button .arrow-icon {
    width: 18px;
    height: 18px;
    background-color: #c71585;
    /* Dark pink circle */
    border-radius: 50%;
    margin-left: 10px;
    position: relative;
    display: inline-block;
}

.demo-button .arrow-icon::after {
    /* White arrow inside circle */
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 5px solid #fff;
    transform: translate(-40%, -50%);
    /* Center arrow */
}

/* Right Column Image */
.main-image {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 16px;
    object-fit: cover;
    /* Cover the area */
    max-height: 500px;
    /* Limit image height if needed */
    display: block;
    /* Remove extra space below image */
}

/* Responsive Adjustments */
@media (max-width: 992px) {

    .left-column,
    .right-column {
        min-width: calc(50% - 15px);
        /* Two columns on tablets */
    }

    .main-text {
        font-size: 1.6rem;
    }

    .block-white-lg .main-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {

    .service-layout {
        gap: 20px;
    }

    .left-column,
    .right-column {
        min-width: 100%;
        /* Stack columns on mobile */
        flex-basis: 100%;
        gap: 20px;
    }

    .main-text {
        font-size: 1.4rem;
    }

    .block-white-lg .main-text {
        font-size: 1.3rem;
    }

    .decorative-line {
        height: 120px;
        /* Adjust height */
    }

    /* Optionally hide decorative lines on small screens */
    /* .decorative-line { display: none; } */
}

.seb {
    font-family: 'Inter', sans-serif;
    /* Apply the chosen font */
    background-color: #ffffff;
    /* White background as per image context */
    padding: 50px 20px;
    /* Add some padding around the content */
    color: #343a40;
    /* Default text color */
    display: flex;
    /* Used here to center the demo section */
    justify-content: center;
    align-items: center;
    /* min-height: 100vh; */
    /* Ensure body takes at least full viewport height */
}

/* Milestones Section Container */
.milestones-section {
    max-width: 1100px;
    /* Maximum width of the section */
    width: 100%;
    text-align: center;
    padding: 40px 0;
    /* Padding top and bottom */
    margin: auto;
}

.milestones-section h2 {
    font-size: 2.5rem;
    /* Title font size */
    font-weight: 700;
    /* Bold title */
    color: #212529;
    /* Dark heading color */
    margin-bottom: 50px;
    /* Space below the title */
    text-transform: capitalize;
    /* Match image casing */
}

/* Grid Layout for Counter Items */
.milestones-grid {
    display: grid;
    /* Create responsive columns: fit as many as possible with min width 150px */
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    /* Space between grid items */
    justify-content: center;
    /* Center items if they don't fill the row */
}

/* Styling for Individual Milestone Item */
.milestone-item {
    background-color: #f8f9fa;
    /* Default light grey background */
    padding: 25px 15px;
    /* Padding inside each item */
    border-radius: 8px;
    /* Slightly rounded corners */
    text-align: center;
    min-height: 150px;
    /* Minimum height for consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center the content */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth hover effect */
}

/* Add a subtle lift and shadow effect on hover */
.milestone-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


/* Specific style for the first item (highlighted) */
.milestone-item.highlight {
    background-color: #0d47a1;
    /* Dark blue background matching the image */
    color: #ffffff;
    /* White text for contrast */
}

/* Styling for the animated number */
.milestone-number {
    font-size: 2.2rem;
    /* Large number font size */
    font-weight: 700;
    /* Bold number */
    margin-bottom: 8px;
    /* Space below the number */
    line-height: 1.2;
    /* Adjust line height */
}

/* Styling for the description text */
.milestone-description {
    font-size: 0.85rem;
    /* Smaller font size for description */
    color: #6c757d;
    /* Standard grey text color */
    line-height: 1.4;
    font-weight: 500;
}

/* Make description text white for the highlighted item */
.milestone-item.highlight .milestone-description {
    color: rgba(255, 255, 255, 0.85);
    /* Slightly transparent white */
}

/* Style suffixes like 'M+' or '+' if needed */
/* (Handled within JS number formatting for simplicity here) */


/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .milestones-section h2 {
        font-size: 2rem;
        /* Slightly smaller title */
    }

    .milestones-grid {
        /* Adjust column minimum width for tablets */
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 15px;
        /* Reduce gap */
    }

    .milestone-item {
        min-height: 130px;
        /* Adjust min height */
        padding: 20px 10px;
        /* Adjust padding */
    }

    .milestone-number {
        font-size: 1.8rem;
        /* Smaller number */
    }

    .milestone-description {
        font-size: 0.8rem;
        /* Slightly smaller description */
    }
}

/* Further adjustments for very small screens */
@media (max-width: 480px) {
    .milestones-grid {
        /* Force 2 columns on mobile */
        grid-template-columns: repeat(2, 1fr);
    }
}


.tab-container {
    display: flex;
    border-bottom: 1px solid #ccc;
    justify-content: space-between;
}

.tab {
    padding: 10px 15px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
    border: none;
    background: none;
    outline: none;
}

.tab.active {
    color: #e44d26;
    /* Example active color */
    border-bottom: 2px solid #e44d26;
    /* Example active underline */
}

.tab-content {
    display: none;
    padding: 30px;
    height: 300px;
    overflow-y: scroll;
}

.tab-content.active {
    display: block;
}

.tab-wrapper {
    background-color: #ededed;
}

@media (max-width:750px) {
    .tab-container {
        flex-direction: column;
    }

    .tab-container button {
        text-align: left;
    }
}

.footer {
    background-color: #f7f7f7;
    /* Light grey background */
    padding: 30px 20px;
    color: #555;
    /* Dark grey text */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 100%;
    /* Limit width for better readability */
    margin: 0 auto;
    /* Center the footer */
    justify-content: center;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    /* Adjust logo size */
    height: auto;
    display: block;
}

.subscribe-section {
    margin-bottom: 20px;
}

.subscribe-section h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.email-input-group {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}

.email-input {
    flex-grow: 1;
    padding: 10px;
    border: none;
    outline: none;
}

.subscribe-button {
    background-color: #fff;
    /* White button */
    color: #555;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

.footer-column h4 {
    font-size: 1em;
    margin-bottom: 10px;
    color: #333;
}

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

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    text-decoration: none;
    color: #555;
    font-size: 0.9em;
}

.footer-column a:hover {
    color: #e44d26;
    /* Example hover color */
}

/* Sub-sections styling */
.footer-sub-section {
    margin-top: 20px;
    display: flex;
    max-width: 100%;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.footer-sub-column {
    width: 50%;
}

.footer-sub-column h6 {
    font-size: 0.9em;
    margin-bottom: 8px;
    color: #333;
    font-weight: bold;
}

.footer-sub-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-sub-column li {
    margin-bottom: 6px;
}

.footer-sub-column a {
    text-decoration: none;
    color: #777;
    font-size: 0.85em;
}

.footer-sub-column a:hover {
    color: #e44d26;
}

.footer-column {
    width: 20%;
}

/* Adjustments for specific columns */
.footer-column:nth-child(1) {
    /* Logo and Subscribe */
    grid-column: 1;
}

.footer-column:nth-child(2) {
    /* Shop */
    grid-column: 2;
    width: 15%;
    padding-left: 20px;

}

.footer-column:nth-child(3) {
    /* Policy Info */
    margin-top: 30px;
    /* Add some spacing */
    width: 19%;

}

.footer-column:nth-child(4) {
    /* Help */
    width: 18%;
}

.footer-column:nth-child(5) {
    /* Company */
    grid-column: 4;
}

.footer-w1,
.footer-w2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.randomheading {
    margin: 15px 0;
}

.bottom-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    color: #777;
    font-size: 0.85em;
}

.social-links {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.social-links span {
    font-size: 1em;
    margin-right: 10px;
    color: #333;
    font-weight: bold;
}

.social-links a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    margin: 0 8px;
}

.social-links a:hover {
    color: #555;
}

.privacy-terms {
    margin-bottom: 10px;
}

.privacy-terms a {
    text-decoration: none;
    color: #777;
    margin: 0 10px;
}

.privacy-terms a:hover {
    color: #333;
}

.copyright {
    margin-bottom: 10px;
}

.contact-info {
    text-align: center;
    line-height: 1.4;
}









