:root {
    --primaryColor: #0f75bc;
    --secondaryColor: #64748b;
    --titleColor: #0f172a;
    --labelColor: #334155;
    --borderColor: #e2e8f0;
    --lightBgColor: #efefef;
    --darkTextColor: #94a3b8;
    --lightPrimaryBgColor: #ecf5fb;
    --whiteColor: #ffffff;
    --primaryFonts: "DM Sans", sans-serif;
}

/* Reset Styles */
body {
    font-family: var(--primaryFonts);
    font-optical-sizing: auto;
    font-style: normal;
}
ul, h1, h2, h3, h4, h5, h6, p, a {
    margin: 0;
    padding: 0;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;  
}

/* Utility Classes */
.bgLight {
    background-color: var(--lightPrimaryBgColor) !important;
}
.z-2 {
    z-index: 2;
} 
button:focus {
    outline: none !important;
    box-shadow: none !important;
} 
.maxWidthHalf {
    max-width: 650px;
}   
.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 24px;
}   
.sectionPadding {
    padding-block: 80px;
}
.sectionTitle {
    font-size: 36px;
    font-weight: 700;
    color: var(--titleColor);
}
.subTitle {
    font-size: 18px;
    font-weight: 400;
    color: var(--secondaryColor);
} 
.cardTitle {
    font-size: 24px;
    font-weight: 600;
    color: var(--titleColor);
}
.smallTitle {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primaryColor);
    position: relative;
    display: inline-flex;
    background:var(--lightBgColor);
    padding: 4px 16px;
    border-radius: 10px;
    line-height: normal;
}
.cardText {
    font-size: 16px;
    color: var(--secondaryColor);
}
.secondaryTextColor {
    color: var(--secondaryColor);
}
.primaryTextColor {
    color: var(--primaryColor);
}
.customList  li {
    position: relative;
    padding-left: 24px;
    font-size: 16px;
    font-weight: 500;
    padding-block: 4px;
    color: var(--labelColor);
}
.customList li::after {
    content: '';
    position: absolute;
    height: 6px;
    width: 14px;
    border-bottom: 2px solid var(--primaryColor);
    left: 0;
    border-left: 2px solid var(--primaryColor);
    transform: rotate(-45deg);
    top: 13px;
}
.listColumns {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 8px;
}  
.mainCard {
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 24px;
    height: 100%;
}
.mainCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}   
.mainCard span {
    color: var(--primaryColor);
    background-color: var(--lightBgColor);
    padding: 4px;
    border-radius: 10px;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    width: 48px;
    height: 48px;
    font-weight: bold;
}  
.btnPrimary {
    background: var(--primaryColor);
    color: var(--whiteColor);
    border-radius: 8px;
    font-size: 16px;
    padding: 8px 16px;
    transition: all 0.3s ease;
}
.btnPrimary:hover {
    opacity: .8;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
}   

/* Header Styles */
.mainHeader {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    z-index: 99;
    width: 100%;
    padding: 10px 0;
    top: 0;
    border-bottom: 1px solid var(--borderColor);
}
.mainHeader .collapse {
    flex-grow: inherit;
}
.navbar-nav .nav-link {
    color: var(--secondaryColor);
    font-weight: 500;
    padding: 10px 16px !important;
}
.navbar-nav .nav-link.active, .navbar-nav .show>.nav-link {
    color: var(--primaryColor);
}

/* Home Banner Styles */
.homeBanner {
    background-image: url(../images/banner04.jpg);
    background-position: center center;
    background-size: cover;
    position: relative;
    height: calc(100vh - 87px);
}
section.homeBanner:after {
    background-image: linear-gradient(
        to right,
        rgba(15, 23, 42, 0.9),
        rgba(15, 23, 42, 0.7),
        transparent
    );
    position: absolute;
    content: '';
    width: 100%;
    inset: 0;
}
.homeBanner .sectionTitle {
    font-size: 60px;
    line-height: 1.1;
    font-weight: 900;
}
.homeBanner .btnPrimary {
    font-size: 18px;
    padding: 12px 24px;
}   

/* Products Section */
.productCard {
    cursor: pointer;
}
.productCardImg {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.productCardImg::after {
    content: '';
    position: absolute;
    transition: opacity 0.3s ease;
    background: linear-gradient(  to top,  rgba(0,0,0,0.8) 0%,  rgba(0,0,0,0.5) 50%,  rgba(0,0,0,0.0) 100%);
    height: 70%;
    width: 100%;
    inset: 0;
    top: auto;
}
.productCardImg >  img {
    aspect-ratio: 3/4;
    object-fit: cover;
    transition: all 0.3s ease;
}
.productCard:hover .productCardImg > img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}   
.productCardBody {
    position: absolute;
    bottom: 0;
    padding: 16px 20px;
    z-index: 2;
}
.productCardBody .productCardText {
    font-size: 16px;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    color: var(--darkTextColor);
    opacity: 0;
    position: relative;
    top: 20px;
    transition: all 0.3s ease;
}
.productCard:hover .productCardBody .productCardText {
    opacity: 1;
    top: 0;
}
.productCardBody a {
    color: var(--primaryColor);
    text-decoration: none;
    font-weight: 700;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Exported Products */
.exportProducts .productCardImg >  img {
    aspect-ratio: 3/2;
    object-fit: cover;
} 
.productCardImg::after {
    height: 100%;
}
.exportProducts .productCardText {
    -webkit-line-clamp: 3;
    visibility: visible;
    opacity: 1;
    top: 0;
    color: var(--secondaryColor);
}

/* Contact Us Page */
.adderssDetails .adderssCol span {
    background: var(--whiteColor);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primaryColor);
}
.adderssDetails .adderssCol {
    display: flex;
    gap: 24px;
    align-items: self-start;
    margin-top: 30px;
}
.adderssDetails .adderssCol h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--titleColor);
}
.adderssDetails .adderssCol p {
    font-size: 16px;
    color: var(--secondaryColor);
    margin-top: 2px;
}
.formGroup {
    margin-bottom: 20px;
}
.formGroup label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--labelColor);
    margin-bottom: 6px;
}  
.formGroup .form-control, .formGroup .form-select {
    height: 42px;
    font-size: 14px;
    border-color: var(--borderColor);
}
.formGroup .form-control:focus, .formGroup .form-select:focus {
    box-shadow: none;
    border-color: var(--primaryColor);
}
.formGroup textarea.form-control {
    height: auto;
    min-height: 100px;
    resize: vertical;
}   

/* Footer Styles */
.siteFooter {
    background-color: var(--titleColor);
    padding: 60px 0 20px;
}
.siteFooter .footerTitle {
    font-size: 18px;
    color: #ddd;
}
.siteFooter .footerLinks li {
    margin-bottom: 8px;
}   
.siteFooter .footerLinks li a, .siteFooter p {
    color: #94a3b8;
    font-size: 16px;
    transition: color 0.3s ease;
} 
.siteFooter .footerLinks li a:hover {
    color: var(--primaryColor);
}
.copyrightText {
    border-top: 1px solid #333;
    padding-top: 20px;
}

/* Breadcrumb Styles */
.breadcrumbSection {
    height: auto;
    padding: 50px 0;
}
.breadcrumb-item {
    font-size: 32px;
    font-weight: 600;
}
.breadcrumb-item a {
    color: var(--primaryColor);
}
.breadcrumb-item.active {
    color: var(--darkTextColor);
}

/* Responsive Styles */
@media (max-width: 1439.98px) {
    .homeBanner .sectionTitle {
        font-size: 42px;
    }
    .sectionTitle {
        font-size: 32px;
    }
    .subTitle {
        font-size: 16px;
    }
    .cardTitle {
        font-size: 22px;
    }
    .sectionPadding {
        padding-block: 70px;
    }
}

@media (max-width: 1199.98px) {
    .homeBanner .sectionTitle {
        font-size: 36px;
    }
    .sectionTitle {
        font-size: 28px;
    }
    .subTitle, .cardText, .productCardBody .productCardText {
        font-size: 14px;
    }
    .productCardTitle {
        font-size: 18px;
    }
    .cardTitle {
        font-size: 20px;
    }
    .sectionPadding {
        padding-block: 60px;
    }
    .productCardBody .productCardText {
        opacity: 1;
        top: 0;
    }
    .homeBanner {
        height: auto;
        padding: 50px 0;
    }
    .btnPrimary {
        font-size: 14px;
    }
    .homeBanner .btnPrimary {
        font-size: 16px;
        padding: 8px 16px;
    }
    .navbar-brand img, .siteLogo {
        width: 150px;
    }
    .siteFooter {
        padding: 40px 0 20px;
    }
    .siteFooter .footerTitle, .adderssDetails .adderssCol h5 {
        font-size: 16px;
    }
    .siteFooter .footerLinks li a, .siteFooter p, .adderssDetails .adderssCol p {
        font-size: 14px;
    }
    .breadcrumb-item {
        font-size: 24px;
    }
    .breadcrumbSection {
        padding: 36px 0px;
    }
}

@media (max-width: 991.98px) {
   .offcanvas {
        width: 300px !important;
        height: 100vh;
   }
   .homeBanner .sectionTitle {
        font-size: 30px;
   }
   .sectionTitle {
        font-size: 26px;
    }
   .sectionPadding {
        padding-block: 50px;
    }
}

@media (max-width: 767.98px) {
    .statsSection .row div:nth-child(even) div {
        border-right: none !important;
    }
    .listColumns {
        grid-template-columns: repeat(1, 1fr);
    }
    .navbar-brand img, .siteLogo {
        width: 140px;
    }
    .sectionPadding {
        padding-block: 40px;
    }
}

@media (max-width: 575.98px) {
    .statsSection .row div div {
        border-right: none !important;
    }
}