/*
Theme Name: Multipurpose Corporate
Theme URI: https://bizcript.com/multipurpose-corporate
Author: Bizcript
Author URI: https://bizcript.com
Description: Elegant and modern WordPress theme designed for curtain and interior shops. Fully responsive layout, customizable color scheme with CSS variables, and a clean structure optimized for WooCommerce and product showcasing.
Version: 1.0.2
License: Proprietary (Commercial Use Only)
License URI: https://bizcript.com/license
Text Domain: multipurposecorporate
Tags: custom-colors, custom-logo, custom-menu, two-columns, right-sidebar, footer-widgets
*/

/* =============================
Design Tokens (CSS Variables)
Change only these values to update colors, spacing, radii, etc.
============================= */

/* ================================
   Theme Color Variables
================================== */
.logobar a,
h6 {
  text-decoration: none;
  color: #1a75bb;
}

#menu-primary-menu li a {
  color: #fff !important;
  font-weight: 800;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Navbar dropdown active / clicked background color */
.navbar .dropdown-menu .dropdown-item:active,
.navbar .dropdown-menu .dropdown-item:focus,
.navbar .dropdown-menu .dropdown-item.active {
  background-color: #1a75bb;
  color: #fff;
}

/* Optional: hover effect same color */
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #1a75bb;
  color: #fff;
}

.info-icon {
  background-color: #1a75bb; /* Navbar color */
  color: #fff; /* Icon color */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-right: 10px;
}

/* Optional: hover effect */
.info-item:hover .info-icon {
  opacity: 0.8;
}

.carousel-item {
  height: 600px;
  position: relative;
  overflow: hidden;
}

/* Image container for animation */
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-in-out infinite alternate;
}

/* Slow zoom-in animation */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.3);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Dark overlay for better text readability */
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.carousel-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  max-width: 45%;
  z-index: 2;
}

.carousel-content h1 {
  font-size: 3rem;
  color: #1a75bb;
}

.carousel-content p {
  font-size: 1.2rem;
  margin: 15px 0;
}

.btn-glow {
  background-color: #1a75bb;
  color: #fff;
  border: none;
  padding: 10px 25px;
  font-weight: bold;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.btn-glow:hover {
  box-shadow: 0 0 20px #1a75bb, 0 0 40px #1a75bb;
}

.info-section {
  color: #fff;
}

.info-box p {
  margin-bottom: 0;
}

.feature-img {
  transition: transform 0.5s ease, filter 0.5s ease;
}
.feature-card:hover .feature-img {
  transform: scale(1.1);
  filter: brightness(90%);
}
.feature-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.btn:hover {
  background-color: #1a75bb !important;
  transform: translateY(-2px);
  transition: all 0.2s ease;
}

/* ---------- FEATURE SECTION ---------- */
.feature-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.feature-section h2 {
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: #1a75bb;
}

.feature-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-card img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.feature-card .card-body {
  background: white;
  text-align: center;
  padding: 25px;
}

/* ---------- ABOUT SECTION ---------- */
.about-section {
  background-color: #fff;
  padding: 80px 0;
}

.about-section h2 {
  color: #1a75bb;
  font-weight: 700;
}

.about-section img {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.icon-wrapper {
  font-size: 40px;
  color: #1a75bb;
  transition: transform 0.4s ease, color 0.3s ease;
}
.service-card:hover .icon-wrapper {
  transform: scale(1.2) rotate(5deg);
  color: #b30034;
}

.collage-section {
  background: #fff;
}
.collage-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 12px;
}

/* grid item sizing */
.collage-grid .col {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 12px;
}
.collage-grid .col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* item variants */
.collage-grid .col.big {
  grid-column: 1 / span 2;
  grid-row: span 2;
}
.collage-grid .col.tall {
  grid-column: 3 / span 1;
  grid-row: span 2;
}
.collage-grid .col.wide {
  grid-column: 4 / span 3;
  grid-row: span 1;
}

/* hover zoom & overlay */
.collage-grid .col:hover img {
  transform: scale(1.12) rotate(0.5deg);
}
.collage-grid .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.35) 60%
  );
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease;
  font-weight: 600;
  font-size: 1rem;
}
.collage-grid .col:hover .overlay {
  opacity: 1;
}

/* overlay text style */
.collage-grid .overlay span {
  background: rgba(255, 0, 71, 0.95);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(255, 0, 71, 0.16);
}

/* responsive breakpoints */
@media (max-width: 992px) {
  .collage-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
    gap: 10px;
  }
  .collage-grid .col.big {
    grid-column: 1 / span 2;
    grid-row: span 2;
  }
  .collage-grid .col.wide {
    grid-column: 3 / span 2;
  }
}

@media (max-width: 576px) {
  .collage-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
    gap: 8px;
  }
  .collage-grid .col.big,
  .collage-grid .col.tall,
  .collage-grid .col.wide {
    grid-column: auto;
    grid-row: auto;
    height: 180px;
  }
  .collage-grid .col img {
    height: 100%;
    object-position: center center;
  }
}

.product-section {
  background: #f9f9f9;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.product-img {
  height: 230px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.product-card:hover img {
  transform: scale(1.1);
}

.product-info {
  padding: 15px;
  text-align: center;
}

.product-info h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.product-info p {
  color: #c59d5f;
  font-weight: bold;
  margin-bottom: 10px;
}

.btn-group .btn {
  border-radius: 50px;
}

.btn-primary {
  background-color: #c59d5f;
  border: none;
}

.btn-primary:hover {
  background-color: #b2853c;
}

.footer-section {
  background-color: #111;
  color: #ddd;
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  width: 180px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
  color: #bbb;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #1a75bb;
  margin-top: 8px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #1a75bb;
  padding-left: 4px;
}

.contact-info {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 14px;
}

.contact-info i {
  color: #1a75bb;
  margin-right: 10px;
}

.social-links a {
  display: inline-block;
  margin-right: 12px;
  color: #ccc;
  font-size: 16px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #1a75bb;
}

.subscribe-form input {
  border-radius: 30px;
  border: none;
  padding: 10px 15px;
}

.btn-primary {
  background-color: #1a75bb;
  border: none;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: #cc0039;
}

.footer-bottom {
  background-color: #0a0a0a;
  color: #888;
  font-size: 14px;
  border-top: 1px solid #222;
}

/* ===== Hero Section ===== */
.hero-section {
  background: url("assets/3.jpg") center/cover no-repeat;
  min-height: 60vh;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-section h1 {
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-section p {
  color: #f1f1f1;
  font-size: 1.1rem;
}

/* ===== About Section ===== */
.about-section h2 {
  color: #222;
}

.about-section .btn-primary {
  background-color: #1a75bb;
  border: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.about-section .btn-primary:hover {
  background-color: #cc0039;
}

.about-image {
  position: relative;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #1a75bb;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  text-align: center;
}

.experience-badge h4 {
  font-size: 2rem;
  margin: 0;
}

.experience-badge p {
  margin: 0;
  font-size: 14px;
}

/* ===== Stats Section ===== */
.stats-section {
  background: linear-gradient(135deg, #1a75bb, #cc0039);
}

.stats-section i {
  color: #fff;
  transition: transform 0.3s ease;
}

.stats-section i:hover {
  transform: scale(1.2);
}

.stats-section h3 {
  color: #fff;
  margin-bottom: 5px;
}

.stats-section p {
  color: #f8d7da;
  font-size: 0.95rem;
}

.features-section .bg-white {
  transition: all 0.3s ease;
}
.features-section .bg-white:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 0, 71, 0.15);
}

.product-image img {
  transition: transform 3s ease;
}
.product-image:hover img {
  transform: scale(1.1);
}

.thumb-img {
  cursor: pointer;
  width: 70px;
  height: 70px;
  object-fit: cover;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.thumb-img:hover {
  transform: scale(1.05);
}

.active-thumb {
  border-color: #1a75bb !important;
}

@media (max-width: 768px) {
  .thumb-img {
    width: 60px;
    height: 60px;
  }
}

/* ===== Gallery Fixed Height ===== */
.gallery-img {
  height: 250px; /* Fixed height for all images */
  width: 100%;
  object-fit: cover;
}

/* ===== Existing hover overlay effect ===== */
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  transition: all 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(80%);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 0, 71, 0.8);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: height 0.4s ease;
  border-radius: 0 0 10px 10px;
}

.gallery-item:hover .gallery-overlay {
  height: 100%;
}

.gallery-overlay h5 {
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay h5 {
  opacity: 1;
}

.contact-info-row {
  min-height: 100px; /* Row height, form sathe match korar jonno */
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px; /* icon size */
  height: 80px; /* icon size */
  background-color: #1a75bb;
  color: #fff;
  border-radius: 50%;
  font-size: 36px; /* icon font size */
}

.blog-img-wrapper {
  height: 220px;
  overflow: hidden;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.blog-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.08);
}

.hero-section .overlay {
  background: rgba(0, 0, 0, 0.6);
}

@media (max-width: 767px) {
  .hero-section {
    height: 250px !important;
  }
  .blog-img-wrapper {
    height: 180px;
  }
}

/* blog details */
blockquote {
  font-style: italic;
  border-radius: 8px;
}

.badge {
  font-size: 0.85rem;
}

.comments-section input,
.comments-section textarea {
  border-radius: 10px;
  border: 1px solid #ddd;
}

.comments-section input:focus,
.comments-section textarea:focus {
  border-color: #1a75bb;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 71, 0.1);
}

@media (max-width: 768px) {
  .hero-section {
    height: 250px !important;
  }
}

/* category post */
.category-hero-section {
  background-color: #f8f9fa;
}
.category-hero-section .col-lg-6.position-relative:hover .overlay {
  opacity: 1;
}
.category-hero-section img {
  transition: transform 0.3s;
}
.category-hero-section .col-lg-6.position-relative:hover img {
  transform: scale(1.05);
}

/* Ensure list markers match theme color */

.list-unstyled li > i {
  color: #1a75bb;
}
.category-hero-section li::marker {
  color: #1a75bb;
  font-weight: bold;
}

.frontpage-widget-area {
  background-color: #f8f9fa;
}
.frontpage-widget {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.widget-title {
  font-weight: 700;
  color: #1a75bb;
}

.topbar-menu {
  list-style: none; /* remove bullets */
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem; /* spacing between links */
}
.topbar-menu li a {
  text-decoration: none;
  color: #1a75bb; /* change color if needed */
}
