/* CSS Variables */
:root {
    --primary: #2b6ba1;
    --primary-dark: #0052a3;
    --secondary: #00a896;
    --accent: #ff6b6b;
    --light: #ffffff;
    --dark: #1a1a2e;
    --dark-light: #2d3047;
    --gray: #8a8fa3;
    --light-gray: #f8f9fa;
    --border: #e1e5eb;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s ease;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 80px;
}
.text-primary {
    color: var(--primary) !important;
}
.bg-primary {
    background-color: var(--primary) !important;
}
.btn:hover {
    color: white;
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

/* Section Styles */
.light-section {
    background-color: var(--light);
    color: #333;
    padding: 100px 0;
}

.dark-section {
    background-color: var(--dark);
    color: white;
    padding: 100px 0;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
    color: white;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.section-title .highlight {
    color: var(--primary);
    position: relative;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(0, 102, 204, 0.1);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.dark-section .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation */
.navbar {
    background-color: var(--light);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--primary);
    margin-left: 0;
}

.navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--dark) !important;
    padding: 8px 16px !important;
    margin: 0 5px;
    border-radius: 8px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary) !important;
}

.navbar-nav .nav-link.active {
    background-color: var(--primary);
    color: white !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80'); */
    background-size: cover;
    background-position: center;
    
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,249,250,0.8) 100%); */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
}

.section-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-10deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    z-index: 3;
}

.floating-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Stats Section */
.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Welcome Section */
.section-image-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.section-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
}

.image-overlay-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.image-overlay-card h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.image-overlay-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.feature-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* About Section Styles */
.about-section {
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 168, 150, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    min-height: 400px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 25px;
    color: white;
}

.image-overlay-text h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.image-overlay-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

/* Icon Cards Grid */
.about-card-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
    justify-content: center;
    padding-left: 30px;
}

.icon-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border-left: 4px solid var(--primary);
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-left-color: var(--secondary);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.icon-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.icon-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.icon-card-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Approach Section */
.approach-section {
    padding: 40px 0;
}

.approach-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.approach-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.approach-card:hover .approach-image img {
    transform: scale(1.1);
}

.approach-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.approach-card:hover .approach-overlay {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.approach-content {
    padding: 25px;
}

.approach-content h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark);
}

.approach-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* Stats Banner */
.about-stats-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
}

.about-stats-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.stat-item {
    color: white;
    position: relative;
    z-index: 1;
}

.stat-item i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-card-grid {
        padding-left: 0;
        padding-top: 40px;
    }
    
    .icon-card {
        padding: 20px;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .icon-card-content h3 {
        font-size: 1.2rem;
    }
    
    .about-image-wrapper {
        min-height: 350px;
    }
    
    .approach-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-stats-banner {
        padding: 40px 20px;
    }
    
    .stat-item h3 {
        font-size: 2.2rem;
    }
    
    .stat-item i {
        font-size: 2rem;
    }
    
    .icon-card {
        flex-direction: column;
        text-align: center;
    }
    
    .icon-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper {
        min-height: 300px;
    }
    
    .image-overlay-text {
        padding: 20px 15px;
    }
    
    .image-overlay-text h4 {
        font-size: 1.1rem;
    }
    
    .stat-item h3 {
        font-size: 1.8rem;
    }
}
/* Products Section */
.product-filters {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-buttons {
    display: inline-flex;
    background: var(--light-gray);
    padding: 8px;
    border-radius: 50px;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    background: transparent;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.2);
}

.products-grid {
    min-height: 400px;
}

.product-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 200px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 25px;
    background-color: #d3d3d359;
}

.product-category {
    display: inline-block;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.product-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

.product-btn {
    width: 100%;
}

/* Gallery Section */
.gallery-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.gallery-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
}

.overlay-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.gallery-content {
    padding: 25px;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.event-meta span {
    display: flex;
    align-items: center;
}

.gallery-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.gallery-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Blogs Section */
.blog-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-content h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.blog-link:hover {
    color: var(--primary-dark);
    gap: 10px;
}

.blog-link i {
    transition: var(--transition);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* Contact Section */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-header h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-header p {
    opacity: 0.8;
    margin: 0;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-text h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: white;
}

.contact-text p,
.contact-text a {
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    margin: 0;
}

.contact-text a:hover {
    color: var(--primary);
    opacity: 1;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form-header {
    margin-bottom: 30px;
}

.contact-form-header h3 {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-form-header p {
    opacity: 0.8;
    margin: 0;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
    color: white;
}

.contact-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    color: white;
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Footer */
.footer-main {
    padding: 80px 0 40px;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-text {
    color: var(--gray);
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.newsletter-form .input-group {
    margin-bottom: 20px;
}

.newsletter-form .form-control {
    background: var(--light-gray);
    border: 1px solid var(--border);
    padding: 12px 15px;
}

.newsletter-form .btn {
    padding: 12px 20px;
}

.footer-certifications img {
    opacity: 0.7;
    transition: var(--transition);
}

.footer-certifications img:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--dark-light);
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--primary);
}

.footer-dev-link {
    display: inline-flex;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 102, 204, 0.2);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .welcome-section,
    .about-section,
    .products-section,
    .gallery-section,
    .blogs-section,
    .contact-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .filter-buttons {
        width: 100%;
        border-radius: 12px;
        padding: 10px;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-image-wrapper {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}
.gallery-section .gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 300px;
}

.gallery-section .gallery-card:hover {
    transform: translateY(-10px);
}

.gallery-section .gallery-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.gallery-section .gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-section .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.gallery-section .overlay-content {
    text-align: center;
    color: white;
}

.gallery-section .overlay-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: white;
}

.gallery-section .overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.gallery-section .overlay-content .btn {
    background: transparent;
    border: 2px solid white;
    color: white;
    transition: all 0.3s ease;
}

.gallery-section .overlay-content .btn:hover {
    background: white;
    color: #333;
}

.gallery-section .gallery-content {
    padding: 15px;
    background: white;
}

.gallery-section .event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 10px;
}

.gallery-section .gallery-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
}

.gallery-section .gallery-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-section .gallery-card {
        height: 250px;
        margin-bottom: 20px;
    }
    
    .gallery-section .overlay-content h4 {
        font-size: 1.1rem;
    }
    
    .gallery-section .overlay-content p {
        font-size: 0.8rem;
    }
}

.product-details-section {
    background-color: #f8f9fa;
}

.product-image-container {
    position: sticky;
    top: 20px;
}

.product-title {
    color: #2c3e50;
    font-weight: 700;
}

.category-badge .badge {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
}

.product-info-tabs .nav-tabs .nav-link {
    color: #6c757d;
    font-weight: 500;
}

.product-info-tabs .nav-tabs .nav-link.active {
    color: #2b6ba1;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

.product-info-tabs .tab-content {
    background-color: #fff;
    min-height: 200px;
}

.product-actions .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

@media print {
    .product-actions,
    .breadcrumb,
    .related-products {
        display: none !important;
    }
}











/* Product Tabs Styling */
.product-tabs {
    margin-top: 2rem;
}

.product-tabs .nav-tabs {
    border-bottom: 2px solid #e9ecef;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}

.product-tabs .nav-tabs .nav-link {
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #6c757d;
    background-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: -2px;
}

.product-tabs .nav-tabs .nav-link:hover {
    color: #2b6ba1;
    background-color: rgba(13, 110, 253, 0.05);
    border: none;
}

.product-tabs .nav-tabs .nav-link.active {
    color: #2b6ba1;
    background-color: white;
    border: 2px solid #e9ecef;
    border-bottom: 2px solid white;
    border-radius: 8px 8px 0 0;
    position: relative;
    z-index: 1;
}

.product-tabs .nav-tabs .nav-link.active:before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 3px;
    background: linear-gradient(90deg, #2b6ba1, #0dcaf0);
    border-radius: 8px 8px 0 0;
}

.product-tabs .nav-tabs .nav-link i {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.product-tabs .tab-content {
    background-color: white;
    border: 2px solid #e9ecef;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem !important;
    position: relative;
    z-index: 0;
    min-height: 200px;
}

.product-tabs .tab-pane {
    animation: fadeIn 0.5s ease;
}

.product-tabs .tab-pane p {
    line-height: 1.8;
    color: #495057;
    font-size: 1rem;
    margin-bottom: 0;
}

.product-tabs .tab-pane p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-tabs .nav-tabs {
        flex-direction: column;
        border-bottom: none;
    }
    
    .product-tabs .nav-tabs .nav-link {
        border-radius: 8px;
        margin-bottom: 0.5rem;
        border: 2px solid #e9ecef !important;
        text-align: left;
    }
    
    .product-tabs .nav-tabs .nav-link.active {
        border: 2px solid #2b6ba1 !important;
    }
    
    .product-tabs .nav-tabs .nav-link.active:before {
        display: none;
    }
    
    .product-tabs .tab-content {
        border-radius: 8px;
        border-top: 2px solid #e9ecef;
        padding: 1.5rem !important;
    }
}

/* Animation for tab content */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional enhancement for better readability */
.product-tabs .tab-content h4 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f1f3f5;
}

.product-tabs .tab-content ul,
.product-tabs .tab-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.product-tabs .tab-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Custom scrollbar for tab content */
.product-tabs .tab-content::-webkit-scrollbar {
    width: 6px;
}

.product-tabs .tab-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.product-tabs .tab-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.product-tabs .tab-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}
.breadcrumb-section {
    background-image: url(bc-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 80px 0 !important;
    padding-top: 110px !important;
}
li.breadcrumb-item, li.breadcrumb-item a {
    font-size: 25px;
    color: white !important;
    text-decoration: none;
}