:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #3498db;
    --light: #ecf0f1;
    --dark: #2c3e50;
}

body {
    color: var(--dark);
    background-color: #f8f9fa;
}

.hero{
    background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%); 
    background-size: cover;
    color: white;
    position: relative;
    padding: 100px 0; /* Added padding for better spacing */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.537);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #252e63;
    margin-bottom: 0;
}

.about-section {
    padding: 5rem 0;
    background-color: white;
}

.about-text {
    padding: 2rem;
    border-left: 4px solid var(--accent);
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 30px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
}

.product-desc {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.cta-section {
    background-color: var(--primary);
    color: white;
    padding: 4rem 0;
}

@media (max-width: 767.98px) {
    .hero {
        padding: 3rem 0;
    }

    .about-text {
        border-left: none;
        border-top: 4px solid var(--accent);
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}


/* Download Button for Brochure */

.download-btn {background-image: linear-gradient(to right, #77A1D3 0%, #79CBCA  51%, #77A1D3  100%)}
.download-btn {
    margin: 10px;
   padding: 10px 15px;
   text-align: center;
   text-transform: uppercase;
   transition: 0.5s;
   background-size: 200% auto;
   color: white;            
   box-shadow: 0 0 20px #eee;
   border-radius: 10px;
   text-decoration: none;
}


.download-btn:hover {
    background-position: right center; /* change the direction of the change here */
   color: #fff;
}