@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap'); 
 
 :root {
     --primary-color: #b62729;
     --secondary-color: #004e89;
     --dark-color: #1a1a2e;
     --light-color: #f4f4f4;
 }

 body {
     font-family: "Montserrat", sans-serif;
     color: #333;
 }
 /*font-family: "Playfair", serif;*/

 /* Navbar Styles */

    .navbar-toggler {
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
      display: none;
      position: relative;
      z-index: 1001;
    }

    .navbar-toggler svg {
      transition: opacity 0.3s ease;
    }

    .menu-icon {
      opacity: 1;
    }

    .close-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      opacity: 0;
    }

    .navbar-toggler.active .menu-icon {
      opacity: 0;
    }

    .navbar-toggler.active .close-icon {
      opacity: 1;
    }

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff !important;
    top: 0;
    padding: 7px;
    background: #0d0d0d;
    display: inline-block;
    border-radius: 6px;
    width: 100%;
}

a.navbar-brand img {
    max-width: 100%;
}
.navbar-collapse ul {
    flex-direction: inherit;
    justify-content: end;
    gap: 35px;
    align-items: center;
}
.navbar-collapse ul a {
    color: #6b6b6b;
    font-weight: 500;
}
 .menu-item a {
     color: rgba(255, 255, 255, 0.9) !important;
     font-weight: 800;
     margin: 0 0.5rem;
     transition: all 0.3s;
     text-decoration: none;
     text-transform: uppercase;
 }

 .menu-item a:hover {
     color: var(--primary-color) !important;
     transform: translateY(-2px);
 }
.breadcrumb li {
    color: #fff;
    font-weight: 600;
    text-transform: capitalize;
}
.breadcrumb li a::before {
    float: right;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
    padding-left: 6px;
}
.breadcrumb li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}
.top-bar {
    display: flex;
    align-items: center;
    justify-content: end;
    padding: 15px 0 10px;
    gap: 20px;
}
.store-box {
    text-decoration: none;
    color: #ffffff !important;
    padding: 4px 12px;
    background: #c7b392 ;
    border-radius: 4px;
}
.top-href.design-pg {
    padding: 4px 10px;
    border: 1px solid #9a9a9a;
    border-radius: 5px;
}
.top-href {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.top-href svg {
    margin-right: 4px;
}
        /* Custom Dropdown Container */
        .custom-dropdown {
            position: relative;
        }

        /* Custom Dropdown Toggle */
        .custom-dropdown-toggle {
            cursor: pointer;
            position: relative;
            padding-right: 25px;
        }

        .custom-dropdown-toggle::after {
            content: '';
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 5px solid currentColor;
            transition: transform 0.3s ease;
        }

        .custom-dropdown:hover .custom-dropdown-toggle::after {
            transform: translateY(-50%) rotate(180deg);
        }

        /* Custom Dropdown Menu */
        .custom-dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 250px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            padding: 10px 0;
            margin-top: 10px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-15px);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .custom-dropdown:hover .custom-dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        /* Custom Dropdown Items */
        .custom-dropdown-item {
            padding: 12px 20px;
            color: #333;
            text-decoration: none;
            display: block;
            transition: all 0.3s ease;
            font-size: 15px;
            position: relative;
            overflow: hidden;
        }

        .custom-dropdown-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 100%;
            background: #c7b392;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
        }

        .custom-dropdown-item:hover {
            background: #f8f9fa;
            color: #c7b392;
            padding-left: 30px;
        }

        .custom-dropdown-item:hover::before {
            transform: translateX(0);
        }

        /* Custom Dropdown Divider */
        .custom-dropdown-divider {
            height: 1px;
            background: #e9ecef;
            margin: 8px 15px;
        }

        /* Icon in dropdown items (optional) */
        .custom-dropdown-item svg {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            vertical-align: middle;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .navbar-nav {
                flex-direction: column;
                gap: 0;
            }

            .custom-dropdown-menu {
                position: static;
                box-shadow: none;
                border-left: 3px solid #007bff;
                margin-left: 20px;
                margin-top: 5px;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
            }

            .custom-dropdown:hover .custom-dropdown-menu {
                display: block;
            }
        }
 /* Hero Section */
.hero-section {
    position: relative;
    color: white;
    margin-top: 60px;
}
.good-design .swiper-slide-inner {
    border: #ddd 1px solid;
    margin: 10px!important;
    padding: 15px;
}
 .hero-slide {
     height: 680px;
     position: relative;
     display: flex;
     align-items: center;
 }

 .slide-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
 }

 .slide-content {
     position: relative;
     z-index: 2;
 }

 .hero-section h1 {
     font-size: 3.5rem;
     font-weight: bold;
     margin-bottom: 1.5rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease-out;
 }

 .hero-section p {
     font-size: 1.3rem;
     margin-bottom: 2rem;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
     animation: fadeInUp 1s ease-out 0.2s backwards;
 }
 .scroll-me a img {
    width: 50px !important;
}

 /* Owl Carousel Custom Styles */
 .owl-carousel .owl-nav button.owl-prev,
 .owl-carousel .owl-nav button.owl-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 107, 53, 0.9) !important;
     color: white !important;
     width: 50px;
     height: 50px;
     border-radius: 50%;
     font-size: 24px;
     transition: all 0.3s;
 }

 .owl-carousel .owl-nav button.owl-prev:hover,
 .owl-carousel .owl-nav button.owl-next:hover {
     background: var(--primary-color) !important;
     transform: translateY(-50%) scale(1.1);
 }

 .owl-carousel .owl-nav button.owl-prev {
     left: 20px;
 }

 .owl-carousel .owl-nav button.owl-next {
     right: 20px;
 }

 .owl-carousel .owl-dots {
     bottom: 20px;
     width: 100%;
     text-align: center;
 }

 .owl-carousel .owl-dot {
     display: inline-block;
     width: 12px;
     height: 12px;
     margin: 0 5px;
     background: rgba(255, 255, 255, 0.5) !important;
     border-radius: 50%;
     transition: all 0.3s;
 }
.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 30px;
}
 .owl-carousel .owl-dot.active  span{
     background: var(--primary-color) !important;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .btn-primary {
     background: var(--primary-color);
     border: none;
     padding: 12px 35px;
     font-size: 1.1rem;
     font-weight: 600;
     border-radius: 50px;
     transition: all 0.3s;
 }

 .btn-primary:hover {
     background: #ff5722;
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
 }

 /* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    font-family: "Playfair Display";
}

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 60px;
     height: 4px;
     background: #c7b392;
 }

 /* About Section */
 .about-section {
     padding: 80px 0;
 }

 .about-icon {
     font-size: 3rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
 }

 .feature-img img {
     border-radius: 25px;
 }

 /* Product Section */
 .product-section {
     padding: 80px 0;
     background: var(--light-color);
 }

 .product-card {
     border: none;
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s;
     height: 100%;
 }

 /* .product-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
 } */

 .product-image {
     background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
     height: 200px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 4rem;
     color: white;
 }

.product-image img {
    width: 200px !important;
}

 .product-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: var(--primary-color);
     color: white;
     padding: 5px 15px;
     border-radius: 20px;
     font-weight: 600;
     font-size: 0.85rem;
 }

 .product-price {
     font-size: 1.8rem;
     font-weight: bold;
     color: var(--primary-color);
 }

 /* Enquiry Form */
 .enquiry-section {
     padding: 80px 0;
     background: linear-gradient(135deg, var(--secondary-color) 0%, var(--dark-color) 100%);
     color: white;
 }

 .enquiry-section .section-title {
     color: white;
 }

.enquiry-section .section-title::after {
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}
#products .section-title::after {
    background: var(--primary-color);
    left: 50%;
    transform: translateX(-50%);
}
.form-control {
    padding: 12px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
    outline: none !important;
    box-shadow: none !important;
}
  .form-select {
    padding: 12px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #000;
 }

 .form-control:focus {
     border-color: #c7b392;
     box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
 }
 .wpcf7-form label {
    text-transform: uppercase;
    margin-bottom: 10px;
}
.button-primary {
    text-transform: uppercase;
}
.wpmozo_ae_masonry_gallery_item{
    overflow: hidden;
}
.wpmozo_ae_masonry_gallery_item:hover p {
    transform: scale(1.1);
}
/*================= footer sec start ===============*/
        footer {
            background-color: #ffffff;
            width: 100%;
            padding: 30px 0;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-bottom: 30px;
        }

        .social-icons a {
            color: #333333;
            font-size: 20px;
            transition: color 0.3s ease;
            text-decoration: none;
        }

        .social-icons a:hover {
            color: #666666;
        }

        .divider {
            border: 0;
            border-top: 1px solid #e0e0e0;
            margin: 0 auto 25px;
            max-width: 1200px;
        }

        .copyright-text {
            text-align: center;
            color: #888888;
            font-size: 14px;
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0 20px;
        }

        .copyright-text a {
            color: #888888;
            text-decoration: none;
        }

        .copyright-text a:hover {
            color: #333333;
        }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-slide {
         height: 500px;
     }

     .hero-section h1 {
         font-size: 2rem;
     }

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

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

     .btn-lg {
         font-size: 0.9rem;
         padding: 10px 20px;
     }

     .owl-carousel .owl-nav button.owl-prev,
     .owl-carousel .owl-nav button.owl-next {
         width: 40px;
         height: 40px;
         font-size: 18px;
     }

     .owl-carousel .owl-nav button.owl-prev {
         left: 10px;
     }

     .owl-carousel .owl-nav button.owl-next {
         right: 10px;
     }
 }


 .faq-header {
     text-align: center;
     margin-bottom: 50px;
     color: white;
 }

 .faq-header h1 {
     font-size: 3rem;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .faq-header p {
     font-size: 1.2rem;
     opacity: 0.9;
 }

 .faq-item {
     background: white;
     border-radius: 12px;
     margin-bottom: 16px;
     overflow: hidden;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .faq-item:hover {
     transform: translateY(-2px);
     box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
 }

 .faq-question {
     padding: 25px 30px;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: white;
     transition: background 0.3s ease;
     user-select: none;
 }

 .faq-question:hover {
     background: #f8f9fa;
 }

 .faq-question h3 {
     font-size: 1.1rem;
     color: #2d3748;
     font-weight: 600;
     flex: 1;
     margin-right: 20px;
 }

 .faq-icon {
     width: 32px;
     height: 32px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     font-weight: 300;
     transition: transform 0.3s ease, background 0.3s ease;
     flex-shrink: 0;
     position: relative;
 }

 .faq-icon::before,
 .faq-icon::after {
     content: '';
     position: absolute;
     background: white;
     transition: transform 0.3s ease;
 }

 .faq-icon::before {
     width: 14px;
     height: 2px;
 }

 .faq-icon::after {
     width: 2px;
     height: 14px;
 }

 .faq-item.active .faq-icon {
     transform: rotate(180deg);
     background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
 }

 .faq-item.active .faq-icon::after {
     transform: rotate(90deg);
     opacity: 0;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.4s ease;
     background: #f8f9fa;
 }

 .faq-answer-content {
     padding: 0 30px;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 20px 0;
 }

 .faq-answer p {
     color: #4a5568;
     line-height: 1.7;
     font-size: 1rem;
 }

 @media (max-width: 768px) {
     .faq-header h1 {
         font-size: 2rem;
     }

     .faq-header p {
         font-size: 1rem;
     }

     .faq-question {
         padding: 20px;
     }

     .faq-question h3 {
         font-size: 1rem;
     }

     .faq-answer-content {
         padding: 0 20px;
     }
 }

 .search-box {
     margin-bottom: 30px;
     text-align: center;
 }

 .search-box input {
     width: 100%;
     max-width: 600px;
     padding: 15px 25px;
     border: none;
     border-radius: 50px;
     font-size: 1rem;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     outline: none;
     transition: box-shadow 0.3s ease;
 }

 .search-box input:focus {
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
 }

 .sub-banner-sec {
     padding: 200px 0 200px;
     background-size: cover;
     background-repeat: no-repeat;
     background-image: url(../images/990-min.webp);
 }

.sub-banner-sec h1 {
    font-size: 50px;
    color: #fff;
    text-transform: capitalize;
}

 .breadcrumb-item+.breadcrumb-item::before {
     color: rgb(255 255 255 / 75%);
 }

 .breadcrumb {
     margin-top: 25px;
 }

 .breadcrumb-item a {
     color: #fff;
     text-decoration: none;
 }

 .breadcrumb-item.active {
     color: rgb(255 255 255);
 }

 .faq-sec {
     padding: 80px 0;
 }

 .blog-card {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     cursor: pointer;
 }

 .blog-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
 }

 .blog-image {
     width: 100%;
     height: 220px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 3rem;
     position: relative;
     overflow: hidden;
 }

 .blog-image::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.2);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .blog-card:hover .blog-image::after {
     opacity: 1;
 }

 .blog-content {
     padding: 25px;
 }

 .blog-meta {
     display: flex;
     gap: 15px;
     margin-bottom: 15px;
     font-size: 0.85rem;
     color: #888;
 }

.blog-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

 .blog-content h3 {
     font-size: 1.4rem;
     margin-bottom: 12px;
     color: #2d3748;
     line-height: 1.4;
 }
  .blog-content h3 a {
     font-size: 1.4rem;
     margin-bottom: 12px;
     color: #2d3748;
     line-height: 1.4;
     text-decoration: none;
 }

 .blog-content p {
     color: #666;
     margin-bottom: 20px;
     line-height: 1.7;
 }

 .read-more {
     color: #667eea;
     font-weight: 600;
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 5px;
     transition: gap 0.3s ease;
 }

 .read-more:hover {
     gap: 10px;
 }

 .featured {
     grid-column: 1 / -1;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
 }

 .featured .blog-image {
     height: 100%;
     min-height: 400px;
 }

 .featured .blog-content {
     padding: 40px;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .featured .blog-content h3 {
     font-size: 2rem;
     margin-bottom: 20px;
 }

 .blog-sec {
     padding: 80px 0;
 }

 .article-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding: 80px 20px 60px;
     color: white;
     text-align: center;
 }

 .article-category {
     display: inline-block;
     background: rgba(255, 255, 255, 0.2);
     padding: 8px 20px;
     border-radius: 20px;
     font-size: 0.9rem;
     margin-bottom: 20px;
     font-weight: 600;
 }

 .article-header h1 {
     font-size: 3rem;
     margin-bottom: 20px;
     max-width: 900px;
     margin-left: auto;
     margin-right: auto;
     line-height: 1.3;
 }

 .article-meta {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
     font-size: 1rem;
     opacity: 0.95;
 }

 .article-meta span {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .featured-image {
     width: 100%;
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 5rem;
     color: white;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
     margin-bottom: 60px;
 }
 .featured-image img{
    width: 100%;
 }

 .article-content {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin-bottom: 40px;
 }

 .article-content h2 {
     font-size: 2rem;
     margin: 40px 0 20px;
     color: #2d3748;
 }

 .article-content h3 {
     font-size: 1.5rem;
     margin: 30px 0 15px;
     color: #4a5568;
 }

 .article-content p {
     margin-bottom: 25px;
     font-size: 1.1rem;
     color: #555;
     line-height: 1.9;
 }

 .article-content blockquote {
     border-left: 4px solid #667eea;
     padding: 20px 30px;
     margin: 30px 0;
     background: #f7fafc;
     border-radius: 8px;
     font-style: italic;
     color: #4a5568;
 }

 .article-content ul,
 .article-content ol {
     margin: 20px 0 20px 30px;
     color: #555;
 }

 .article-content li {
     margin-bottom: 12px;
     font-size: 1.05rem;
 }

 .article-content code {
     background: #f7fafc;
     padding: 3px 8px;
     border-radius: 4px;
     font-family: 'Courier New', monospace;
     color: #667eea;
     font-size: 0.95em;
 }

 .author-card {
     background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     display: flex;
     gap: 25px;
     align-items: center;
     margin-bottom: 40px;
 }

 .author-avatar {
     width: 100px;
     height: 100px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     color: white;
     flex-shrink: 0;
 }

 .author-info h3 {
     font-size: 1.4rem;
     margin-bottom: 8px;
     color: #2d3748;
 }

 .author-info p {
     color: #666;
     line-height: 1.6;
     margin-bottom: 15px;
 }

 .social-links {
     display: flex;
     gap: 15px;
 }

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #000;
}

 .comments-section {
     background: white;
     padding: 50px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     margin-bottom: 40px;
 }

 .comments-section h2 {
     font-size: 2rem;
     margin-bottom: 30px;
     color: #2d3748;
 }

 .comment {
     padding: 25px 0;
     border-bottom: 1px solid #e2e8f0;
 }

 .comment:last-child {
     border-bottom: none;
 }

 .comment-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 12px;
 }

 .comment-avatar {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-weight: 600;
 }

 .comment-author {
     font-weight: 600;
     color: #2d3748;
 }

 .comment-date {
     color: #999;
     font-size: 0.9rem;
 }

 .comment-text {
     margin-left: 65px;
     color: #555;
     line-height: 1.6;
 }

 .comment-form {
     margin-top: 40px;
     padding-top: 40px;
     border-top: 2px solid #e2e8f0;
 }

 .comment-form h3 {
     font-size: 1.5rem;
     margin-bottom: 25px;
     color: #2d3748;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #4a5568;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 12px 18px;
     border: 2px solid #e2e8f0;
     border-radius: 10px;
     font-size: 1rem;
     font-family: inherit;
     transition: border-color 0.3s ease;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #667eea;
 }

 .form-group textarea {
     resize: vertical;
     min-height: 120px;
 }

 .submit-btn {
     padding: 14px 40px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     border: none;
     border-radius: 25px;
     font-size: 1rem;
     font-weight: 600;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .submit-btn:hover {
     transform: translateY(-2px);
 }

.related-posts {
    padding: 0px 0 80px;
}

 .related-posts h2 {
     font-size: 2rem;
     margin-bottom: 30px;
     color: #2d3748;
 }

 .related-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 25px;
 }

 .related-card {
     border: 2px solid #e2e8f0;
     border-radius: 15px;
     overflow: hidden;
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .related-card:hover {
     border-color: #667eea;
     transform: translateY(-5px);
 }

 .related-image {
     width: 100%;
     height: 150px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2.5rem;
     color: white;
 }

 .related-content {
     padding: 20px;
 }

 .related-content h4 {
     font-size: 1.1rem;
     margin-bottom: 10px;
     color: #2d3748;
 }

 .related-content span {
     font-size: 0.85rem;
     color: #999;
 }

 .blog-pagination ul {
  display: inline-flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.blog-pagination ul li a:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.blog-pagination ul li span.current {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}


.card-hover{
    position: relative;
    z-index: 11;
    overflow: hidden;
}
.card-hover::after{
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #c7b392;
    z-index: -1;
    transition: 0.3s ease-in-out all;
}
.card-hover:hover::after{
    bottom: 0;
    transition: 0.3s ease-in-out all;
}
.card-hover:hover img {
    filter: invert(1);
}
.card-hover:hover h2 {
    color: #fff !important;
    transition: 0.3s ease-in-out all;
}
.good-design figcaption.elementor-image-carousel-caption strong {
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
}
/*.real-subheading h2 {*/
/*    transform: translateY(100px);*/
/*     transition: 0.3s ease-in-out all;*/
/*     opacity: 0;*/
/*}*/
/*.real-heading h2 {*/
/*    transform: translateY(100px);*/
/*     transition: 0.3s ease-in-out all;*/
/*     opacity: 0;*/
/*}*/
/*.real-card:hover .real-subheading h2{*/
/*    transform: translateY(0px);*/
/*    transition: 0.3s ease-in-out all;*/
/*    opacity: 1;*/
/*}*/
/*.real-card:hover .real-heading h2{*/
/*    transform: translateY(0px);*/
/*    transition: 0.3s ease-in-out all;*/
/*    opacity: 1;*/
/*}*/


/*============ responstive css ============*/
 @media (max-width: 768px) {
     .article-header h1 {
         font-size: 2rem;
     }

     .featured-image {
         height: 300px;
         font-size: 3rem;
     }

     .article-content {
         padding: 30px 25px;
     }

     .comments-section {
         padding: 30px 25px;
     }

     .related-posts {
         padding: 30px 25px;
     }

     .author-card {
         flex-direction: column;
         text-align: center;
     }

     .related-grid {
         grid-template-columns: 1fr;
     }
     .navbar-nav {
    padding-top: 100px;
}
 }
 
 @media (max-width:991px){
.navbar-brand img {
    max-width: 120px !important;
    width: 100%;
}
.top-href {
    display: none;
}
      .navbar-toggler {
        display: block;
      }

      .navbar-collapse {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #333;
        transition: left 0.4s ease-in-out;
        padding: 5rem 0 2rem 0;
        overflow-y: auto;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        z-index: 9999;
      }

      .navbar-collapse.show {
        left: 0;
      }

      .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
      }

      .nav-item {
        width: 100%;
      }

      .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #444;
        margin: 0;
        border-radius: 0;
      }

      .dropdown.active .dropdown-menu {
    display: block;
    position: relative !important;
    transform: translate(0px) !important;
}

      .dropdown-toggle::after {
        float: right;
        transition: transform 0.3s ease;
      }

      .dropdown.active .dropdown-toggle::after {
        transform: rotate(-180deg);
      }

    /* Overlay */
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
      z-index: 9;
    }

    .overlay.show {
      opacity: 1;
      visibility: visible;
    }
    .navbar-collapse ul {
        flex-direction: column;
        justify-content: end;
        gap: 0;
        padding-top: 0;
    }
    
    
    
 }