/* Header Styles */
        .navbar {
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            background-color: #fff;
        }
        /* ===== STICKY HEADER FIX ===== */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050; /* higher than mega menu */
    background: #fff;
}

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: #2c3e50 !important;
            margin-right: 2rem;
        }
        .navbar-brand img {
            height: 73px;
            width: 35%;
        }
        .nav-link {
            font-weight: 500;
            margin-left: 1rem;
            color: #34495e !important;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: #3498db !important;
        }
        
        .nav-link.active {
            color: #3498db !important;
            border-bottom: 2px solid #3498db;
        }
        
        .search-form {
            max-width: 400px;
            width: 100%;
        }
        
        .search-input {
            border-radius: 20px;
            border: 1px solid #ecf0f1;
            padding: 0.5rem 1rem;
        }
        
        .search-input:focus {
            border-color: #3498db;
            box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
        }
        
        .header-icon {
            color: #34495e;
            font-size: 1.3rem;
            margin-left: 1.5rem;
            cursor: pointer;
            transition: color 0.3s ease;
        }
        
        .header-icon:hover {
            color: #3498db;
        }
        
        .badge-counter {
            position: absolute;
            top: -8px;
            right: -8px;
            background-color: #e74c3c;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 991px) {
            .navbar-brand {
                margin-right: 0.5rem;
            }
            
            .nav-link {
                margin-left: 0;
                padding: 0.5rem 0;
            }
            
            .search-form {
                margin-top: 1rem;
                max-width: 100%;
            }
            
            .header-icons {
                margin-top: 1rem;
            }
        }

        /* for mega menu */
        /* ===== MEGA MENU ===== */

.product-dropdown:hover .mega-menu {
    display: block;
}

/* .mega-menu {
    width: 900px;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px;
    border-radius: 10px;
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: none;
} */
.mega-menu {
    width: 100vw !important;
    max-width: 100vw !important;
    top:75% !important;
    position: absolute !important;

    /* BREAK OUT OF CONTAINER */
    left: 50% !important;
    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 25px 40px;

    border-radius: 0;
    background: white;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border: none;

    display: none;
    /* 🔥 SCROLL LOGIC */
    max-height: 75vh;        /* limit height */
    overflow-y: auto;        /* enable vertical scroll */
    overflow-x: hidden;
}
/* nice scrollbar */
.mega-menu::-webkit-scrollbar {
    width: 6px;
}
.mega-menu::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
/* GRID ALIGNMENT */
/* .mega-menu .row {
    max-width: 1300px;        
    margin: auto;
} */
 .nav-item.dropdown:hover .mega-menu {
    display: block !important;
}

/* GRID ALIGNMENT */
.mega-menu .row {
    max-width: 1300px;        /* center content */
    margin: auto;
}
.navbar .dropdown {
    position: static !important;
}



.mega-item {
    text-decoration: none;
    color: #333;
}

.mega-item img {
    height: 120px;
    object-fit: contain;
    transition: 0.3s;
}

.mega-item p {
    margin-top: 8px;
    font-weight: 500;
}

.mega-item:hover img {
    transform: scale(1.05);
}

/* Mobile */
@media(max-width: 991px) {
  .mega-menu {
      width: 100%;
      position: static;
  }
}
.mega-mobile-header {
    padding: 10px 10px 0 10px;
    font-weight: 600;
    cursor: pointer;
}

.mega-back {
    color: #0d6efd;
}


  .banner-section {
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 3rem;
        margin-left: 0;
        margin-right: 0;
    }
    
    .banner-container {
        position: relative;
        overflow: hidden;
        height: 600px;
        max-height: 600px;
        width: 100%;
    }
    
    .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    
    .banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .banner-content {
        text-align: center;
        color: white;
        z-index: 2;
        position: relative;
        padding: 2rem;
    }
    
    .banner-content h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    
    .banner-content p {
        font-size: 1.5rem;
        margin-bottom: 2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }
    
    .banner-content .btn {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        border-radius: 5px;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .banner-content .btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Mobile Responsive Banner */
    @media (max-width: 768px) {
        .banner-section {
            margin-top: 0.5rem;
            margin-bottom: 2rem;
        }
        
        .banner-container {
            height: 300px;
            max-height: 300px;
        }
        
        .banner-content {
            padding: 1rem;
        }
        
        .banner-content h1 {
            font-size: 1.8rem;
        }
        
        .banner-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }
        
        .banner-content .btn {
            padding: 0.5rem 1.5rem;
            font-size: 0.9rem;
        }
    }
    
    @media (max-width: 480px) {
        .banner-section {
            margin-top: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .banner-container {
            height: 220px;
            max-height: 220px;
        }
        
        .banner-content {
            padding: 1rem;
        }
        
        .banner-content h1 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }
        
        .banner-content p {
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        
        .banner-content .btn {
            padding: 0.4rem 1rem;
            font-size: 0.8rem;
        }
    }

/* Products Filter Section */
.products-filter-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3436;
    text-align: center;
    margin-bottom: 35px;
}

.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.filter-tab {
    background: #f0f0f0;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.filter-tab:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-tab.active {
    background: #2d6a4f;
    color: white;
    box-shadow: 0 6px 16px rgba(45, 106, 79, 0.3);
}

/* Products Showcase Section */
.products-showcase-section {
    background: white;
    padding: 50px 0;
    min-height: 100vh;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
    gap: 30px;
    width: 100%;
}

/* Product Showcase Card */
.product-showcase-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-showcase-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(45, 106, 79, 0.2);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #52b788;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(82, 183, 136, 0.3);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f9f9f9;
    flex-shrink: 0;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-showcase-card:hover .product-img {
    transform: scale(1.08);
}

.product-details {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #52b788;
    font-size: 14px;
    letter-spacing: 1px;
}

.review-count {
    color: #888;
    font-size: 13px;
    font-weight: 500;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
}

.original-price {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

.add-to-cart-btn {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: #2d6a4f;
    color: white;
    border: none;
    padding: 12px 0;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 5;
}

.product-image-container:hover .add-to-cart-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.add-to-cart-btn:hover {
    background: #1b4332;
    box-shadow: 0 6px 16px rgba(45, 106, 79, 0.4);
}

.add-to-cart-btn:active {
    transform: translateY(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .filter-tabs {
        gap: 10px;
    }

    .filter-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .products-filter-section {
        padding: 30px 0;
    }

    .filter-section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .filter-tabs {
        gap: 8px;
    }

    .filter-tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .products-showcase-section {
        padding: 30px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }

    .product-image-container {
        height: 220px;
    }

    .product-details {
        padding: 15px;
    }

    .product-title {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .product-price {
        margin-bottom: 10px;
    }

    .add-to-cart-btn {
        padding: 10px 0;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .filter-section-title {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 7px 12px;
        font-size: 11px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .product-image-container {
        height: 180px;
    }

    .product-details {
        padding: 12px;
    }

    .product-title {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .product-rating {
        gap: 5px;
        margin-bottom: 8px;
    }

    .stars {
        font-size: 12px;
    }

    .review-count {
        font-size: 11px;
    }

    .product-price {
        margin-bottom: 8px;
    }

    .price {
        font-size: 16px;
    }

    .add-to-cart-btn {
        padding: 8px 0;
        font-size: 12px;
    }
}
/* testimonial section */
.testimonial-section {
    background: #fff;
}

.testimonial-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 16px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.stars {
    color: #22c55e;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.testimonial-nav button {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
/* for new arrivals */
.product-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.save-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #d1fae5;
    color: #065f46;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

.product-img {
    position: relative;
    height: 260px;
    margin-bottom: 15px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.4s;
}

.img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card:hover .img-front {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

/* .add-cart-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s;
} */

.product-card:hover .add-cart-btn {
    opacity: 1;
}

.product-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.rating {
    color: #22c55e;
    font-size: 14px;
}

.rating span {
    color: #999;
}

.price {
    font-weight: 600;
}

.price span {
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 14px;
}
/* for Our Products  */
.section-title{
  font-weight:600;
  margin-bottom:20px;
}

/* Card */
/* .client-card{
  background:#fff;
  border:1px solid #eee;
  border-radius:10px;
  padding:12px;
  text-align:center;
  transition:0.3s;
} */
 .client-card{
  position: relative;
  overflow: hidden;
  background:#fff;
  border-radius:10px;
  padding:12px;
  text-align:center;
  transition:0.3s;
}
.image-wrapper{
  position:relative;
}

.client-card img{
  height:140px;
  object-fit:contain;
  margin-bottom:10px;
}

.client-card h6{
  font-size:14px;
  min-height:40px;
}

.client-card .price{
  color:#0d6efd;
  font-weight:bold;
}

.client-card button{
  border:none;
  background:#0d6efd;
  color:#fff;
  padding:6px 12px;
  border-radius:5px;
}

/* Hide button initially */
/* .add-cart-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  background:#0d6efd;
  color:#fff;
  border:none;
  padding:8px 14px;
  border-radius:5px;
  opacity:0;
  transition:0.3s;
} */
 .add-cart-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
/* bottom: 15px; */
  background:#0d6efd;
  color:#fff;
  border:none;

  /* FIXED SIZE */
  padding:6px 12px;
  font-size:17px !important;
  font-weight: 700 !important;
  width:120px !important;
  height:32px !important;
  line-height:18px !important;

  border-radius:20px;

  opacity:0;
  transition:0.3s;
}
.image-wrapper:hover .add-cart-btn{
  opacity:1;
}

/* Dim image effect */
.image-wrapper:hover img{
  opacity:0.6;
}

/* Keep rest same */
.client-card img{
  width:100%;
  height:250px;
  object-fit:contain;
}
/* SHOW ON HOVER */
.client-card:hover .add-cart-btn{
  bottom:10px;
  opacity:1;
}

.client-card:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

/* arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:#000;
  border-radius:50%;
}
/* for Customers */
.single-card{
  max-width:600px;
  margin:auto;
  text-align:center;

  background:#fff;
  padding:20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.review-user{
  width:90px;
  height:90px;
  border-radius:50%;
  object-fit:cover;
  margin-bottom:10px;
}

.stars{
  color:#f1c40f;
  margin:6px 0;
}

.review-text{
  font-size:15px;
  color:#555;
}

/* arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon{
  background-color:#000;
  border-radius:50%;
}
/* trust section */
.trust-title{
  font-weight:600;
  margin-bottom:6px;
}

.trust-sub{
  color:#666;
  font-size:15px;
}

.trust-section{
  background:#f8fbff;
  padding:40px 0;
}

.trust-box{
  background:#fff;
  padding:15px;
  border-radius:12px;
  transition:.3s;
}

.trust-box:hover{
  transform:translateY(-4px);
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.icon{
  font-size:30px;
  background:#eaf3ff;
  width:60px;
  height:60px;
  line-height:60px;
  margin:auto;
  border-radius:50%;
}

.count{
  color:#0d6efd;
  margin-top:6px;
}
.f-icon{
  font-size:48px;        /* 👈 increased */
  background:#eaf3ff;
  width:80px;            /* 👈 bigger circle */
  height:80px;
  line-height:80px;
  margin:auto;
  border-radius:50%;
}
.subscribe-section{
  background:#f8fbff;
  padding:40px 0;
}

.sub-title{
  font-weight:600;
}

.sub-text{
  color:#666;
}

/* EMAIL BOX */
.email-box{
  display:flex;
  gap:8px;
}

.email-box input{
  width:100%;
  padding:10px;
  border:1px solid #ddd;
  border-radius:6px;
}

.email-box button{
  background:#0d6efd;
  color:#fff;
  border:none;
  padding:10px 18px;
  border-radius:6px;
}

/* MOBILE */
@media(max-width:768px){
  .email-box{
    margin-top:12px;
  }
}

/* footer */
.main-footer{
  background:#0b1e35;
  color:#fff;
  padding:40px 0;
}

.footer-title{
  margin-bottom:10px;
}

.footer-links{
  list-style:none;
  padding:0;
}

.footer-links li a{
  color:#ccc;
  text-decoration:none;
  display:block;
  padding:4px 0;
  transition:.3s;
}

.footer-links li a:hover{
  color:#fff;
  padding-left:5px;
}

/* SOCIAL */
.social-icons a{
  color:#fff;
  margin-right:10px;
  font-size:18px;
}

/* NEWSLETTER */
.newsletter{
  display:flex;
  gap:6px;
}

.newsletter input{
  width:100%;
  padding:8px;
  border:none;
  border-radius:5px;
}

.newsletter button{
  background:#0d6efd;
  border:none;
  color:#fff;
  padding:8px 12px;
  border-radius:5px;
}

.copyright{
  text-align:center;
  color:#ccc;
}

/* MOBILE COLLAPSE */
@media(max-width:768px){
.footer-links{
  display:none;
}

.footer-title.toggle{
  cursor:pointer;
}
}
/* offer page css */
.product-card{
  background:#fff;
  border-radius:10px;
  padding:10px;
  text-align:center;
}

/* IMAGE WRAPPER */
.img-area{
  position:relative;
}

/* HIDDEN BUTTON */
.hover-cart{
  position:absolute;

  top:50%;
  left:50%;
  transform:translate(-50%,-50%);

  background:#0d6efd;
  color:#fff;

  border:none;
  padding:6px 14px;
  border-radius:20px;

  opacity:0;
  transition:.3s;
}
/* ===== CONTACT SECTION ===== */
.contact-wrapper {
  --accent: #ff7a22;
}
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  transition: .35s ease;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
}
/* ===== FLOATING INPUTS ===== */
.floating-group {
  position: relative;
  margin-bottom: 25px;
}

.floating-group input,
.floating-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 14px 12px;
  border-radius: 8px;
  outline: none;
  transition: .3s;
  background: transparent;
}

.floating-group label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  padding: 0 6px;
  font-size: 14px;
  color: #777;
  pointer-events: none;
  transition: .3s;
}

.floating-group textarea + label {
  top: 18px;
}

.floating-group input:focus,
.floating-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,122,34,.15);
}

.floating-group input:focus + label,
.floating-group input:valid + label,
.floating-group textarea:focus + label,
.floating-group textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: var(--accent);
}

.contact-section {
    background: #fff;
}

.contact-section h2 {
    font-weight: 600;
}

/* SEND BUTTON */
/* .btn-send {
    background: #ff7a22;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

.btn-send:hover {
    background: #e66914;
    color: #fff;
} */
 .btn-send {
  position: relative;
  overflow: hidden;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 34px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: .35s;
}

.btn-send:hover {
  background: #e86915;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,122,34,.35);
}

.btn-send::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: rgba(255,255,255,.25);
  top: -50%;
  left: -50%;
  transform: scale(0);
  border-radius: 50%;
  transition: .6s;
}

.btn-send:hover::after {
  transform: scale(1);
}

/* ===== CONTACT INFO ===== */

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 15px;
  transition: .3s;
}

.contact-info i {
  color: var(--accent);
  font-size: 18px;
  transition: .3s;
}

.contact-info li:hover {
  transform: translateX(6px);
}

.contact-info li:hover i {
  transform: scale(1.2);
}

/* ===== WORKING HOURS ===== */

.working-hours {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.working-hours h6 {
  font-weight: 600;
}

.working-hours p {
  font-size: 14px;
  color: #555;
}

/* ===== MOBILE ===== */

@media (max-width: 767px) {
  .contact-card {
    padding: 20px;
  }
}

/* ===== ABOUT SECTION ===== */

.about-section{
  padding:80px 0;
  background:#f9fbff;
  font-family: 'Segoe UI', sans-serif;
}

/* HERO */
.about-hero{
  text-align:center;
  margin-bottom:60px;
  animation: fadeDown 1s ease;
}

.about-hero h1{
  font-size:42px;
  font-weight:700;
}

.about-hero p{
  color:#666;
  font-size:18px;
}

/* INTRO */
.about-intro{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
  margin-bottom:70px;
}

.intro-text h2{
  font-size:32px;
  margin-bottom:15px;
}

.intro-text p{
  font-size:16px;
  color:#555;
  line-height:1.8;
}

.intro-image img{
  width:100%;
  border-radius:16px;
  transition:.6s;
  box-shadow:0 20px 50px rgba(0,0,0,.1);
}

.intro-image:hover img{
  transform:scale(1.05) rotate(1deg);
}

/* VALUES */
.about-values{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:70px;
}

.value-card{
  background:#fff;
  padding:30px;
  border-radius:16px;
  text-align:center;
  transition:.4s;
  cursor:pointer;
  position:relative;
  overflow:hidden;
}

.value-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg,#0d6efd,#4facfe);
  opacity:0;
  transition:.4s;
}

.value-card:hover::before{
  opacity:.08;
}

.value-card i{
  font-size:36px;
  color:#0d6efd;
  margin-bottom:15px;
  transition:.4s;
}

.value-card:hover i{
  transform:scale(1.2) rotate(10deg);
}

.value-card h4{
  font-weight:600;
}

.value-card:hover{
  transform:translateY(-12px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

/* STATS */
.about-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  margin-bottom:70px;
}

.stat-box{
  background:#0d6efd;
  color:#fff;
  text-align:center;
  padding:35px 20px;
  border-radius:18px;
  transition:.4s;
  position:relative;
  overflow:hidden;
}

.stat-box::after{
  content:'';
  position:absolute;
  width:200%;
  height:200%;
  background:rgba(255,255,255,.08);
  top:-50%;
  left:-50%;
  transform:rotate(25deg);
}

.stat-box:hover{
  transform:translateY(-10px) scale(1.02);
  box-shadow:0 25px 60px rgba(13,110,253,.4);
}

.stat-box h3{
  font-size:32px;
  font-weight:700;
}

/* MISSION */
.about-mission{
  text-align:center;
  max-width:800px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.08);
  transition:.4s;
}

.about-mission:hover{
  transform:translateY(-6px);
}

/* ANIMATION */
@keyframes fadeDown{
  from{opacity:0; transform:translateY(-30px);}
  to{opacity:1; transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:992px){
  .about-intro{
    grid-template-columns:1fr;
  }

  .about-values{
    grid-template-columns:repeat(2,1fr);
  }

  .about-stats{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:576px){
  .about-values{
    grid-template-columns:1fr;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .about-hero h1{
    font-size:32px;
  }
}
/* blog styles */
.blog-section {
  padding: 70px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* CARD */
.blog-card {
  background: #f6f8ef;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* IMAGE */
.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: 0.5s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

/* TAG */
.blog-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2d6a4f;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

/* CONTENT */
.blog-content {
  padding: 22px;
  text-align: center;
}

.blog-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 18px;
}

/* LINK */
.blog-link {
  font-weight: 600;
  color: #2d6a4f;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}

.blog-link:hover {
  border-color: #2d6a4f;
}









