@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Hero Section */


.line {
    width: 80px; /* Adjust width to match the design */
    height: 4px; /* Thin black line */
    background-color: black; /* Line color */
    margin: 10px auto; /* Centers the line */
}


/* Hero Section */
.hero {
    font-family: "Poppins", sans-serif;
    color: white;
    text-align: center;
   
}

.herocontainer {
    background: linear-gradient(to right, #E65100, #FF6D00);
    padding: var(--size-7xl) var(--size-base); /* 72px padding */
}

/* Solutions title */
.hero h3 {
    color: black;
    font-size: var(--size-lg); /* 18px */
}

/* Main Heading */
.hero h1 {
    font-size: var(--size-6xl); /* 60px */
    font-weight: bold;
}

/* Black underline */

/* Description Text */
.hero p {
    max-width: 800px;
    margin: var(--size-xs) auto;
    line-height: 1.5;
    font-size: var(--size-lg); /* 18px */
}

/* 🔹 Responsive Adjustments */
@media (max-width: 1024px) {
    .hero {
        padding: var(--size-5xl) var(--size-lg); /* 48px */
    }
    .hero h1 {
        font-size: var(--size-5xl); /* 48px */
    }
    .hero p {
        font-size: var(--size-base); /* 16px */
    }
}

@media (max-width: 768px) {
    .hero {
        padding: var(--size-4xl) var(--size-lg); /* 36px */
    }
    .hero h1 {
        font-size: var(--size-4xl); /* 36px */
    }
    .hero p {
        font-size: var(--size-sm); /* 14px */
    }
}

@media (max-width: 480px) {
    .hero {
        padding: var(--size-3xl) var(--size-base); /* 30px */
    }
    .hero h1 {
        font-size: var(--size-3xl); /* 30px */
    }
    .hero p {
        font-size: var(--size-xs); /* 12px */
    }
    .line {
        width: var(--size-3xl); /* 30px */
    }
}

/* Solutions Grid */
/* .solutions-grid {
    display: grid;
    gap: 20px;
    padding-top: 50px;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(5, 1fr);
} */


.solutions-grid {
    display: grid;
    gap: 20px;
    padding-top: 50px;
    max-width: 1200px;
    margin: auto;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
}


.solutions-grid a{
    text-decoration: none;
}

/* Cards */
/* .card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 450px; 
} */

.card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%; /* allow grid to control height */
}


.card:hover {
    cursor: pointer;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
}

.card img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 15px;
}

.card h2 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: black;
}

.card ul {
    list-style: none;
    padding: 0;
}

/* Style for the unordered list */
.card ul {
    list-style: none; /* Remove default bullets */
    padding: 0;
}

/* Style for the list items */
.card ul li {
    position: relative; /* Allows absolute positioning for the arrow */
    padding-left: 20px; /* Creates space for the arrow */
    margin: 8px 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Add the orange arrow before each list item */
.card ul li::before {
    content: "\203A"; /* Unicode for › (angled arrow) */
    font-size: 18px;
    font-weight: bold;
    color: var(--clr-orange); /* Orange color */
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}




/* Responsive Grid */
@media (max-width: 1023px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        padding-top: 40px;
    }
}

@media (max-width: 767px) {
    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 30px;
    }

   
}

@media (max-width: 480px) {
    .solutions-grid {
        grid-template-columns: repeat(1, 1fr);
        padding-top: 20px;
    }
   
}
#scrollTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: black;
    color: white;
    border: 2px solid var(--clr-orange);
    width: 50px; /* Set fixed width */
    height: 50px; /* Set fixed height */
    border-radius: 50%; /* Make it a circle */
    cursor: pointer;
    display: none;
    font-size: 24px;

    /* Center the arrow using flexbox */
    display: flex;
    align-items: center;
    justify-content: center;

    /* Add a shadow effect */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
}



/* Hover Effect */
#scrollTopBtn:hover {
    background: #75706f; /* Softer orange */
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
   
}

/* Show the button when scrolling */
#scrollTopBtn.show {
    display: flex;
}

