/* ========== PAGE HERO COMMON STYLES ========== */
.page-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f7 100%);
    padding: 80px 0 60px;
    position: relative;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    max-width: 600px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--text-gray);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--text-gray);
}

/* ========== CONTACT PAGE ========== */

/* HERO */

.contact-form-error {
    font-size: 13px;
    margin-top: 5px;
}

.form-success-box {
    margin-top: 20px;
    padding: 15px 18px;
    background: #e9f9ee;
    border: 1px solid #28a745;
    color: #155724;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
}

.contact-hero-section {
    background: linear-gradient(135deg, #3498db 0%, #2c7ac4 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
 
.breadcrumb-custom {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0;
    list-style: none;
    font-size: 14px;
}
 
.breadcrumb-custom li {
    color: rgba(255,255,255,0.9);
}
 
.breadcrumb-custom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}
 
.breadcrumb-custom a:hover {
    opacity: 0.8;
}
 
.breadcrumb-custom .separator {
    color: rgba(255,255,255,0.6);
}
 
.breadcrumb-custom .active {
    color: rgba(255,255,255,0.7);
}
 
.contact-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}
 
.contact-hero-text {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    max-width: 500px;
}
 
.contact-hero-image {
    position: relative;
    z-index: 2;
}
 
.hero-decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.1);
    z-index: 1;
}
 
.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: 10%;
    animation: pulse-circle 8s ease-in-out infinite;
}
 
.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: 5%;
    animation: pulse-circle 6s ease-in-out infinite;
    animation-delay: 1s;
}
 
/* Quick Contact Strip */
.quick-contact-strip {
    background: white;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}
 
.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 35px 30px;
    border-right: 1px solid #f0f0f0;
    transition: all 0.3s;
}
 
.quick-contact-item:last-child {
    border-right: none;
}
 
.quick-contact-item:hover {
    background: #f8f9fa;
}
 
.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2c7ac4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.contact-icon-wrapper i {
    font-size: 24px;
    color: white;
}
 
.contact-info-text {
    display: flex;
    flex-direction: column;
}
 
.info-label {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
    font-weight: 500;
}
 
.info-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}
 
/* Who We Are Section */
.who-we-are-section {
    /*background: #f8f9fa;*/
    padding: 90px 0;
}

.about-content{
    max-width: 520px;
}
 
.section-heading {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.section-text.short {
    font-size: 17px;
    color: var(--dark-color);
    font-weight: 500;
}

.section-text.highlight {
    font-size: 15px;
    color: var(--text-gray);
    background: #eef5fb;
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 10px;
}
 
.about-highlights {
    list-style: none;
    padding: 0;
}

.about-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
}

.about-highlights i {
    color: #28a745;
    font-size: 18px;
}
 
.about-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-image-wrapper img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
 
.rounded-custom {
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
 
.about-image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #3498db, #2c7ac4);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.1;
}
 
/* Contact Form Section */
.contact-form-section {
    background: white;
}
 
/* Get In Touch Card */
.get-in-touch-card {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 40px 35px;
    border-radius: 20px;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}
 
.git-title {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}
 
.git-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    line-height: 1.7;
}
 
.contact-details-list {
    margin-bottom: 40px;
}
 
.contact-detail-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
 
.contact-detail-item:last-child {
    border-bottom: none;
}
 
.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
 
.detail-icon i {
    font-size: 20px;
    color: white;
}
 
.detail-text {
    display: flex;
    flex-direction: column;
}
 
.detail-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
}
 
.detail-value {
    font-size: 16px;
    color: white;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.6;
}
 
.detail-value:hover {
    color: rgba(255,255,255,0.9);
}
 
/* Social Links */
.social-links-section {
    margin-top: auto;
}
 
.social-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}
 
.social-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
 
.social-link-btn {
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
 
.social-link-btn i {
    font-size: 16px;
}
 
.social-link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
}
 
.social-link-btn.facebook {
    background: #1877f2;
}
 
.social-link-btn.linkedin {
    background: #0a66c2;
}
 
.social-link-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
 
.social-link-btn.youtube {
    background: #ff0000;
}
 
/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    height: 100%;
}
 
.form-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}
 
.form-subtitle {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
}
 
.form-group-modern {
    margin-bottom: 20px;
}
 
.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
}
 
.required {
    color: #dc3545;
}
 
.form-control-modern {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}
 
.form-control-modern:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.1);
}
 
.textarea-modern {
    resize: vertical;
    min-height: 120px;
}
 
.btn-submit-modern {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #3498db, #2c7ac4);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
}
 
.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}
 
/* Map Section */
.map-section-wrapper {
    background: #f8f9fa;
    padding: 80px 0 0;
}
 
.map-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}
 
.map-section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 0;
}
 
.map-container-modern {
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}
 
/* CTA Section Adjustments */
.cta-section h2 {
    font-size: 36px;
}
 
.btn-cta-primary,
.btn-cta-outline {
    padding: 14px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}
 
.btn-cta-primary {
    background: white;
    color: #3498db;
    border: 2px solid white;
}
 
.btn-cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}
 
.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}
 
.btn-cta-outline:hover {
    background: white;
    color: #3498db;
    transform: translateY(-3px);
}

.phone-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 90px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 10px;
}

.form-control-modern[type="file"] {
    padding: 10px;
}

.iti {
    width: 100%;
}

.iti input {
    width: 100%;
    height: 50px;
    border-radius: 10px;
}

.iti__flag-container {
    border-right: 1px solid #eee;
}

/* ========== BLOG LIST PAGE ========== */
.featured-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.featured-post-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--warning-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
}

.featured-post-content {
    padding: 50px 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.post-meta .category {
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.post-meta .date {
    color: var(--text-gray);
    font-size: 14px;
}

.featured-post-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-post-content p {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
}

.reading-time {
    display: block;
    font-size: 13px;
    color: var(--text-gray);
}

/* Blog Categories Filter */
.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.category-btn {
    padding: 10px 25px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* Blog Post Cards */
.blog-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.post-card-content {
    padding: 25px 20px;
}

.post-meta-small {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
    color: var(--text-gray);
}

.post-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
}

.post-title a:hover {
    color: var(--primary-color);
}

.post-card-content > p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.author-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-small img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.author-small span {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: gap 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more-link:hover {
    gap: 10px;
}

/* Newsletter */
.newsletter-box {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.newsletter-box h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.newsletter-box p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px 0 0 10px;
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
}

/* ========== BLOG DETAIL PAGE ========== */
.blog-detail-header {
    background: #f8f9fa;
    padding: 50px 0 30px;
}

.blog-header-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.category-badge {
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.author-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 10px;
}

.share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
}

.featured-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.blog-content {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
}

.blog-content .lead {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.blog-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--dark-color);
}

.blog-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.blog-content ul,
.blog-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.content-highlight {
    background: #e8f4fd;
    border-left: 4px solid var(--primary-color);
    padding: 20px 25px;
    margin: 30px 0;
    border-radius: 8px;
    display: flex;
    gap: 15px;
}

.content-highlight i {
    font-size: 24px;
    color: var(--primary-color);
}

.content-highlight h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.content-highlight p {
    margin: 0;
    color: var(--text-gray);
}

.blog-quote {
    background: var(--light-gray);
    border-left: 5px solid var(--primary-color);
    padding: 30px 40px;
    margin: 40px 0;
    font-size: 20px;
    font-style: italic;
    color: var(--dark-color);
}

.blog-quote cite {
    display: block;
    margin-top: 15px;
    font-size: 16px;
    font-style: normal;
    color: var(--text-gray);
}

.safety-checklist .checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.safety-checklist .checklist-item i {
    color: #28a745;
    font-size: 18px;
}

.image-caption {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 10px;
    text-align: center;
}

.blog-tags {
    margin: 40px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
}

.blog-tags h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.tag-btn {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border-radius: 20px;
    color: var(--dark-color);
    text-decoration: none;
    margin: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.tag-btn:hover {
    background: var(--primary-color);
    color: white;
}

.blog-share-bottom {
    margin: 40px 0;
    padding: 30px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-btn-lg {
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.share-btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}

.share-btn-lg.facebook { background: #1877f2; }
.share-btn-lg.twitter { background: #1da1f2; }
.share-btn-lg.linkedin { background: #0a66c2; }
.share-btn-lg.whatsapp { background: #25d366; }

/* Author Bio */
.author-bio-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: var(--light-gray);
    border-radius: 15px;
    margin: 50px 0;
}

.author-bio-avatar img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.author-bio-content h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.author-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
}

/* Related Posts */
.related-posts {
    margin-top: 50px;
}

.related-posts h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.related-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-content {
    padding: 20px;
}

.category-small {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.related-post-content h6 a {
    color: var(--dark-color);
    text-decoration: none;
}

.related-post-content h6 a:hover {
    color: var(--primary-color);
}

.date-small {
    font-size: 13px;
    color: var(--text-gray);
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.search-form .input-group {
    box-shadow: none;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s;
}

.category-list a:hover {
    color: var(--primary-color);
}

.category-list span {
    background: var(--light-gray);
    color: var(--text-gray);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.popular-post-item:last-child {
    border-bottom: none;
}

.popular-post-item img {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.popular-post-item h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.popular-post-item h6 a {
    color: var(--dark-color);
    text-decoration: none;
}

.popular-post-item h6 a:hover {
    color: var(--primary-color);
}

.popular-post-item span {
    font-size: 12px;
    color: var(--text-gray);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.cta-widget h5 {
    color: white;
}

.cta-widget p {
    color: rgba(255,255,255,0.9);
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-cloud a {
    padding: 8px 16px;
    background: var(--light-gray);
    border-radius: 20px;
    color: var(--dark-color);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: white;
}

/* ========== PRODUCTS PAGE ========== */
.products-sidebar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.category-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-filter li {
    margin-bottom: 8px;
}

.category-all {
    display: flex;
    justify-content: space-between;
    background: var(--primary-color);
    color: #fff;
    padding: 10px 14px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
}

.category-all span {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 20px;
}

.category-all.active {
    background: var(--primary-color);
}

.category-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    color: #444;
    text-decoration: none;
}

.category-item:hover {
    background: #f5f7fa;
}

.category-item.active {
    background: #e7f1ff;
    color: var(--primary-color);
    font-weight: 600;
}

.category-item span {
    background: #eee;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.product-search-btn{
    background-color: var(--primary-color);
}

.price-filter .form-check {
    margin-bottom: 12px;
}

.sidebar-cta {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
}

.sidebar-cta h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.results-info {
    font-size: 15px;
    color: var(--text-gray);
}

.toolbar-actions .form-select {
    border: 2px solid #e0e0e0;
    padding: 8px 15px;
    border-radius: 8px;
}

/* Product Cards */

.breadcrumb-bar {
    background: #f8f9fa;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    font-size: 14px;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 100%;
}

@media (max-width: 576px) {
    .product-image {
        padding-bottom: 65%;
    }
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.product-badge.chemistry { background: #ff6b6b; }
.product-badge.physics { background: #4ecdc4; }
.product-badge.general { background: #95e1d3; }

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn:hover {
    background: var(--primary-color);
    color: white;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.product-name a {
    color: var(--dark-color);
    text-decoration: none;
}

.product-name a:hover {
    color: var(--primary-color);
}

.product-desc {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

.specs-toggle {
    width: 100%;
    padding: 10px;
    background: var(--light-gray);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specs-toggle:hover {
    background: #e0e0e0;
}

.specs-content {
    padding: 15px 0 0;
}

.specs-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-content li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-gray);
    border-bottom: 1px solid #f0f0f0;
}

.specs-content li:last-child {
    border-bottom: none;
}

.product-footer {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.price-row {
    font-size: 18px;
}

.buttons-row .btn {
    white-space: nowrap;
    font-size: 14px;
}

.price-row strong {
    font-size: 20px;
    font-weight: 600;
}

.btn-quote:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Pagination */
.blog-pagination .pagination,
.products-pagination .pagination {
    gap: 8px;
}

.pagination .page-link {
    border: 2px solid #e0e0e0;
    color: var(--dark-color);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 8px;
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

/* product description page */

.main-slider .item {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}

/* IMAGE */
img.main-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-slider .item a {
    width: 100%;
    height: 100%;
}

/* VIDEO */
video.main-media {
    width: 100%;
    height: 100%;
    object-fit: contain; /* IMPORTANT */
}

.thumb img,
.thumb video {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.active-thumb {
    border: 2px solid #007bff;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}

.gallery-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
}

/* .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.owl-nav .owl-prev { left: 10px; }
.owl-nav .owl-next { right: 10px; } */

.related-products-slider,
.related-kits-slider,
.blog-slider,
.main-slider,
.thumb-slider,
.testimonial-slider,
.turnkey-slider,
.packages-slider {
    position: relative;
}

.related-products-slider .owl-nav button,
.blog-slider .owl-nav button,
.main-slider .owl-nav button,
.thumb-slider .owl-nav button,
.testimonial-slider .owl-nav button,
.turnkey-slider .owl-nav button,
.related-kits-slider .owl-nav button,
.packages-slider .owl-nav button {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 42px;
    height: 42px;
    z-index: 10;
}

.related-products-slider .owl-prev,
.blog-slider .owl-prev,
.main-slider .owl-prev,
.thumb-slider .owl-prev,
.testimonial-slider .owl-prev,
.turnkey-slider .owl-prev,
.related-kits-slider .owl-prev,
.packages-slider .owl-prev {
    left: 10px;
}

.related-products-slider .owl-next,
.related-kits-slider .owl-next,
.blog-slider .owl-next,
.main-slider .owl-next,
.thumb-slider .owl-next,
.testimonial-slider .owl-next,
.turnkey-slider .owl-next,
.packages-slider .owl-next {
    right: 10px;
}

.section-padding {
    padding: 60px 0;
}

.product-detail {
    padding-bottom: 40px;
}

.product-detail .container > .row {
    margin-bottom: 40px;
}

.product-description {
    max-width: 900px;
}

.product-description h4 {
    margin-bottom: 15px;
}

.product-description p {
    color: #555;
    line-height: 1.7;
}

.related-products h3 {
    margin-bottom: 25px;
}

.related-products {
    padding-bottom: 40px;
}

.product-card {
    height: 100%;
}

.border-top {
    border-top: 1px solid #eee;
}

/* learning kits */
.kits-page-hero {
    background: linear-gradient(135deg, #2279be, #2b7de9);
    padding: 80px 0;
    color: #fff;
}

.kits-title {
    font-size: 2.5rem;
    font-weight: 700;
}

.kits-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.kits-breadcrumb a {
    color: rgba(255,255,255,0.8);
}

/* SIDEBAR */
.kits-filters-sidebar {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

/* CATEGORY */
.kit-category-link {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: 0.2s;
}

.kit-category-link:hover {
    background: #f1f5ff;
}

.kit-category-filter li.active .kit-category-link {
    background: #2279be;
    color: #fff;
}

/* 🔥 FIXED COUNT VISIBILITY */
.kit-category-count {
    background: #2279be;
    color: #fff;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 12px;
}

.kit-category-filter li.active .kit-category-count {
    background: #fff;
    color: #2279be;
}

.kit-search-btn, .kit-search-btn:hover{
    background-color: var(--primary-color);
    color: white;
}

/* CARD */
.kit-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
}

.kit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.kit-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    overflow: hidden;
}

.kit-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kit-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2279be;
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 4px;
}

.kit-info {
    padding: 15px;
}

.kit-name a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
}

.kit-description {
    font-size: 13px;
    color: #666;
}

.kit-price {
    font-size: 20px;
    font-weight: 700;
    color: #2279be;
    margin-bottom: 10px;
}

/* FEATURE SECTION */
.kit-feature-card {
    transition: 0.3s;
}

.kit-feature-card:hover {
    transform: translateY(-5px);
}

.kit-view-details{
    background-color: var(--primary-color);
    color: white;
}

.kit-view-details:hover{
    color: var(--primary-color);
    background-color: white;
    border: 1px solid var(--primary-color);
}

/* kit-detail */
.kit-badge-primary, .kit-detail-enquiry-btn, .kit-detail-enquiry-btn:hover{
    background-color: var(--primary-color);
    color: white;
}

.kit-detail-call-btn, .kit-detail-call-btn:hover{
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.kit-detail-nav-tabs .nav-link {
    color: #6c757d;
    border: none;
    padding: 12px 24px;
}

.kit-detail-nav-tabs .nav-link.active {
    color: #2279be;
    background: white;
    border-bottom: 3px solid #2279be;
    font-weight: 600;
}

.kit-detail-nav-tabs .nav-link:hover {
    color: #2279be;
}

.kit-detail-contact-method {
    transition: all 0.3s;
}

.kit-detail-contact-method:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2) !important;
}

/* MORE PRODUCTS */
.related-product-card {
    transition: 0.3s;
}

.related-product-card:hover {
    transform: translateY(-5px);
}

.related-product-image {
    height: 220px;
    overflow: hidden;
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-product-title {
    font-weight: 600;
}

.related-product-price {
    color: #2279be;
    font-weight: 700;
}

.kit-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.kit-spec-card:hover {
    border-color: #1e5aa8 !important;
}

.kits-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.btn-outline-primary{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover{
    background-color: var(--primary-color);
    color: white;
}

.btn-primary{
    background-color: var(--primary-color);
    color: white;
}

.custom-text-primary{
    color: var(--primary-color);
}

/* WRAPPER */
.kits-pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.kit-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* DESCRIPTION CLAMP */
.clamp-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    min-height: 72px;
    line-height: 24px;
}

.clamp-text-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    min-height: 48px;
    line-height: 24px;
}

.clamp-text-1{
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* KEEP BUTTON ABOVE LINK */
.kit-enquiry-btn {
    position: relative;
    z-index: 2;
    background: #2279be;
    border: none;
    color: #fff;
    border-radius: 8px;
    padding: 10px;
    font-weight: 600;
}

.kit-enquiry-btn:hover {
    background: #145d96;
    color: #fff;
}

/* INFO TEXT */
.kits-pagination-info {
    font-size: 14px;
    color: #666;
}

/* PAGINATION */
.kits-pagination {
    display: flex;
    list-style: none;
    gap: 6px;
    padding: 0;
    margin: 0;
}

/* BUTTONS */
.kits-pagination li a,
.kits-pagination li span {
    display: block;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    border: 1px solid #ddd;
    color: #333;
    transition: 0.2s;
}

/* HOVER */
.kits-pagination li a:hover {
    background: #2279be;
    color: #fff;
    border-color: #2279be;
}

/* ACTIVE */
.kits-pagination li.active a {
    background: #2279be;
    color: #fff;
    border-color: #2279be;
}

/* DISABLED */
.kits-pagination li.disabled span {
    background: #f5f5f5;
    color: #aaa;
    cursor: not-allowed;
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .kits-pagination-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .kits-title {
        font-size: 2rem;
    }

    .filters-sidebar {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .kit-image {
        padding-bottom: 65%;
    }

    .kits-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 42px;
    }
    
    .quick-contact-item {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .quick-contact-item:last-child {
        border-bottom: none;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== RESPONSIVE FOR NEW PAGES ========== */
@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
    
    .featured-post-content {
        padding: 30px 25px;
    }
    
    .featured-post-content h2 {
        font-size: 24px;
    }
    
    .blog-detail-title {
        font-size: 28px;
    }
    
    .blog-author-info {
        flex-direction: column;
    }
    
    .social-share {
        width: 100%;
        justify-content: center;
    }
    
    .author-bio-card {
        flex-direction: column;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn-lg {
        width: 100%;
    }
    
    .products-sidebar {
        margin-bottom: 30px;
    }
    
    .products-toolbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .toolbar-actions {
        width: 100%;
    }
    
    .toolbar-actions .form-select {
        width: 100%;
    }

    .contact-hero-section {
        padding: 60px 0 40px;
    }
    
    .contact-hero-title {
        font-size: 32px;
    }
    
    .contact-hero-text {
        font-size: 16px;
    }
    
    .quick-contact-strip {
        margin-top: 0;
    }
    
    .quick-contact-item {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .section-heading {
        font-size: 28px;
    }
    
    .get-in-touch-card {
        margin-bottom: 30px;
    }
    
    .form-title {
        font-size: 24px;
    }
    
    .map-section-title {
        font-size: 26px;
    }
    
    .hero-decoration-circle {
        display: none;
    }
}

.products-dropdown {
    max-height: 400px;
    overflow-y: auto;
}