/* Custom Color Styles */
:root {
    --primary-color: #FF9915;
    --secondary-color: #f56000;
    --highlight-color: #FAD928;
    --light-background: #FFF3E0;
    --hover-color: #FF6A00;
    --card-bg-color: #fff;
}

/* General Layout */
body {
    font-family: -apple-system, system-ui, BlinkMacSystemFont;
    font-weight: 400;
    background-color: #f4f7fc;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: -apple-system, system-ui, BlinkMacSystemFont;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Underline Effect */
.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--highlight-color);
    margin-top: 8px;
}


/* Hero Carousel */
.carousel-item {
    height: 500px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 20px;
    border-radius: 8px;
}

/* Product Cards */
.product-section {
    padding-top: 30px;
    padding-bottom: 80px;
}

.product-card {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect for Product Card */
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-card img {
    border-bottom: 1px solid #e0e0e0;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

/* Image Hover Effect */
.product-card:hover img {
    transform: scale(1.05);
}

/* Card Content */
.product-card .card-body {
    padding: 20px;
    text-align: center;
}

/* Card Title */
.product-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Card Text */
.product-card .card-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Buy Button */
.product-card .btn {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Buy Button Hover */
.product-card .btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* About Us Section */
.about-section {
    background-color: var(--light-background);
    padding: 60px 20px;
    border-top: 5px solid var(--primary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Company Logo Styling */
.about-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Company Story */
.company-story {
    text-align: left;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* Our Clients Section */
.clients-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Client Card */
.client-card {
    border: none;
    background-color: transparent;
    border-radius: 15px;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: center;
}

/* Client Card Hover Effect */
.client-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

/* Client Logo */
.client-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: 50%;
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    padding: 5px;
    margin: 0 auto 5px auto;
    margin-top: 10px;
}

/* Client Name */
.client-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 10px;
}

.client-info {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 5px;
    font-style: italic;
}

/* Contact Information Style */
.contact-info li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Social Media Links Styling */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.social-icon {
    font-size: 1.5rem;
    color: #f1f1f1;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover Effect for Icons */
.social-icon:hover {
    color: #ff9915;
    transform: scale(1.2);
}

/* Contact Us Section Styling */
.contact-us {
    font-family: 'Roboto', sans-serif;

    background-color: var(--light-background);
    padding: 60px 20px;
    border-top: 5px solid var(--primary-color);
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #282c34;
}

.contact-heading {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #282c34;
}

/* Contact Information Styling */
.contact-details {
    margin-top: 20px;
    font-size: 1rem;
}

.contact-details li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #505050;
}

/* Contact Form Styling */
.contact-form .form-label {
    font-weight: 500;
    color: #282c34;
}

.contact-form .form-control {
    border: 1px solid #dcdcdc;
    padding: 10px;
    font-size: 0.95rem;
}

.contact-form .form-control:focus {
    border-color: rgb(245, 96, 0);
    box-shadow: 0 0 5px rgba(245, 96, 0, 0.3);
}

.contact-form .btn {
    background-color: #f56000;
    color: #ffffff;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form .btn:hover {
    background-color: #ff9915;
    transform: translateY(-2px);
}

.btn {
    font-family: -apple-system, system-ui, BlinkMacSystemFont;
    font-weight: 600;
}

.btn-primary-custom {
    background-color: #f56000;
    border-color: #f56000;
}

.btn-primary-custom:hover {
    background-color: #f58e49;
    border-color: #f58e49;
}

.btn-outline-primary-custom {
    color: #f56000;
    border-color: #f56000;
}

.btn-outline-primary-custom:hover {
    color: #fff;
    border-color: #f58e49;
    background-color: #f58e49;
}

.text-bold {
    font-weight: bold !important;
}

.text-italic {
    font-style: italic;
}

#footer-sect-01{
    margin-top: 150px;
    padding-top: 0px !important;
}

#footer-sect-02{
    margin-top: 200px;
}

#footer-sect-03{
    margin-top: 200px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .carousel-item {
        height: 300px;
    }

    .about-section {
        text-align: center;
    }

    .company-story {
        text-align: center;
    }

    #footer-sect-01{
        margin-top: 450px;
        padding-top: 0px !important;
    }

    #footer-sect-02{
        margin-top: 20px;
    }

    #footer-sect-03{
        margin-top: 20px;
    }
    
    .colorSectionNav{
        color: var(--primary-color) !important;
        font-weight: bold;
    }
}
