body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* ===== General Layout ===== */
.container {
    display: flex;
}

.sidebar {
    width: 200px;
    background: #f4f4f4;
    padding: 15px;
}

main {
    flex: 1;
    padding: 15px;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
}

/* ===== Header Wrapper ===== */
header {
    height: 96px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
}

.header-inner {
    max-width: 1350px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ===== Left Section: Logo + Company Name ===== */
.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.site-logo {
    height: 55px;
    width: auto;
}

.company-name {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

/* ===== Right Section: Navigation + Contact ===== */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    flex: 1;
}

.header-contact {
    width: 338px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Header Phone Numbers */

.header-number {
    width: 160px;
    display: flex;
    align-items: center;
}

.header-number-icon {
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-phone {
    color: #EC385B;
    font-size: 16px;
}

.header-number-text {
    font-family: 'Outfit', sans-serif;
    padding-left: 15px;
}

.header-number-text h3 {
    color: #828a8d;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 6px;
}

.header-number-text p {
    color: #dd1d26;
    font-size: 13px;
    font-weight: 500;
}


/* ===== Navigation Menu ===== */
.main-nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav .menu li {
    position: relative;
}

.main-nav .menu>li {
    margin-right: 25px;
}

.main-nav a {
    color: #261f1f;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 38px 10px;
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #000;
}

/* ===== Submenu Indicator (Red Dot) ===== */
.main-nav .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #EC385B;
    border-radius: 50%;
    margin-left: 6px;
    position: relative;
    top: -2px;
}

/* Animation for dot hopping */
@keyframes hop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Trigger dot animation on hover */
.has-submenu:hover>a .dot {
    animation: hop 0.7s infinite;
}

/* ===== Submenu Fly-down Animation ===== */
@keyframes flyDown {
    0% {
        transform: translateY(-15px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== Submenu ===== */
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #FC903E;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 290px;
    border-radius: 0;
    overflow: hidden;
    opacity: 0;
    z-index: 999;
    width: 100%;
}

/* Show submenu with fly-down effect */
.has-submenu:hover>.submenu {
    display: block;
    animation: flyDown 0.35s ease forwards;
    opacity: 1;
}

/* Animate submenu items individually */
.submenu li {
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.has-submenu:hover .submenu li {
    transform: translateY(0);
    opacity: 1;
}

/* ===== Submenu links ===== */
.submenu li a {
    color: #fff;
    border-top: 1px solid #FC903E;
    border-right: 1px solid #FC903E;
    border-left: 1px solid #FC903E;
    border-bottom: 1px solid #f78834;
    padding: 15px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 500;
    display: block;
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Hide '//' prefix initially */
.submenu li a::before {
    content: "//";
    margin-right: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Show prefix only on hover */
.submenu li a:hover::before {
    opacity: 1;
}

/* Hover effect on submenu item */
.submenu li a:hover {
    background: #fff;
    color: #FC903E;
    border: 1px solid #e5e5e5;
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
}

/* ===== Responsive tweak ===== */
@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav .menu {
        flex-direction: column;
        background: #fff;
        width: 100%;
    }

    .main-nav .menu>li {
        margin: 5px 0;
    }

    .header-contact {
        width: 100%;
        margin-top: 10px;
    }
}




/* Hero Home Section */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 700px;
    margin: 0 auto;
    overflow: visible;
    font-family: 'Outfit', sans-serif;
    color: #fff;
}

/* --- LAYER 1: Background Slider --- */
/* --- LAYER 1: Background Slider (seamless fade + zoom) --- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    filter: grayscale(100%);
}

.hero-bg .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    animation: fadeZoom 21s infinite ease-in-out;
}

/* Image sources + staggered start times */
.hero-bg .bg1 {
    background-image: url('../images/bg1.jpg');
    animation-delay: 0s;
}

.hero-bg .bg2 {
    background-image: url('../images/bg2.jpg');
    animation-delay: 7s;
}

.hero-bg .bg3 {
    background-image: url('../images/bg3.jpg');
    animation-delay: 14s;
}

/* Keyframes for fade-in, visible, zoom, fade-out */
@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1);
    }

    1% {
        opacity: 1;
        /* quick fade in (0.1s equivalent) */
    }

    25% {
        opacity: 1;
        transform: scale(1.05);
        /* zoom during stay */
    }

    48% {
        opacity: 0;
        /* fade out for ~2s */
        transform: scale(1.06);
    }

    100% {
        opacity: 0;
        transform: scale(1);
    }
}


/* --- LAYER 2: Overlay + Animated Lines --- */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
}

.animated-lines {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.line {
    position: relative;
    width: 1px;
    height: 100%;
    background: rgba(200, 200, 200, 0.3);
    overflow: hidden;
}

.crawler {
    position: absolute;
    width: 2px;
    height: 10px;
    background: #fff;
    border-radius: 2px;
    animation-duration: 20s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.crawler.up {
    animation-name: crawlUp;
}

.crawler.down {
    animation-name: crawlDown;
}

.crawler.delay {
    animation-delay: 5s;
}

@keyframes crawlUp {
    0% {
        top: 100%;
    }

    100% {
        top: -10px;
    }
}

@keyframes crawlDown {
    0% {
        top: -10px;
    }

    100% {
        top: 100%;
    }
}

/* --- LAYER 3: Content --- */
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    height: 100%;
}

.content-left {
    width: 60%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-right {
    width: 40%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-circle {
    position: absolute;
    width: 55%;
    opacity: 1;
    z-index: 0;
    transform: translate(30px, -30px);
    /* right and up */
}

.text-content {
    position: relative;
    z-index: 1;
    max-width: 80%;
}

/*
.tagline {
  background: #EC385B;
  display: inline-block;
  color: #fff;
  font-size: 16px;
  padding: 8px 15px;
  border-radius: 3px;
  margin-bottom: 20px;
}
  */

.tagline {
    background: #EC385B;
    display: inline-block;
    color: #fff;
    font-size: 15px;
    font-style: normal;
    padding: 8px 25px 10px 25px;
    margin-bottom: 30px;
    transform: skew(-20deg);
    /* creates the parallelogram */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25); */
}

/* straighten the text inside */
.tagline span {
    display: inline-block;
    transform: skew(20deg);
}


.text-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 50px;
    line-height: 65px;
    font-weight: 600;
    margin-bottom: 25px;
}

.text-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.hero-btn {
    background: linear-gradient(to right, #FF626A, #FC913C);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    word-spacing: 1px;
    font-weight: 500;
    padding: 18px 40px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn i {
    margin-left: 15px;
    font-size: 14px;
    color: #f5f5f5;
    transition: transform 0.3s ease;
}

/*
.hero-btn:hover {
    background: #ff5774;
} */

/* Home Stats Counter */

.stats-section-container {
    width: 100%;
    background-color: rgba(0, 0, 0, 0);
}

.stats-section {
    position: relative;
    max-width: 1400px;
    margin: -120px auto 0 auto;
    background-color: rgba(0, 0, 0, 0);
    z-index: 20;
    display: flex;
    justify-content: flex-end;
}

.stats-white-block {
    width: 45%;
    background-color: #fff;
    padding: 35px 0px 35px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.stats-single {
    width: 30%;
}

.stats-single h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
    color: #ff606c;
}

.stats-single p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 18px;
    font-weight: 400;
    margin-top: 10px;
    color: #808080;
}


/* Footer Section */

.footer-section-container {
    width: 100%;
    background-color: #000000;
}

.footer-section {
    max-width: 1400px;
    padding: 0 3%;
    margin: 0 auto;
    background-color: #000000;
}

.footer-cta {
    width: 100%;
    display: flex;
    gap: 50px;
    padding: 60px 0 80px 0;
    justify-content: space-between;
    align-items: center;
}

.footer-cta-text {
    width: 70%;
}

.footer-cta-text h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 50px;
    color: #fff;
}

.footer-cta-text h4 span {
    background: linear-gradient(to right, #FF626A, #FC913C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* ensures the gradient applies neatly to the span */
}

.footer-cta-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    margin-top: 10px;
}

.footer-cta-button {
    width: 30%;
    display: flex;
    justify-content: flex-end;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-links-left {
    display: flex;
    width: 800px;
    gap: 50px;
}

.footer-links-left-one h3,
.footer-links-left-two h3,
.footer-links-left-three h3,
.footer-links-right h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4em;
    color: #fff;
    margin-bottom: 25px;
}

.footer-links-left-one {
    width: 300px;
}

.footer-links-left-two,
.footer-links-left-three {
    width: 200px;
}

.footer-links-left-one p {
    font-family: 'Outfit', sans-serif;
    color: #b4b4b4;
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
}

.footer-links-left-two ul,
.footer-links-left-three ul,
.footer-links-right ul {
    list-style: none;
}

.footer-links-left-two ul li,
.footer-links-left-three ul li,
.footer-links-right ul li {
    font-family: 'Outfit', sans-serif;
    color: #b4b4b4;
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
}

.footer-links-right {
    width: 350px;
}

.footer-credit-strip {
    width: 100%;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;


}

.footer-credit-strip p {
    font-family: 'Outfit', sans-serif;
    text-align: center;
    color: #b4b4b4;
    font-size: 16px;
    line-height: 32px;
    font-weight: 300;
}

/* Pages Header */
.pages-header {
    position: relative;
    width: 100%;
    height: 350px;
    background-color: #F8F5FE;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pages-header-title {
    text-align: center;
    z-index: 2;
    /* keep title above images */
}

.pages-header-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
    color: #0f0e0e;
}

.pages-header-title p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #444141;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* spacing between items */
}

.pages-header-title p i {
    color: #888888;
    /* or #FC913C if you want accent */
    font-size: 14px;
}


/* Common image style */
.pages-header-left-graphic {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.pages-header-left-graphic img {
    height: auto;
    max-height: 250px;
    /* optional */
}

/* Left image */
.pages-header .pages-header-left-graphic:first-of-type {
    left: 75px;
}

/* Right image */
.pages-header .pages-header-left-graphic:last-of-type {
    right: 75px;
}

/* Contact Page Layout */

.form-map {
    width: 1250px;
    padding: 60px 3% 85px 3%;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.form-map-form {
    width: 50%;
}

.form-map-map {
    width: 50%;
}


/* COntact page form */

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    /* vertical spacing between rows */
}

.form-row {
    display: flex;
    gap: 30px;
    /* horizontal spacing between fields */
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 15px 25px;
    border: 1px solid #e3e3e3;
    background-color: #fff;
    border-radius: 2px;
    font-size: 16px;
    line-height: 28px;
    font-family: 'Outfit', sans-serif;
    color: #888;
    outline: none;
    transition: all 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: #e3e3e3;
}

.form-row textarea {
    height: 150px;
    resize: none;
}

/* Proper placeholder styling */
.form-row input::placeholder,
.form-row textarea::placeholder {
    color: #999;
    opacity: 1;
    /* ensures visibility */
}

.form-row input:focus::placeholder,
.form-row textarea:focus::placeholder {
    color: transparent;
    /* hides placeholder when clicked */
}

.submit-btn {
    align-self: flex-start;
    background-color: #000000;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    word-spacing: 1px;
    font-weight: 500;
    padding: 18px 40px;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
}

.submit-btn:hover {
    background: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
}


.contact-details {
    width: 1250px;
    margin: 0 auto;
    padding: 85px 3% 0 3%;
    display: flex;
    gap: 60px;
}

.contact-details-header,
.contact-details-info {
    width: 50%;
}

.contact-details-header h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 400;
    color: #111;
}

.contact-details-header p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #888;
    margin-top: 15px;
}

.contact-details-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    /* adds 20px only between children, not below the last one */
}

.contact-details-points {
    width: 100%;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    border: 1px solid #e3e3e3;
    padding: 20px;
}

.contact-details-points p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 28px;
    font-weight: 400;
    color: #666666;
}

.contact-details-points p span {
    font-size: 15px;
    font-weight: 600;
    color: #888;
    margin-right: 6px;
}



/* Contact page map */

.map-container {
    width: 100%;
    border: 1px solid #e3e3e3;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    /* adjust height as needed */
    border: none;
    /* remove iframe’s internal border */
    display: block;
}

.bi {
    font-size: 30px;
    color: #FC8845;
    margin-top: 5px;
    /* your brand pink */
}

/* Product Page */

.products-page-content {
    width: 1250px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.product-page-intro {
    width: 70%;
}

.product-page-intro img {
    width: 100%;
}

.product-page-intro h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    line-height: 1.3em;
    font-weight: 500;
    color: #000000;
    margin: 35px 0 20px 0;
}

.product-page-intro p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 32px;
    font-weight: 400;
    color: #555;
    margin-bottom: 20px;
}

.product-page-intro p span {
    font-weight: 600;
}

.product-intro-features-header {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 15px;
    padding-top: 25px;
}

.product-intro-features-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    line-height: 1.3em;
    font-weight: 500;
    color: #333;
    margin: 0;
    padding: 0;
}

.prod-features-points {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 35px;
    padding-top: 15px;
}

.prod-features-points-left ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.prod-features-points-left ul li {
    position: relative;
    padding-left: 25px;
    /* Space for the tick mark */
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 32px;
    font-weight: 400;
    color: #555;
}

.prod-features-points-left ul li::before {
    content: "✔";
    /* Tick mark symbol */
    position: absolute;
    left: 0;
    top: 0;
    color: #EC385B;
    /* Red color tick */
    font-weight: bold;
}


/*

.prod-features-points-left ul {
    list-style: none;
}

.prod-features-points-left ul li {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    line-height: 32px;
    font-weight: 400;
    color: #555;
}

*/

.product-page-sidebar {
    width: 30%;
}

/* Sidebar */

.sidebar-nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-nav-link {
    width: 100%;
    padding: 10px 15px 10px 25px;
    border-radius: 2px;
    background: #FEF7F7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Default state */
.sidebar-nav-link-name p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #333;
}

.sidebar-nav-link-arrow {
    background: #FEF7F7;
    padding: 15px;
    width: 50px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav-link .fa {
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
}

/* Hover state */
.sidebar-nav-link:hover .sidebar-nav-link-name p {
    color: #E73D31;
}

.sidebar-nav-link:hover .sidebar-nav-link-arrow {
    background: #E73D31;
}

.sidebar-nav-link:hover .fa {
    color: #fff;
}

/* Active (current page) state */
.sidebar-nav-link.active .sidebar-nav-link-name p {
    color: #E73D31;
}

.sidebar-nav-link.active .sidebar-nav-link-arrow {
    background: #E73D31;
}

.sidebar-nav-link.active .fa {
    color: #fff;
}

/* Home - Why Us Poings */

.why-us-section-container {
    width: 100%;
}

.why-us-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 70px 30px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 25px;
}

.why-us-point {
    width: 18%;
}

.why-us-point img {
    width: 60px;
    margin-left: -5px;
    margin-bottom: 10px;
}

.why-us-point h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.3em;
    font-weight: 500;
    color: #020202;
    margin-bottom: 10px;
}

.why-us-point p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 27px;
    font-weight: 400;
    color: #808080;
}

/* Product range */

.products-range {
    width: 1250px;
    margin: 0 auto;
    padding: 80px 3%;
    display: flex;
    flex-direction: row;
    gap: 35px;
    justify-content: center;
    align-items: center;
}

/* card */
.products-range-single {
    width: 30%;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    border-radius: 10px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Black tint overlay */
.products-range-single::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    border-radius: 10px;
    z-index: 0;
}

.products-range-single:hover::after {
    background: rgba(254, 104, 99, 0.4);
}

/* Ensure text and icons are above overlay */
.products-range-single>* {
    position: relative;
    z-index: 1;
}

/* Hover effect (optional slight zoom) */
.products-range-single:hover {
    transform: scale(1.02);
}

/* Background images */
.prod-one {
    background-image: url('../images/produ-icon-1.webp');
}

.prod-two {
    background-image: url('../images/produ-icon-2.webp');
}

.prod-three {
    background-image: url('../images/produ-icon-1.webp');
}

.prod-four {
    background-image: url('../images/produ-icon-2.webp');
}

.products-range-single-top {
    width: 100%;
    background: rgba(0, 0, 0, 0);
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.prod-range-sequence {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 40px 0 40px 40px;
}

.prod-range-sequence p {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    word-spacing: 2;
    line-height: 1em;
    font-weight: 500;
    color: #555;
}

.products-range-single-name {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    background-color: #fff;
    border-radius: 3px;
    padding: 9px 10px 9px 20px;
}

.prod-range-single-arrow {
    width: 45px;
    height: 45px;
    border-radius: 40px 0 40px 40px;
    background: linear-gradient(to right, #FF626A, #FC913C);
    display: flex;
    justify-content: center;
    align-items: center;
}

.prod-range-single-name-text p {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 500;
    color: #222;
}

.prod-range-single-arrow i {
    color: #fff;
}

.products-range-header {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 0 0 0;
}

.products-range-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 500;
    color: 111;
}

.gradient-underline {
    display: inline-block;
    background-image: linear-gradient(to right, #EC385B, #FF8C00);
    background-repeat: no-repeat;
    background-size: 100% 4px;
    /* width & underline thickness */
    background-position: 0 100%;
    /* bottom of text */
    padding-bottom: 0px;
    /* spacing between text and line */
}

.about-us-section {
    max-width: 1400px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin:0 auto;
    height:200px;
    background-color: #f5f5f5;
}

.about-us-section p {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    font-weight: 400;
    color: #888;
}