body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #2c7da0, #2a9d8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.btn-gradient {
    background: linear-gradient(90deg, #2c7da0, #2a9d8f);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 157, 143, 0.2);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 157, 143, 0.3);
    color: white;
}

/* Navbar Styles */

.navbar {
    padding: 20px 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #2c7da0;
}

/* Contact Link Styling */
.contact-link {
    display: flex;
    align-items: center;
    color: #2c7da0;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(42, 157, 143, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 50px;
}

.contact-link:hover {
    color: #2a9d8f;
}

.contact-link:hover:before {
    width: 100%;
}

.contact-icon {
    margin-left: 8px;
    transition: all 0.3s ease;
}

.contact-link:hover .contact-icon {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .navbar {
        padding: 15px 0;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .contact-link {
        margin-top: 10px;
        justify-content: center;
    }
}




.btn-white {
    background: white;
    color: #2c7da0;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: #2a9d8f;
}

/* Footer */
.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 80px 0 30px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 30px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #2c7da0, #2a9d8f);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #2a9d8f;
    padding-left: 5px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 15px;
    color: #2a9d8f;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 50px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero {
        padding: 150px 0 80px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-image {
        margin-top: 50px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

.page-heading {
    color: blue;
}






:root {
    --primary-color: #2c7da0;
    --primary-light: #a8dadc;
    --primary-dark: #1d3557;
    --secondary-color: #2a9d8f;
    --accent-color: #e63946;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --success-color: #2a9d8f;
    --warning-color: #e9c46a;
    --danger-color: #e63946;
    --info-color: #457b9d;
    --purple-color: #8338ec;
    --border-radius: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: var(--dark-color);
}

/* Products Section Styling */
.products-container {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Section Title Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Card Styling */
.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 0 0 20px 0;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    z-index: 0;
}

.product-card.hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card.hover::before {
    height: 100%;
    opacity: 0.05;
}

/* Product Card Image Styling - Updated */
.product-image {
    width: 100%;
    height: auto;
    min-height: 200px;
    overflow: hidden;
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    position: relative;
    background-color: #f8f9fa;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    display: block;
    padding: 10px;
}

.product-card.hover .product-image img {
    transform: scale(1.03);
}

/* Ensure proper spacing after the image */
.product-title {
    margin-top: 15px;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 20px 20px 10px;
    color: var(--dark-color);
    transition: var(--transition);
}

.product-card.hover .product-title {
    color: var(--primary-color);
}

.product-description {
    color: #6c757d;
    margin: 0 20px 20px;
    flex-grow: 1;
}

.product-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px 0;
    margin: 0 20px;
    border-top: 1px solid #eee;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
}

.product-card.hover .product-action {
    color: var(--secondary-color);
}

.product-action i {
    transition: var(--transition);
}

.product-card.hover .product-action i {
    transform: translateX(5px);
}

.external-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    z-index: 2;
}

.product-card.hover .external-badge {
    background: var(--primary-color);
    color: white;
    transform: rotate(45deg);
}

/* Contact Section Styling */
.contact-container {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-info {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    z-index: 0;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.contact-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.contact-cta {
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-divider {
    width: 50px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.contact-details {
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-item i {
    font-size: 1.2rem;
    margin-right: 15px;
}

.contact-form {
    padding: 40px;
    background: white;
    height: 100%;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #e1e1e1;
    transition: var(--transition);
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.2);
    border-color: var(--secondary-color);
}

.form-label {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.btn-submit {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 25px;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
    color: white;
}

/* Modal Styling */
.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-weight: 600;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px;
}

#externalSite {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
    color: white;
    display: inline-flex;
    align-items: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(42, 157, 143, 0.3);
    color: white;
}

.btn-secondary {
    background: #f1f1f1;
    color: #333;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: #e1e1e1;
    color: #333;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .contact-info, .contact-form {
        padding: 30px;
    }
    
    .contact-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .products-container, .contact-container {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-title {
        font-size: 1.2rem;
    }
    
    .contact-info {
        padding-bottom: 30px;
    }
}
