




body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}



.brand-experience {
    text-align: center;
    max-width: 900px;   
    font-family: Arial, sans-serif;
    background-color: #f4f6f8;
    color: #121212;
    margin: 0 auto;
}

.brand-experience h2 {
    font-size: 32px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 15px;
}

.brand-experience p {
    font-size: 18px;
    line-height: 1.6;
    color: #3a3a3a;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .brand-experience h2 {
        font-size: 18px;
    }

    .brand-experience p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .brand-experience h2 {
        font-size: 18px;
    }

    .brand-experience p {
        font-size: 14px;
    }
}



.hero {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background: url('../images/Hero/backgroundimage.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Icon Above Title */
.hero-icon {
    width: 50px; /* Adjust icon size */
    height: 50px;
    margin-bottom: 10px;
}

/* Underline Below Title */
.underline {
    width: 80px;
    height: 4px;
    background-color: #ff4500; /* Adjust color */
    margin: 8px auto 15px auto;
}

/* Heading Style */
.hero h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Better readability */
}

/* Paragraph Style */
.hero p {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
    padding: 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Prevents text blending with background */
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 400px;
        padding: 15px;
        background-size: cover;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
        max-width: 90%;
    }

    .hero-icon {
        width: 40px; /* Reduce size */
        height: 40px;
    }

    .underline {
        width: 60px;
        height: 3px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 400px;
        padding: 10px;
        background-position: center;
        background-size: cover;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        max-width: 85%;
        padding: 0 5px;
    }

    .hero-icon {
        width: 35px;
        height: 35px;
    }

    .underline {
        width: 50px;
        height: 3px;
    }
}

@media (max-width: 425px) {
    .hero-icon {
        display: none;
    }
}



.cta-section {
    background: #f16232;
    color: white;
    text-align: center;
    padding: 30px 20px;
  
    margin-top: 30px !important;
}
.cta-section h2 {
    margin-bottom: 10px;
}
.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    color: #f16232;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
    margin-top: 15px;
}
.cta-button:hover {
    background: #fff3e0;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

