* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f5f5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar Styles */
.top-bar {
    background-color: #024611;
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
}

.location-finder {
    display: flex;
    align-items: center;
    gap: 10px;
}

.location-finder i {
    font-size: 14px;
}

.zip-input {
    display: flex;
    align-items: center;
    margin-left: 10px;
    background-color: white;
    border-radius: 3px;
    overflow: hidden;
}

.zip-input input {
    border: none;
    padding: 5px 10px;
    font-size: 12px;
    width: 120px;
    outline: none;
}

.zip-input button {
    background-color: #4a7c59;
    border: none;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zip-input button:hover {
    background-color: #5a8d69;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-link {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.top-link:hover {
    opacity: 0.8;
}

.login-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    transition: opacity 0.3s;
}

.login-link:hover {
    opacity: 0.8;
}

.login-link i {
    font-size: 16px;
}

/* Main Header Styles */
.main-header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.main-section{
    background-image: url('assets/images/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.705);
    height: 80vh;
}
.main-section-content{
    width: 450px;
    padding-left: 30px;
    padding-top: 50px;
}
.main-section-content h3{
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    color: #fff;
    margin-bottom: 10px;
}
.main-section-content h1{
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    font-weight: 800;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.main-section-content h1::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #e9dd38;
    width: 320px;
}
.main-section-content p{
    margin-top: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    font-family: 'montserrat';
    line-height: 1.4;
    text-shadow: 1px 1px 0.5px #000;
    margin-bottom: 50px;
}
.main-button{
    background-color: #fff;
    padding: 10px 32px;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #fff;
}
.main-button-1{
    background-color: transparent;
    padding: 10px 32px;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    border: 2px solid #fff;
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo a {
    display: inline-block;
    text-decoration: none;
    border: none;
}

.logo img {
    
    width: 145px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 24px;
    font-weight: bold;
    color: #2d5f3f;
    font-style: italic;
}

.logo-sub {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Navigation Styles */
.main-nav {
    flex: 1;
    margin: 0 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    padding-top: 15px;
}

.nav-item {
    position: relative;
    font-size: 14px;
    font-weight: 500;
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

/* Keep dropdown open when hovering over it */
.nav-item.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 8px 0;
    margin-top: 0;
    list-style: none;
    z-index: 1000;
}

/* Bridge the gap with a pseudo-element to prevent hover loss */
.nav-item.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 8px;
    background: transparent;
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #024611;
}

/* Responsive dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background-color: transparent;
    }
    
    .nav-item.dropdown:hover .dropdown-menu,
    .nav-item.dropdown:active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 8px 15px;
        border-top: 1px solid #e0e0e0;
    }
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 0;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2d5f3f;
}

.nav-link i {
    font-size: 10px;
    color: #666;
}

.nav-link sup {
    font-size: 8px;
    vertical-align: super;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nutrien-hub-btn {
    background-color: #b8860b;
    color: white;
    padding: 8px 16px;
    border-radius: 3px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background-color 0.3s;
}

.nutrien-hub-btn:hover {
    background-color: #9a7109;
}

.nutrien-hub-btn i {
    font-size: 10px;
}

.search-btn {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-btn:hover {
    color: #2d5f3f;
}
.bread-content{
    padding: 0 40px;
    text-align: center;
}

.bread-content h3{
    color: #fff;
    padding-top: 40px;
    font-size: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.bread-content h3::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1.5px;
    background-color: #fff;
}

.bread-content h1 a{
    text-decoration: none;
    color:#2d5f3f;
    font-weight: 600;
    padding-right: 5px;
}

/* Breadcrumb Styles */
.bread-crumb {
    height: 180px;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
}

.bread-crumb h1 {
    display: inline;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-transform: capitalize;
}

.bread-crumb h1:first-child {
    color: #2d5f3f;
    font-weight: 600;
}

.bread-crumb h1:last-child {
    color: #333;
    font-weight: 600;
    padding-left: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .main-nav {
        margin: 0 20px;
    }
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 5px;
    z-index: 1002;
    position: relative;
}

/* Mobile Menu Close Button - Hidden on large screens */
.mobile-menu-close {
    display: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        position: relative;
    }
    
    .logo {
        flex: 1;
    }
    
    .logo img {
        width: 120px;
        height: auto;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
        align-self: center;
    }
    
    .header-actions {
        display: none;
    }
    
    /* Mobile Sidebar Menu */
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: #fff;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 0;
        margin: 0;
        order: unset;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        background: none;
        border: none;
        font-size: 24px;
        color: #333;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        transition: color 0.3s;
    }
    
    .mobile-menu-close:hover {
        color: #024611;
    }
    
    .nav-menu {
        flex-direction: column;
        text-align: left;
        gap: 0;
        padding-top: 60px;
        width: 100%;
        margin: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        margin-top: 0;
        padding: 0;
        background-color: #f8f9fa;
        border-radius: 0;
        width: 100%;
    }
    
    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu a {
        padding: 12px 40px;
        border-top: 1px solid #e0e0e0;
    }
}

@media (max-width: 480px) {
    .top-bar {
        display: none;
    }
    
    .logo img {
        width: 100px;
    }
    
    .header-actions {
        display: none;
    }
}
.contact-section {
    padding: 60px 20px;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.container-contact{
    margin: 0 auto;
    max-width: 1100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Contact Info */
.contact-info {
    padding-right: 40px;
}

.contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 13px;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: 'montserrat';
    font-weight: 500;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.info-item-half {
    display: flex;
    align-items: flex-start;
}

.info-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:  #2d5f3f;
    font-size: 18px;
    margin-right: 15px;
    border: 2px solid  #2d5f3f;
    border-radius: 50%;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 13px;
    color: #0f0f0f;
    line-height: 1.6;
    font-family: 'montserrat';
    font-weight: 500;
}

.hours-row {
    display: flex;
    gap: 40px;
}

.hours-item {
    display: flex;
    flex-direction: column;
}

.day {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 4px;
}

.time {
    font-size: 14px;
    color: #6c757d;
}

/* Right Column - Contact Form */
.contact-form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    margin-bottom: 8px;
}

.required {
    color: #ff4444;
}

/* Input styles - Bottom border only */
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 0;
    font-size: 14px;
    color: #333;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #dee2e6;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #0066ff;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #000000;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #000000;
    font-size: 13px;
    font-weight: 500;
    font-family: 'montserrat';
}

.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 400;
    opacity: 1;
}

.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #999;
    font-size: 14px;
    font-weight: 400;
}

/* Input with icon container */
.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 14px;
}

.input-with-icon input {
    padding-right: 30px;
}

/* Textarea specific styles */
.form-group textarea {
    resize: vertical;
    height: 40px;
    min-height: 40px;
    padding: 8px 0;
    font-family: inherit;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 14px 32px;
    background-color: #024611;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
    font-family: 'montserrat';
}

.submit-btn:hover {
    background-color: #2d5f3f;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-row .form-group {
        margin-bottom: 25px;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
    }
}
/* Footer Styles */
.site-footer {
    background-color: #024611;
    color: #ffffff;
    padding: 60px 0 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Logo and Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.logo-text {
    font-size: 36px;
    font-weight: bold;
    color: #ffffff;
    font-style: italic;
    line-height: 1;
}

.logo-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-top: 5px;
}

.company-address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Footer Links Section */
.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    min-width: 150px;
}

.footer-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: #ffffff;
    padding-left: 0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
    padding-left: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Social and Visit Section */
.footer-bottom-section {
    display: flex;
    gap: 80px;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Social Media Section */
.social-section {
    display: flex;
    flex-direction: column;
}

.social-icons {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.social-icons i {
    font-size: 16px;
}

/* Visit Section */
.visit-section {
    display: flex;
    flex-direction: column;
}

.zip-search {
    display: flex;
    margin-top: 15px;
    margin-bottom: 15px;
    max-width: 200px;
}

.zip-input {
    flex: 1;
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-right: none;
    color: #ffffff;
    font-size: 13px;
    outline: none;
    transition: border-color 0.3s;
}

.zip-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 1px;
}

.zip-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.zip-submit {
    padding: 10px 15px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
}

.zip-submit:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.zip-submit i {
    font-size: 14px;
}

.locations-link {
    color: #ffd700;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.3s;
}

.locations-link:hover {
    color: #ffed4a;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-nav {
    display: flex;
    gap: 30px;
}

.country-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.country-nav a:hover {
    color: #ffffff;
}

.copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 250px 1fr;
        gap: 60px;
    }
    
    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-section {
        grid-template-columns: repeat(3, 1fr);
        margin-top: 20px;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .country-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 28px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        width: 32px;
        height: 32px;
    }
    
    .country-nav {
        gap: 15px;
    }
}
.about-container{
    margin: 0 auto;
    max-width: 1100px;
    padding: 40px 20px;
}
.about-section{
    margin-top: 50px;
    margin-bottom: 30px;
}

.about-content {
    width: 100%;
}

.about-content .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content .col-md-6 {
    width: 100%;
}

.about-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #024611;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 13px;
    line-height: 1.8;
    color: #000000;
    font-family: 'montserrat';
    font-weight: 400;
}

.about-content img {
    width: 100%;
    height: auto; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for About Section */
@media (max-width: 768px) {
    .about-content .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h1 {
        font-size: 28px;
    }
}
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1050px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 90px;
    padding-top: 20px;
}

.card {

    color: black;
    padding: 40px 30px;
    position: relative;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
}

.card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: #0246110a;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    z-index: -1;
   
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 8px 15px rgba(0, 0, 0, 0.15);
}

/* Alternative colors for variety */
.card.blue {
    background: #efefef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card.purple {
    background: #efefef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

.card-title {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'montserrat';
}

.card-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.95;
    flex-grow: 1;
}

.card-button {
    background: white;
    color: #DC2626;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.card.blue .card-button {
    color: #2563EB;
}

.card.purple .card-button {
    color: #7C3AED;
}

.card-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: 1fr;
    }
}
.service-block4 {
    position: relative;
    border: 1px solid #f7f7f7;
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(50, 50, 50, 0.16);
    border-radius: 5px;
    overflow: hidden;
    padding: 30px
}

.service-block4:before {
    display: none;
}

.service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;

    margin-bottom: 20px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.service-block4:hover .service-image img {
    transform: scale(1.05);
}

.service-block4 .service-icon {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 1;
    text-align: center
}

.service-block4 i {
    color: #86bc42;
    font-size: 38px;
    line-height: normal;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    margin-bottom: 0
}

.service-block4:hover i {
    color: #86bc42;
}

.service-block4 .service-desc {
    position: relative
}
.service-block4 .service-desc p{
    font-size: 13px;
    line-height: 1.6;
    font-family: 'montserrat';

    
    
}
.service-block4 .service-desc h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600
}

.service-block4 .service-desc h5 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 500
}

.service-block4 .service-desc h5:after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: #86bc42;
    margin-top: 10px;
    margin-bottom: 15px;
    -moz-transition-duration: .4s;
    -ms-transition-duration: .4s;
    -webkit-transition-duration: .4s;
    -o-transition-duration: .4s;
    transition-duration: .4s
}

.service-block4 p {
    margin-top: 25px;
    padding-right: 10px;
    margin-bottom: 0;
    font-size:13px;
}

@media screen and (max-width: 1199px) {
    .service-block4 .service-desc h4 {
        font-size: 16px;
        margin-bottom: 5px
    }
    .service-block4 p {
        padding-right: 10px;
        margin-top: 20px
    }
    .service-block4 i {
        font-size: 34px
    }
}

@media screen and (max-width: 991px) {
    .service-block4 {
        padding: 25px
    }
    .service-block4 .service-desc h4 {
        font-size: 15px
    }
    .service-block4 i {
        font-size: 32px
    }
    .service-block4 p {
        margin-top: 15px;
        padding-right: 10px
    }
    .service-image {
        height: 160px;
        margin-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .service-block4 {
        padding: 20px
    }
    .service-block4 i {
        font-size: 28px
    }
    .service-block4 .service-icon {
        top: 13px;
        right: 12px
    }
    .service-image {
        height: 150px;
        margin-bottom: 15px;
    }
}

.margin-30px-bottom {
    margin-bottom: 30px;
}

/* Services Section Styles */
section {
    padding: 60px 0;
}

/* Services Section - Row and column grid system */
section .row.mt-60 {
    display: flex !important;
    flex-wrap: wrap !important;
    margin-left: -15px;
    margin-right: -15px;
}

section .row.mt-60 > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

/* Services Section - Column classes for service-block4 */
/* For Large screens (992px and above) - 4 columns */
@media (min-width: 992px) {
    section .row.mt-60 .col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
    
    section .row.mt-60 .col-lg-4 {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
    }
}

/* For Medium screens (768px to 991px) - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
    section .row.mt-60 .col-md-6,
    section .row.mt-60 .col-lg-3 {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* For Small screens (below 768px) - 1 column */
@media (max-width: 767px) {
    section .row.mt-60 .col-md-6,
    section .row.mt-60 .col-lg-3,
    section .row.mt-60 .col-lg-4,
    section .row.mt-60 .col-xs-12 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Utility classes */
.mt-60 {
    margin-top: 60px;
}

.h-100 {
    height: 100%;
}

.xs-margin-20px-bottom {
    margin-bottom: 20px;
}

.sm-margin-30px-bottom {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 40px;
}

.title-style4 {
    text-align: center;
}

.border-bottom {
    border-bottom: 1px solid #e0e0e0;
}

.padding-25px-bottom {
    padding-bottom: 25px;
}

.sm-padding-15px-bottom {
    padding-bottom: 15px;
}

.section-heading h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-heading h3 span {
    color: #86bc42;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.width-55 {
    width: 55%;
}

.sm-width-75 {
    width: 75%;
}

.xs-width-95 {
    width: 95%;
}

@media (max-width: 991px) {
    .sm-width-75 {
        width: 75%;
    }
    .sm-padding-15px-bottom {
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .xs-width-95 {
        width: 95%;
    }
    .xs-margin-20px-bottom {
        margin-bottom: 20px;
    }
}
.service-container{
    margin: 0 auto;
    max-width: 1200px;
    justify-content: center;
    align-items: center;
}
.about-us-section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.about-us-container{
   margin: 0 auto;
   max-width: 1000px;
}
.about-us-container h1{
    font-size: 35px;
    position: relative;
    padding-left: 20px;
}
.about-us-container span{
    color: #006600;
}
.about-us-container p{
    margin-top: 15px;
    padding-left: 20px;
    font-weight: 400;
    margin-bottom: 10px;
}
.about-us-container h1::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #006600 0%, #006600 50%, #cfa107 50%, #e9dd38 100%);
}
.about-us-b{
    color: #000;
    text-decoration: none;
    padding-left: 20px;
    margin-top: 20px;
    font-weight: 600;
}
.products-content h1{
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

/* Products Cards Container - Separate from about.html cards */
.products-cards-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    padding-top: 20px;
    margin-top: -160px;
}

.product-card {
    color: black;
    padding: 15px 30px;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.411);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: #fcfafa;
    clip-path: polygon(
        0 0,
        calc(100% - 50px) 0,
        100% 50px,
        100% 100%,
        0 100%
    );
    z-index: -1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 8px 15px rgba(0, 0, 0, 0.15);
}
.product-card-content img{
    width: 100px;
    margin-bottom: 10px;
}

.product-card .card-title {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    line-height: 1.2;
    font-family: 'montserrat';
}

.product-card .card-description {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.95;
    flex-grow: 1;
}

@media (max-width: 992px) {
    .products-cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-cards-container {
        grid-template-columns: 1fr;
    }
}
.products-header{
    background-color: #024611;
    padding-bottom: 100px;
}

/* Works Section - Accordion */
.works-section {
    background-color: #ffffff;
    padding: 60px 0;
}

.works-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.works-heading {
    text-align: center;
    margin-bottom: 50px;
}

.works-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #024611;
    margin: 0;
}

.works-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.works-col-left {
    width: 100%;
}

@media (min-width: 992px) {
    .works-col-left {
        width: 48%;
        flex: 0 0 48%;
    }
}

.works-col-right {
    width: 100%;
}

@media (min-width: 992px) {
    .works-col-right {
        width: 48%;
        flex: 0 0 48%;
    }
}

.works-img-content {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.works-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.works-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.works-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px;
    color: #fff;
    text-align: center;
}

.works-text h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.works-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #024611;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.works-btn:hover {
    background-color: #2d5f3f;
    color: #fff;
}

/* Accordion Styles */
.works-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.works-accordion-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.works-accordion-header {
    margin: 0;
}

.works-accordion-button {
    width: 100%;
    padding: 20px;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #024611;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background-color 0.3s ease;
    position: relative;
}

.works-accordion-button:hover {
    background-color: #f8f9fa;
}

.works-accordion-button.active {
    background-color: #f8f9fa;
    color: #024611;
}

.works-accordion-button i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #024611;
}

.works-accordion-button.active i {
    transform: rotate(180deg);
}

.works-accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}

.works-accordion-collapse.show {
    max-height: 500px;
    padding: 20px;
}

.works-accordion-body {
    padding-top: 0;
}

.works-accordion-body p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .works-row {
        flex-direction: column;
    }
    
    .works-col-left,
    .works-col-right {
        width: 100%;
    }
    
    .works-img {
        height: 300px;
    }
}

/* Services Section - Replaces Bootstrap classes */
.services-section {
    background-color: #f8f9fa;
    padding: 24px 0;
}

@media (min-width: 768px) {
    .services-section {
        padding: 48px 0;
    }
}

@media (min-width: 1200px) {
    .services-section {
        padding: 64px 0;
    }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.services-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    align-items: center;
    gap: 16px 0;
}

@media (min-width: 768px) {
    .services-row {
        gap: 20px 0;
    }
}

@media (min-width: 992px) {
    .services-row {
        gap: 0;
    }
}

.services-content-left {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 992px) {
    .services-content-left {
        width: 41.666667%;
        flex: 0 0 41.666667%;
    }
}

.services-inner-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.services-inner-col {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 1200px) {
    .services-inner-col {
        width: 91.666667%;
        flex: 0 0 91.666667%;
    }
}

.services-subtitle {
    font-size: 14px;
    color: #024611;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 1200px) {
    .services-subtitle {
        margin-bottom: 16px;
    }
}

.services-title {
    font-size: 40px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 12px;
    color: #000000;
}

@media (min-width: 1200px) {
    .services-title {
        margin-bottom: 16px;
    }
}

.services-description {
    margin-bottom: 12px;
    color: #212529;
    line-height: 1.5;
}

@media (min-width: 1200px) {
    .services-description {
        margin-bottom: 16px;
    }
}

.services-btn {
    display: inline-block;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    color: #024611;
    background-color: transparent;
    border: 2px solid #024611;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.services-btn:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: #fff;
}

.services-content-right {
    width: 100%;
    padding: 0 15px;
    overflow: hidden;
}

@media (min-width: 992px) {
    .services-content-right {
        width: 58.333333%;
        flex: 0 0 58.333333%;
    }
}

.services-cards-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    gap: 16px 0;
}

@media (min-width: 768px) {
    .services-cards-row {
        gap: 20px 0;
    }
}

.services-card-col {
    width: 100%;
    padding: 0 5px;
}

@media (min-width: 576px) {
    .services-card-col {
        width: 33.333333%;
        flex: 0 0 33.333333%;
    }
}

.services-card-col-large {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 576px) {
    .services-card-col-large {
        width: 50%;
        flex: 0 0 50%;
    }
}

.services-card {
    background-color: #fff;
    border: 0;
    border-bottom: 3px solid #024611;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    border-radius: 0.25rem;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.services-card:hover {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.services-card-body {
    text-align: center;
    padding: 16px;
}
.services-card-body img{
    width: 200px;
    object-fit: cover;
    margin-bottom: 10px;
}

@media (min-width: 1400px) {
    .services-card-body {
        padding: 48px;
    }
}

.services-icon {
    color: #024611;
    margin-bottom: 16px;
    display: block;
}

.mb-4 {
    margin-bottom: 16px;
}

.services-card-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000000;
}

.services-card-text {
    margin-bottom: 16px;
    color: #000000;
    line-height: 1.5;
    font-size: 14px;
    font-weight: 400;
}

.services-card-link {
    font-weight: 400;
    text-decoration: none;
    color: #000000;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s ease;
    font-size: 13px;
}

.services-card-link:hover {
    color: #024611;
}

.services-card-link svg {
    transition: transform 0.3s ease;
}

.services-card-link:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .services-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .services-card-col,
    .services-card-col-large {
        width: 100%;
        flex: 0 0 100%;
    }
    
    .services-title {
        font-size: 26px;
    }
    .services-description{
        font-size: 13px;
    }
    .services-btn{
        font-size: 13px;
        margin-bottom: 30px;
    }
}
#accordion_5{
    padding: 70px 0;
    background-color: #000;
}
#accordion_5 .accordion .accordion-button::after{
    content: "\f64d";
    font-family: bootstrap-icons !important;
    background: none;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
#accordion_5 .accordion .accordion-button:not(.collapsed)::after{
    content: "\f63b";
    color: #a283b4;
}
#accordion_5 .accordion .accordion-button, #accordion_5 .accordion .accordion-body{
    padding-left: 45px;
    background-color: #000;
    box-shadow: none;
    border-radius: 0;
}
#accordion_5 .accordion .accordion-button{
    color: #fff;
    background: #252525;
}
#accordion_5 .accordion .accordion-body p{
    color: #fff;
    margin: 0;
    opacity: 0.7;
}
#accordion_5 .accordion .accordion-item{
    border-radius: 0;
    margin-bottom: 30px;
    border: 0px solid #000;
    background-color: #000;
}
#accordion_5 .heading{
    text-align: center;
    margin-bottom: 30px;
}
#accordion_5 .heading h2{
    margin-bottom: 50px;
    color: #fff;
}
#accordion_5 .img_content{
    position: relative;
}
#accordion_5 .img_content img{
    width: 100%;
    min-height: 400px;
    object-fit: cover;
}
#accordion_5 .img_content .text{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    width: 80%;
    justify-content: space-between;
    background: #333;
    padding: 25px;
    border-radius: 10px;
    color: #fff;
    align-items: center;
}
#accordion_5 .img_content .text h4{
    margin: 0;
    text-transform: capitalize;
}
#accordion_5 .img_content .text a.btn{
    border-radius: 5px;
    background: #333;
    border: 1px solid #6b6b6b;
    padding: 10px 25px;
    transition: all .4s;
    font-weight: 600;
}
#accordion_5 .img_content .text a.btn:hover{
    background: #a283b4;
    border-color: #a283b4;
    color: #fff;
}
#accordion_5 .accordion .accordion-item:last-child{
    margin-bottom: 0;
}
@media (max-width: 991px){
    #accordion_5 .img_content{
       margin-bottom: 30px;
   }
}
 /* Clients Section */
 .clients-section {
    padding: 70px 40px;
    background-color: #ffffff;
}

.clients-container {
    max-width: 1200px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

.clients-label {
    font-size: 12px;
    font-weight: 600;
    color: #024611;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.clients-title {
    
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

/* Logos Row */
.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    transition: all 0.3s ease;
    
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.client-logo img {
    max-width: 130px;
    max-height: 50px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 900px) {
    .clients-section {
        padding: 60px 30px;
    }

    .clients-logos {
        gap: 35px;
    }

    .client-logo img {
        max-width: 110px;
        max-height: 45px;
    }
}

@media (max-width: 600px) {
    .clients-section {
        padding: 50px 20px;
    }

    .clients-title {
        font-size: 24px;
    }

    .clients-logos {
        gap: 25px;
    }

    .client-logo {
        padding: 10px 15px;
    }

     .client-logo img {
         max-width: 90px;
         max-height: 40px;
     }
}

/* Calix Hero Section */
.calix-hero-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.calix-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.calix-hero-content {
    width: 100%;
}

.calix-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.calix-hero-col-image {
    width: 250px;
    object-fit: cover;
}

.calix-hero-col-text {
    width: 100%;
}

.calix-hero-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calix-hero-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.calix-hero-text h1 {
    font-size: 25px;
    font-weight: 700;
    color: #024611;
    margin-bottom: 25px;
    line-height: 1.2;
}
.calix-list li{
    font-size: 13px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
    color: #000;
}
.calix-hero-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
}

.calix-hero-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .calix-hero-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calix-hero-text h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .calix-hero-section {
        padding: 40px 0;
    }
    
    .calix-hero-row {
        gap: 30px;
    }
    
    .calix-hero-text h1 {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .calix-hero-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .calix-hero-image img {
        max-width: 100%;
    }
}

/* Calix Product Detail Page - Custom classes to avoid conflicts */
.calix-product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.calix-product-card {
    margin-bottom: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid transparent;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calix-product-body {
    padding: 30px;
}

.calix-product-title {
    font-size: 28px;
    font-weight: 700;
    color: #024611;
    margin-bottom: 10px;
    line-height: 1.2;
}

.calix-product-subtitle {
    font-weight: 300;
    margin-bottom: 30px;
    color: #8898aa;
    font-size: 16px;
}

.calix-product-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.calix-product-col-image {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .calix-product-col-image {
        width: 41.666667%;
        flex: 0 0 41.666667%;
        margin-bottom: 0;
    }
}

.calix-product-col-content {
    width: 100%;
    padding: 0 15px;
}

@media (min-width: 768px) {
    .calix-product-col-content {
        width: 58.333333%;
        flex: 0 0 58.333333%;
    }
}

.calix-product-col-full {
    width: 100%;
    padding: 0 15px;
    margin-top: 30px;
}

.calix-product-image-box {
    text-align: center;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
}

.calix-product-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.calix-product-section-title {
    font-size: 20px;
    font-weight: 600;
    color: #024611;
    margin-top: 30px;
    margin-bottom: 15px;
}

.calix-product-section-title:first-of-type {
    margin-top: 0;
}

.calix-product-body p {
    font-size: 13px;
    line-height: 1.5;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
}

.calix-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.calix-list li {
    font-size: 13px;
    font-family: 'montserrat', sans-serif;
    font-weight: 500;
    color: #000;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.calix-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    color: #86bc42;
}

.calix-product-table-wrapper {
    overflow-x: auto;
    margin-top: 20px;
}

.calix-product-table {
    width: 100%;
    border-collapse: collapse;
}

.calix-product-table tbody tr:nth-of-type(odd) {
    background-color: #f3f8fa !important;
}

.calix-product-table td {
    border-top: 0px solid #dee2e6 !important;
    color: #728299 !important;
    padding: 12px 15px;
    font-size: 14px;
}

.calix-product-table td:first-child {
    font-weight: 600;
    width: 40%;
}

.text-success {
    color: #86bc42 !important;
}

/* Responsive */
@media (max-width: 767px) {
    .calix-product-container {
        padding: 20px 15px;
    }
    
    .calix-product-body {
        padding: 20px;
    }
    
    .calix-product-title {
        font-size: 24px;
    }
    
    .calix-product-section-title {
        font-size: 18px;
        margin-top: 25px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES FOR SMALL DEVICES
   ============================================ */

/* Top Bar Responsive */
@media (max-width: 768px) {
    .top-bar {
        font-size: 11px;
        padding: 6px 0;
    }
    
    .top-bar .container {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .top-bar-right {
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .top-link {
        font-size: 11px;
    }
    
    .login-link span {
        display: none;
    }
    
    .location-finder span {
        font-size: 10px;
    }
}

/* Main Hero Section Responsive */
@media (max-width: 768px) {
    .main-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .main-section-content {
        width: 100%;
        max-width: 100%;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 30px;
    }
    
    .main-section-content h3 {
        font-size: 10px;
        letter-spacing: 1px;
    }
    
    .main-section-content h1 {
        font-size: 38px;
        line-height: 1.3;
    }
    
    .main-section-content h1::after {
        width: 100%;
        max-width: 250px;
    }
    
    .main-section-content p {
        font-size: 13px;
        margin-bottom: 30px;
    }
    
    .main-button,
    .main-button-1 {
        padding: 8px 24px;
        font-size: 13px;
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .main-section {
        height: 60vh;
        min-height: 450px;
    }
    
    .main-section-content {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 20px;
    }
    
    .main-section-content h1 {
        font-size: 32px;
    }
    
    .main-section-content h1::after {
        max-width: 200px;
    }
    
    .main-button,
    .main-button-1 {
        padding: 8px 16px;
        font-size: 12px;
        display: inline-block;
        width: auto;
        text-align: center;
        margin-right: 8px;
        margin-bottom: 10px;
    }
}

/* About Us Section Responsive */
@media (max-width: 768px) {
    .about-us-section {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .about-us-container {
        padding: 0 20px;
    }
    
    .about-us-container h1 {
        font-size: 28px;
        padding-left: 15px;
        line-height: 1.3;
    }
    
    .about-us-container p {
        padding-left: 15px;
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-us-b {
        padding-left: 15px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-us-container h1 {
        font-size: 25px;
        padding-left: 12px;
    }
    
    .about-us-container h1::before {
        width: 3px;
    }
    
    .about-us-container p {
        padding-left: 12px;
        font-size: 13px;
    }
    
    .about-us-b {
        padding-left: 12px;
    }
}

/* Products Section Responsive */
@media (max-width: 768px) {
    .products-header {
        padding-bottom: 80px;
    }
    
    .products-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .products-cards-container {
        gap: 20px;
        padding: 20px;
        margin-top: -100px;
    }
    
    .product-card {
        padding: 15px 20px;
        min-height: 180px;
    }
    
    .product-card-content img {
        width: 80px;
    }
    
    .product-card .card-title {
        font-size: 13px;
    }
    
    .product-card .card-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .products-header {
        padding-bottom: 60px;
    }
    
    .products-content h1 {
        font-size: 24px;
    }
    
    .products-cards-container {
        gap: 15px;
        padding: 15px;
        margin-top: -80px;
    }
    
    .product-card {
        padding: 12px 15px;
        min-height: 160px;
    }
    
    .product-card-content img {
        width: 70px;
    }
}

/* Breadcrumb Responsive */
@media (max-width: 768px) {
    .bread-crumb {
        height: 150px;
    }
    
    .bread-content {
        padding: 0 20px;
    }
    
    .bread-content h3 {
        font-size: 24px;
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    .bread-crumb {
        height: 120px;
    }
    
    .bread-content {
        padding: 0 15px;
    }
    
    .bread-content h3 {
        font-size: 20px;
        padding-top: 25px;
    }
}

/* Contact Section Responsive */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 15px;
    }
    
    .container-contact {
        max-width: 100%;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 12px;
        margin-bottom: 30px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .info-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 30px 10px;
    }
    
    .contact-title {
        font-size: 24px;
    }
    
    .contact-form-wrapper {
        padding: 20px 15px;
    }
    
    .info-item,
    .info-item-half {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .info-icon {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-container {
        padding: 40px 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-section {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .zip-search {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 30px 15px;
    }
    
    .footer-logo-section {
        text-align: center;
    }
    
    .footer-logo img {
        width: 120px;
    }
    
    .footer-heading {
        font-size: 12px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .country-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .copyright {
        font-size: 12px;
    }
}

/* About Section (about.html) Responsive */
@media (max-width: 768px) {
    .about-content .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content h1 {
        font-size: 28px;
    }
    
    .about-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .about-content h1 {
        font-size: 24px;
    }
    
    .about-content p {
        font-size: 13px;
    }
}

/* Services Section Responsive */
@media (max-width: 768px) {
    .service-block4 {
        padding: 20px;
    }
    
    .service-image {
        height: 150px;
    }
    
    .service-block4 i {
        font-size: 32px;
    }
}

/* Cards Container Responsive (already has some styles, adding more) */
@media (max-width: 480px) {
    .cards-container {
        padding: 20px 15px;
        gap: 20px;
    }
    
    .card {
        padding: 30px 20px;
        min-height: 220px;
    }
    
    .card-title {
        font-size: 14px;
    }
    
    .card-description {
        font-size: 13px;
    }
    
    .card-button {
        padding: 10px 24px;
        font-size: 12px;
    }
}

/* Container Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* Logo Responsive */
@media (max-width: 768px) {
    .logo img {
        width: 120px;
    }
}

@media (max-width: 480px) {
    .logo img {
        width: 100px;
    }
}

/* ============================================
   FLOATING BUTTONS - FEEDBACK & WHATSAPP
   ============================================ */

/* Floating Feedback Button */
.floating-feedback-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #024611 0%, #2d5f3f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    border: none;
    color: white;
    font-size: 24px;
}

.floating-feedback-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Floating WhatsApp Button */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    font-size: 32px;
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

/* Feedback Form Modal */
.feedback-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.feedback-modal.active {
    display: flex;
}

.feedback-modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.feedback-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.feedback-modal-header h3 {
    margin: 0;
    color: #024611;
    font-size: 24px;
    font-weight: 700;
}

.feedback-close-btn {
    background: none;
    border: none;
    font-size: 28px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.feedback-close-btn:hover {
    color: #024611;
}

.feedback-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feedback-form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.feedback-form-group input,
.feedback-form-group textarea,
.feedback-form-group select {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.feedback-form-group input:focus,
.feedback-form-group textarea:focus,
.feedback-form-group select:focus {
    outline: none;
    border-color: #024611;
}

.feedback-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.feedback-submit-btn {
    background: linear-gradient(135deg, #024611 0%, #2d5f3f 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.feedback-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 70, 17, 0.3);
}

/* Responsive for floating buttons */
@media (max-width: 768px) {
    .floating-feedback-btn,
    .floating-whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        bottom: 15px;
        right: 15px;
    }
    
    .floating-feedback-btn {
        bottom: 80px;
    }
    
    .feedback-modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .feedback-modal-header h3 {
        font-size: 20px;
    }
}