/* ==================== GLOBAL STYLES ==================== */
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
  background-color: var(--white) !important;
  font-family: "Segoe UI", sans-serif;
}
:focus,
:active {
  box-shadow: none !important;
}
/* FULL WIDTH LUXURY TOP BAR */
.top-bar {
  width: 100%;
  background: #fff5f5;
  position: relative;
  z-index: 1000;
}

/* Premium red top border line */
.top-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 50%, #dc2626 100%);
}

/* Premium red bottom border line */
.top-bar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(220, 38, 38, 0.4) 20%,
    rgba(220, 38, 38, 0.6) 50%,
    rgba(220, 38, 38, 0.4) 80%,
    transparent 100%
  );
}

.top-bar-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 20px;
}

/* ========== LEFT SECTION: Contact Icons (CLICKABLE) ========== */
.contact-info {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  padding: 6px 0;
  cursor: pointer;
}

/* Subtle red bottom line on hover */
.contact-item::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #dc2626;
  transition: width 0.3s ease;
}

.contact-item:hover::after {
  width: 100%;
}

.contact-item i {
  font-size: 14px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.contact-item span {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #1a2a6c;
  font-family: "Montserrat", sans-serif;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.contact-item:hover i {
  color: #ef4444;
  transform: translateY(-1px);
}

.contact-item:hover span {
  color: #dc2626;
}

/* ========== CENTER SECTION: Premium Bespoke Text ========== */
.center-text {
  text-align: center;
  flex-shrink: 1;
}

.bespoke-line {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}

.bespoke-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1a2a6c;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
  padding: 6px 0;
  white-space: nowrap;
}

.bespoke-item .red-star {
  color: #dc2626;
  font-size: 12px;
  margin-right: 6px;
  transition: all 0.3s ease;
}

.bespoke-item .red-text {
  color: #dc2626;
  font-weight: 600;
}

.divider-premium {
  width: 3px;
  height: 3px;
  background: #dc2626;
  border-radius: 50%;
  opacity: 0.5;
  flex-shrink: 0;
}

.bespoke-item:hover {
  color: #dc2626;
  cursor: default;
  transform: translateY(-1px);
}

.bespoke-item:hover .red-star {
  color: #ef4444;
  transform: rotate(15deg);
}

/* ========== RIGHT SECTION: Social Icons (CLICKABLE) ========== */
.social-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  border: 1px solid rgba(220, 38, 38, 0.3);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

/* Shine effect on hover */
.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.social-icon:hover::before {
  left: 100%;
}

.social-icon i {
  font-size: 16px;
  color: #1a2a6c;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #dc2626;
  border-color: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.social-icon:hover i {
  color: #ffffff;
  transform: scale(1.05);
}

/* ========== MOBILE RESPONSIVE ========== */
.mobile-only-contact {
  display: none;
}

/* FOR 1200px LAPTOP - ensures everything in ONE ROW */
@media screen and (max-width: 1200px) {
  .top-bar-container {
    padding: 12px 30px;
    gap: 15px;
  }

  .contact-info {
    gap: 18px;
  }

  .contact-item span {
    font-size: 11px;
  }

  .contact-item i {
    font-size: 12px;
  }

  .bespoke-line {
    gap: 16px;
  }

  .bespoke-item {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

  .bespoke-item .red-star {
    font-size: 10px;
  }

  .social-icons {
    gap: 12px;
  }

  .social-icon {
    width: 32px;
    height: 32px;
  }

  .social-icon i {
    font-size: 14px;
  }
}

/* Tablet - still one row (more compact) */
@media screen and (max-width: 992px) {
  .top-bar-container {
    padding: 10px 20px;
    gap: 12px;
  }

  .contact-info {
    gap: 12px;
  }

  .contact-item span {
    font-size: 10px;
  }

  .contact-item i {
    font-size: 11px;
  }

  .bespoke-line {
    gap: 12px;
  }

  .bespoke-item {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .bespoke-item .red-star {
    font-size: 9px;
    margin-right: 4px;
  }

  .social-icons {
    gap: 10px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon i {
    font-size: 13px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .top-bar-container {
    padding: 12px 20px;
  }

  /* Hide all desktop sections */
  .contact-info {
    display: none;
  }

  .center-text {
    display: none;
  }

  .social-icons {
    display: none;
  }

  /* Show mobile row */
  .mobile-only-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
  }

  .mobile-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 12px;
    text-decoration: none;
    position: relative;
    flex: 1;
    background: rgba(220, 38, 38, 0.08);
    border-radius: 40px;
    border: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .mobile-item:hover {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
    transform: translateY(-1px);
  }

  .mobile-item i {
    font-size: 16px;
    color: #dc2626;
  }

  .mobile-item span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #1a2a6c;
    font-family: "Montserrat", sans-serif;
  }

  .mobile-item:hover i {
    color: #ef4444;
  }

  .mobile-item:hover span {
    color: #dc2626;
  }
}

@media screen and (max-width: 480px) {
  .top-bar-container {
    padding: 10px 16px;
  }

  .mobile-item span {
    font-size: 10px;
  }

  .mobile-item i {
    font-size: 12px;
  }

  .mobile-only-contact {
    gap: 10px;
  }

  .mobile-item {
    padding: 6px 10px;
  }
}
/* ==================================== MIDDLE SECTION STYLING ==================================== */
.middle-section {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.middle-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-area {
  flex-shrink: 0;
}

.logo-img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.center-premium {
  text-align: center;
}

.premium-text-line {
  display: flex;
  align-items: center;
  gap: 28px;
}

.premium-item {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #1e40af;
  text-transform: uppercase;
  position: relative;
  white-space: nowrap;
}

.premium-item .gold-star {
  color: #dc2626;
  margin-right: 8px;
}

.premium-item .gold-text {
  color: #dc2626;
  font-weight: 600;
}

.premium-divider {
  width: 4px;
  height: 4px;
  background: #dc2626;
  border-radius: 50%;
  opacity: 0.4;
}

.action-area {
  flex-shrink: 0;
}

/* Stylish Book Now Button */
.book-now-btn {
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.book-now-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.book-now-btn:hover::before {
  left: 100%;
}

.book-now-btn i {
  font-size: 14px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.book-now-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

.book-now-btn:hover i {
  color: #ffffff;
  transform: translateX(4px);
}
/* ========== BOOTSTRAP 5 NAVBAR ========== */
.navbar {
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.navbar-nav {
  gap: 8px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #1e40af !important;
  padding: 18px 16px !important;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.08);
  transform: translateY(-1px);
}

/* ========== MEGA DROPDOWN MENU ========== */
.nav-item.mega-dropdown {
  position: static;
}

.dropdown-menu.mega-menu {
  width: 100%;
  max-width: 1100px;
  left: 50% !important;
  transform: translateX(-50%) !important;
  margin-top: 0;
  border-radius: 0 0 20px 20px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid rgba(30, 64, 175, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  max-height: 500px;
  overflow-y: auto;
  position: relative;
}

/* Carpet Related Background Shapes */
.mega-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
}

.mega-shape-1 {
  top: 20px;
  right: 20px;
  width: 150px;
  height: 150px;
  background: repeating-linear-gradient(
    45deg,
    #1e40af,
    #1e40af 3px,
    transparent 3px,
    transparent 15px
  );
  border-radius: 20px;
  transform: rotate(15deg);
}

.mega-shape-2 {
  bottom: 30px;
  left: 20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #dc2626, transparent);
  border-radius: 50%;
  filter: blur(20px);
}

.mega-shape-3 {
  top: 50%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%231e40af" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.mega-shape-4 {
  bottom: 10%;
  right: 15%;
  width: 120px;
  height: 60px;
  background: repeating-linear-gradient(
    90deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 12px
  );
  border-radius: 15px;
  transform: rotate(-10deg);
}

.mega-shape-5 {
  top: 15%;
  left: 30%;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 20% 30%, #1e40af 3px, transparent 3px);
  background-size: 12px 12px;
  border-radius: 50%;
}

/* Custom Scrollbar */
.dropdown-menu.mega-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu.mega-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.dropdown-menu.mega-menu::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 10px;
}

/* Desktop Hover Effect */
@media (min-width: 992px) {
  .nav-item.mega-dropdown:hover .dropdown-menu {
    display: block;
  }
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
  /* Hide Mobile Sidebar trigger button on desktops */
  .navbar-toggler {
    display: none;
  }
}

/* Mega Menu Rows */
.mega-menu-row {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* First Column - Logo + Intro + Button */
.mega-col-intro {
  flex: 1;
  min-width: 220px;
  padding-right: 25px;
  border-right: 1px solid rgba(30, 64, 175, 0.1);
}

.mega-col-intro .mega-logo {
  margin-bottom: 20px;
}

.mega-col-intro .mega-logo img {
  max-height: 55px;
  width: auto;
}

.mega-col-intro .mega-intro h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 10px;
}

.mega-col-intro .mega-intro p {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mega-col-intro .mega-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.mega-col-intro .mega-book-btn i {
  color: #dc2626;
}

.mega-col-intro .mega-book-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 38, 38, 0.3);
}

.mega-col-intro .mega-book-btn:hover i {
  color: #ffffff;
}

/* Category Columns Container */
.mega-cols-container {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Individual Category Column */
.mega-col {
  flex: 1;
  min-width: 160px;
}

.mega-col-title {
  font-size: 16px;
  font-weight: 800;
  color: #1e40af;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #dc2626;
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
}

.mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-links li {
  margin-bottom: 12px;
}

.mega-links a {
  color: #4a423e;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.mega-links a i {
  font-size: 12px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.mega-links a:hover {
  color: #dc2626;
  transform: translateX(5px);
}

.mega-links a:hover i {
  transform: translateX(3px);
}

/* Category Cards Row */
.mega-cards-row {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 64, 175, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.mega-category-card {
  flex: 1;
  background: #f8f6f2;
  border-radius: 16px;
  padding: 15px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  min-width: 180px;
}

.mega-category-card:hover {
  background: #ffffff;
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.mega-category-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mega-category-icon {
  width: 45px;
  height: 45px;
  background: rgba(30, 64, 175, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mega-category-card:hover .mega-category-icon {
  background: #1e40af;
}

.mega-category-icon i {
  font-size: 22px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.mega-category-card:hover .mega-category-icon i {
  color: #ffffff;
}

.mega-category-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 4px;
}

.mega-category-info p {
  font-size: 11px;
  color: #8b7d6b;
  margin: 0;
}

/* ========== REGULAR DROPDOWN STYLING ========== */
.dropdown-menu:not(.mega-menu) {
  background: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  margin-top: 0;
  min-width: 240px;
  border: 1px solid rgba(30, 64, 175, 0.15);
}

.dropdown-item {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2c2e33;
  padding: 10px 24px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.dropdown-item i {
  width: 24px;
  color: #dc2626;
  margin-right: 10px;
  font-size: 13px;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  transform: translateX(5px);
}

.dropdown-item:hover i {
  color: #dc2626;
  transform: translateX(2px);
}

.dropdown-divider {
  margin: 8px 0;
  border-color: rgba(30, 64, 175, 0.1);
}

/* Dropdown Toggle Arrow */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  border: none;
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-link.active {
  color: #dc2626 !important;
  background: rgba(220, 38, 38, 0.08);
}

/* Mobile Toggle Button */
.navbar-toggler {
  border: 1px solid #dc2626;
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%23DC2626' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ========== FUNCTIONAL SIDEBAR STYLES (MOBILE) ========== */
.offcanvas {
  width: 300px !important;
  background-color: #ffffff;
}

.offcanvas-body .nav-link {
  padding: 12px 15px !important;
  border-radius: 8px;
  margin-bottom: 5px;
}

/* Mobile Accordion Style Dropdown */
.mobile-mega-dropdown-menu {
  display: none;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  margin-top: 5px;
  max-height: 350px;
  overflow-y: auto;
  border: 1px solid rgba(30, 64, 175, 0.08);
}

.dropdown.show .mobile-mega-dropdown-menu {
  display: block;
}

.offcanvas-body .mega-col {
  margin-bottom: 20px;
}

.offcanvas-body .mega-col-title {
  margin-bottom: 10px;
  font-size: 15px;
}

/* ========== MOBILE SPECIFIC FIXES ========== */
@media screen and (max-width: 992px) {
  .middle-container {
    padding: 0 20px;
    gap: 20px;
    justify-content: center;
  }
  .center-premium {
    order: 3;
    width: 100%;
    margin-top: 15px;
  }
  .premium-text-line {
    justify-content: center;
    flex-wrap: wrap;
  }
  .navbar-container {
    padding: 0 20px;
    display: flex;
    justify-content: flex-end; /* Aligns hamburger toggle to right */
  }
}

@media screen and (max-width: 768px) {
  .middle-container {
    flex-direction: column;
    gap: 15px;
  }
  .logo-img {
    max-height: 50px;
    width: 100%;
  }
  .premium-item {
    font-size: 5px;
    white-space: normal;
  }
  .premium-text-line {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .book-now-btn {
    padding: 8px 20px;
    font-size: 11px;
  }
}
@media screen and (max-width: 992px) {
  .logo-area.w-100-mobile {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
  }

  .navbar {
    border: none;
  }

  .navbar-container {
    justify-content: center !important;
  }
}
@media screen and (max-width: 1300px) {
  .premium-text-line {
    gap: 5px;
  }
}
/*==========================HERO SLIDER SECTION STYLING=============================*/
.hero-slider {
  width: 100%;
  background: #0f1a2e;
  position: relative;
}

.slider-container {
  width: 100%;
  position: relative;
}

.slide {
  width: 100%;
  position: relative;
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  display: block;
  opacity: 1;
}

.slide-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slide-bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 8s ease-in-out;
}
.slide.active .slide-bg {
  transform: scale(1.08);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(26, 42, 108, 0.85) 50%,
    rgba(15, 20, 50, 0.95) 100%
  );
  /* background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.15) 0%,
    rgb(26 42 108 / 45%) 50%,
    rgb(15 20 50 / 60%) 100%
  ); */
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 60px;
  gap: 50px;
  min-height: auto;
}

.slide-left {
  flex: 1;
  animation: fadeInLeft 0.8s ease-out;
  opacity: 0;
  transform: translateX(-30px);
  animation-fill-mode: forwards;
}

.slide.active .slide-left {
  animation: fadeInLeft 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 20px;
  display: inline-block;
  background: rgb(220 38 38 / 56%);
  padding: 6px 16px;
  border-radius: 30px;
}

.slide-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
}

.slide-heading .gold-text {
  color: #dc2626;
}

.slide-para {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 500px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  background: #dc2626;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 40px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary-custom:hover {
  background: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  color: #ffffff;
}

.btn-outline-custom {
  background: transparent;
  color: #ffffff;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid #dc2626;
  border-radius: 40px;
  transition: all 0.4s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-outline-custom:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.slide-right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease-out;
  opacity: 0;
  transform: translateX(30px);
  animation-fill-mode: forwards;
}

.slide.active .slide-right {
  animation: fadeInRight 0.8s ease-out 0.3s forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-glow-container {
  position: relative;
  display: inline-block;
}

.image-glow-container img {
  max-width: 100%;
  height: auto;
  max-height: 350px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
  transition: filter 0.5s ease;
}

.image-glow-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.35) 0%,
    rgba(26, 42, 108, 0.2) 50%,
    rgba(220, 38, 38, 0) 70%
  );
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    width: 110%;
    height: 110%;
  }
  50% {
    opacity: 1;
    width: 120%;
    height: 120%;
  }
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(220, 38, 38, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #dc2626;
  font-size: 20px;
  text-decoration: none;
}

.slider-nav:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  border-color: #dc2626;
}

.nav-prev {
  left: 30px;
}

.nav-next {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(45deg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.5);
}

.dot.active {
  background: #dc2626;
  transform: rotate(45deg) scale(1.3);
  border-color: #dc2626;
  box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.dot:hover {
  background: #dc2626;
  transform: rotate(45deg) scale(1.1);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media screen and (max-width: 992px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 80px 40px;
    gap: 40px;
  }
  .slide-left {
    text-align: center;
    width: 100%;
  }
  .slide-para {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .cta-buttons {
    justify-content: center;
  }
  .slide-heading {
    font-size: 42px;
  }
  /* Hide right image on tablet and mobile */
  .slide-right {
    display: none !important;
  }
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .slide-content {
    padding: 60px 24px;
  }
  .slide-heading {
    font-size: 32px;
  }
  .slide-tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }
  .slide-para {
    font-size: 13px;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    padding: 8px 12px;
    font-size: 10px;
  }
  .slider-dots {
    bottom: 20px;
    gap: 15px;
  }
  .dot {
    width: 10px;
    height: 10px;
  }
  .slider-nav {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .nav-prev {
    left: 15px;
  }
  .nav-next {
    right: 15px;
  }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
  .slide-content {
    padding: 50px 20px;
  }
  .slide-heading {
    font-size: 26px;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
  .slide-tagline {
    font-size: 10px;
  }
  .slide-para {
    font-size: 12px;
  }
}
/* ========== LATEST NEWS SECTION ========== */
.news-full-section {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  overflow: hidden;
  padding: 40px 0;
  position: relative;
}

/* Animated Background Shapes */
.news-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.news-bg-shape {
  position: absolute;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  animation: newsFloat 15s ease-in-out infinite;
}

.news-bg-shape:nth-child(1) {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
  animation-duration: 20s;
}

.news-bg-shape:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -50px;
  right: 10%;
  animation-duration: 18s;
  animation-delay: -3s;
}

.news-bg-shape:nth-child(3) {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 20%;
  animation-duration: 25s;
}

.news-bg-shape:nth-child(4) {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -50px;
  opacity: 0.2;
  animation-duration: 22s;
}

@keyframes newsFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-30px) translateX(20px);
  }
}

.news-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.news-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* ===== LEFT SIDE - Glass Heading ===== */
.news-left-glass {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 30px 25px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.4s ease;
}

.news-left-glass:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-5px);
}

.news-left-icon {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 15px;
}

.news-left-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.2;
}

.news-left-title span {
  color: #ffffff;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
}

.news-left-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

/* ===== RIGHT SIDE - Marquee News Cards ===== */
.news-right-marquee {
  flex: 1;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 24px;
  padding: 15px 0;
}

.news-marquee {
  width: 100%;
  white-space: nowrap;
}

.news-marquee-cards {
  display: inline-flex;
  gap: 20px;
  padding: 5px 15px;
}

/* Horizontal News Card - Image Left, Content Right */
.news-horizontal-card {
  width: 320px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: inline-flex;
  align-items: stretch;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.news-horizontal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.news-horizontal-img {
  width: 110px;
  height: 130px;
  margin-right: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.news-horizontal-content {
  flex: 1;
  padding: 14px;
  border-left: 2px dashed #dc2626;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-horizontal-date {
  font-size: 10px;
  color: #dc2626;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.news-horizontal-date i {
  font-size: 10px;
}

.news-horizontal-title {
  font-size: 10px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 4px;
  line-height: 1.4;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-horizontal-desc {
  font-size: 10px;
  color: #6b6b6b;
  margin-bottom: 4px;
  line-height: 1.45;
  white-space: normal;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-horizontal-readmore {
  font-size: 10px;
  font-weight: 700;
  color: #dc2626;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.news-horizontal-readmore:hover {
  gap: 10px;
  color: #1a2a6c;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .news-container {
    padding: 0 30px;
  }
  .news-left-glass {
    width: 280px;
  }
}

@media screen and (max-width: 992px) {
  .news-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .news-left-glass {
    width: 100%;
    text-align: center;
  }
  .news-left-icon {
    font-size: 40px;
  }
  .news-right-marquee {
    width: 100%;
  }
  .news-horizontal-card {
    width: 340px;
  }
}

@media screen and (max-width: 768px) {
  .news-container {
    padding: 0 20px;
  }
  .news-full-section {
    padding: 40px 0;
  }
  .news-left-title {
    font-size: 28px;
  }
  .news-horizontal-card {
    width: 300px;
  }
  .news-horizontal-img {
    width: 100px;
    height: 120px;
  }
}

@media screen and (max-width: 480px) {
  .news-horizontal-card {
    width: 280px;
  }
  .news-horizontal-img {
    width: 90px;
    height: 110px;
  }
  .news-horizontal-title {
    font-size: 13px;
  }
  .news-horizontal-desc {
    font-size: 10px;
  }
}
/* ========== ABOUT COMPANY SECTION DESIGN ========== */
.about-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-bg-modern {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.03) 0%,
    rgba(220, 38, 38, 0.08) 100%
  );
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.carpet-shapes-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.carpet-shape {
  position: absolute;
  opacity: 0.12;
  animation: floatCarpet 12s infinite ease-in-out;
}

/* Carpet Weave Pattern Shape */
.shape-weave {
  top: 15%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: repeating-linear-gradient(
    90deg,
    #dc2626,
    #dc2626 2px,
    transparent 2px,
    transparent 12px
  ) !important;
  transform: rotate(15deg);
  border-radius: 20px;
  animation-delay: 0s;
}

.shape-diamond {
  bottom: 20%;
  left: 10%;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%23DC2626" stroke-width="2"/><polygon points="50,25 75,50 50,75 25,50" fill="none" stroke="%23DC2626" stroke-width="1.5"/><circle cx="50" cy="50" r="8" fill="%23DC2626" opacity="0.5"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation-delay: -3s;
}

.shape-medallion {
  top: 50%;
  left: -5%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.15), transparent 70%);
  animation-delay: -6s;
}

.shape-border {
  bottom: 10%;
  left: 20%;
  width: 150px;
  height: 80px;
  background: repeating-linear-gradient(
    45deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 15px
  ) !important;
  border-radius: 15px;
  transform: rotate(-10deg);
  animation-delay: -2s;
}

.shape-fringe {
  top: 30%;
  left: -3%;
  width: 100px;
  height: 200px;
  background: repeating-linear-gradient(
    0deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 12px
  ) !important;
  border-radius: 0 20px 20px 0;
  animation-delay: -5s;
}

.shape-dots {
  top: 70%;
  left: 15%;
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle at 20% 30%,
    #dc2626 2px,
    transparent 2px
  ) !important;
  background-size: 15px 15px;
  border-radius: 50%;
  animation-delay: -4s;
}

@keyframes floatCarpet {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
    opacity: 0.18;
  }
}

.image-glow-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 70%;
  background: radial-gradient(
    ellipse at center,
    rgba(220, 38, 38, 0.15) 0%,
    rgba(220, 38, 38, 0.05) 40%,
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 1;
}

/* ========== LEFT SIDE - MODERN IMAGE LAYOUT ========== */
.about-image-modern {
  position: relative;
}

/* Main Image Card */
.image-card-main {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
}

.image-card-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.image-card-main:hover img {
  transform: scale(1.05);
}

/* Floating Experience Badge */
.exp-badge-modern {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(26, 42, 108, 0.9);
  backdrop-filter: blur(10px);
  padding: 12px 24px;
  border-radius: 50px;
  border-left: 3px solid #dc2626;
  z-index: 2;
}

.exp-badge-modern .years {
  font-size: 28px;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.exp-badge-modern .text {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Floating Small Images */
.floating-img-modern {
  position: absolute;
  border-radius: 50px 50px 50px 0;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  border: 3px solid #ffffff;
  z-index: 2;
}

.floating-img-modern:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: #dc2626;
}

.floating-img-1 {
  border-radius: 50px 50px 50px 0;
  top: -30px;
  right: -20px;
  width: 180px;
  height: 180px;
}

.floating-img-2 {
  bottom: -20px;
  right: 50px;
  width: 140px;
  height: 140px;
}

.floating-img-modern img {
  width: 100%;
  border-radius: 50px 50px 50px 0;
  height: 100%;
  object-fit: cover;
}

/* Decorative Line */
.gold-line-modern {
  position: absolute;
  bottom: 40px;
  left: -30px;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, transparent);
}

/* ========== RIGHT SIDE - MODERN CONTENT ========== */
.about-content-modern {
  padding-left: 50px;
}

/* Modern Tagline */
.tagline-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.tagline-line {
  width: 40px;
  height: 2px;
  background: #dc2626;
}

.tagline-modern span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #dc2626;
}

/* Modern Heading */
.heading-modern {
  font-family: "Cormorant Garamond", serif;
  font-size: 35px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
  line-height: 1.2;
}

.heading-modern .gold {
  color: #dc2626;
  position: relative;
  display: inline-block;
}

.heading-modern .gold::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(220, 38, 38, 0.2);
  z-index: -1;
}

/* Description */
.desc-modern {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Modern Stats Row - Desktop 4 columns */
.stats-modern {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  padding: 20px 0;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 800;
  color: #dc2626;
  display: block;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #8b7d6b;
  letter-spacing: 1px;
}

/* Modern Features Grid */
.features-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.feature-modern-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-modern-item:hover {
  transform: translateX(8px);
}

.feature-icon-modern {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-modern-item:hover .feature-icon-modern {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: scale(1.05);
}

.feature-icon-modern i {
  font-size: 22px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.feature-modern-item:hover .feature-icon-modern i {
  color: #ffffff;
}

.feature-text-modern h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 4px;
}

.feature-text-modern p {
  font-size: 10px;
  color: #8b7d6b;
  margin: 0;
}

/* Modern CTA Buttons */
.cta-modern {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #ffffff;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.btn-primary-modern i {
  transition: transform 0.3s ease;
  color: #ffffff;
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.35);
  background: linear-gradient(135deg, #b91c1c, #991b1b);
}

.btn-primary-modern:hover i {
  transform: translateX(6px);
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.btn-outline-modern i {
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-outline-modern:hover {
  border-color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  transform: translateY(-3px);
}

.btn-outline-modern:hover i {
  transform: scale(1.1);
}

/* ========== RESPONSIVE - MOBILE ADJUSTMENTS ========== */

/* Tablet and below */
@media screen and (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  .about-container {
    padding: 0 30px;
  }
  .about-content-modern {
    padding-left: 0;
    margin-top: 60px;
  }
  .heading-modern {
    font-size: 38px;
  }
  .image-card-main img {
    height: 400px;
  }
  .floating-img-1 {
    width: 130px;
    height: 130px;
    top: -15px;
    right: -5px;
  }
  .floating-img-2 {
    width: 100px;
    height: 100px;
    bottom: -10px;
    right: 20px;
  }
  .carpet-shape {
    opacity: 0.06;
  }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-container {
    padding: 0 20px;
  }

  /* Heading smaller */
  .heading-modern {
    font-size: 30px;
    margin-bottom: 15px;
  }

  /* Description smaller */
  .desc-modern {
    font-size: 14px;
    margin-bottom: 25px;
  }

  /* Image height reduced */
  .image-card-main img {
    height: 280px;
  }

  /* Floating images - hide on mobile for cleaner look */
  .floating-img-1,
  .floating-img-2 {
    display: none;
  }

  /* Experience badge smaller */
  .exp-badge-modern {
    padding: 6px 15px;
    bottom: 12px;
    left: 12px;
  }

  .exp-badge-modern .years {
    font-size: 20px;
  }

  .exp-badge-modern .text {
    font-size: 9px;
  }

  /* Stats - 2 columns grid on mobile */
  .stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px 0;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }

  .features-modern {
    gap: 12px;
    margin-bottom: 30px;
  }

  .feature-modern-item {
    padding: 8px 0;
    gap: 10px;
  }

  .feature-icon-modern {
    width: 40px;
    height: 40px;
  }

  .feature-icon-modern i {
    font-size: 18px;
  }

  .feature-text-modern h4 {
    font-size: 13px;
  }

  .feature-text-modern p {
    font-size: 10px;
  }

  .cta-modern {
    flex-direction: row;
    gap: 12px;
    justify-content: center;
  }

  .btn-primary-modern,
  .btn-outline-modern {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 1px;
    flex: 1;
    justify-content: center;
  }

  .btn-primary-modern i,
  .btn-outline-modern i {
    font-size: 12px;
  }

  /* Tagline smaller */
  .tagline-modern span {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .tagline-line {
    width: 30px;
  }

  .carpet-shape {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-container {
    padding: 0 15px;
  }

  .heading-modern {
    font-size: 24px;
  }

  .desc-modern {
    font-size: 12px;
  }

  .image-card-main img {
    height: 200px;
  }

  .stat-number {
    font-size: 20px;
  }

  .stat-label {
    font-size: 8px;
  }

  .feature-icon-modern {
    width: 35px;
    height: 35px;
  }

  .feature-icon-modern i {
    font-size: 16px;
  }

  .feature-text-modern h4 {
    font-size: 9px;
  }

  .feature-text-modern p {
    font-size: 8px;
  }

  .btn-primary-modern,
  .btn-outline-modern {
    padding: 8px 15px;
    font-size: 8px;
  }

  .btn-primary-modern i,
  .btn-outline-modern i {
    font-size: 11px;
  }
  .exp-badge-modern {
    padding: 4px 12px;
  }

  .exp-badge-modern .years {
    font-size: 16px;
  }

  .exp-badge-modern .text {
    font-size: 8px;
  }

  .floating-img-1,
  .floating-img-2 {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .stats-modern {
    display: flex;
    flex-direction: row;
  }

  .stat-item {
    flex: 1;
  }

  .cta-modern {
    flex-direction: row;
  }
}
/* ======================== WHAT WE DO SECTION ============================== */
.what-we-do-section {
  padding: 60px 0;
  background: linear-gradient(165deg, #fff5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.wwd-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.wwd-section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.wwd-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.wwd-section-title .wwd-gold {
  color: #dc2626;
}

.wwd-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Cards Container */
.wwd-cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row Grid System */
.wwd-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.wwd-col {
  padding-right: 15px;
  padding-left: 15px;
}

/* Desktop: 3 columns */
@media (min-width: 992px) {
  .wwd-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

/* Tablet: 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
  .wwd-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: 2 columns */
@media (max-width: 767px) {
  .wwd-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Premium Service Card - Luxury Shape Design */
.wwd-service-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.1);
  height: 100%;
  position: relative;
}

.wwd-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}

/* Image Container */
.wwd-card-image {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.wwd-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wwd-service-card:hover .wwd-card-image img {
  transform: scale(1.08);
}

/* Red Overlay on Image Hover */
.wwd-card-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.3) 0%,
    rgba(220, 38, 38, 0) 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.wwd-service-card:hover .wwd-card-image::after {
  opacity: 1;
}

/* Circle Icon - Between Image and Content */
.wwd-icon-circle {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -35px auto 0;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(220, 38, 38, 0.3);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.wwd-service-card:hover .wwd-icon-circle {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  border-color: #dc2626;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.wwd-icon-circle i {
  font-size: 32px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.wwd-service-card:hover .wwd-icon-circle i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Card Body */
.wwd-card-body {
  padding: 25px 25px 30px;
  text-align: center;
}

.wwd-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px !important;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 12px;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.wwd-service-card:hover .wwd-card-title {
  color: #dc2626;
}

.wwd-card-description {
  font-size: 10px !important;
  color: #6b6b6b;
  text-align: justify !important;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* View All Button */
.wwd-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 2px solid rgba(220, 38, 38, 0.3);
  transition: all 0.3s ease;
}

.wwd-view-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.wwd-view-btn:hover {
  color: #ef4444;
  border-bottom-color: #dc2626;
  gap: 12px;
}

.wwd-view-btn:hover i {
  transform: translateX(5px);
}

/* Bottom View All Button */
.wwd-bottom-btn-wrapper {
  text-align: center;
  margin-top: 50px;
}

.wwd-view-all-bottom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #1a2a6c;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid #dc2626;
  transition: all 0.4s ease;
}

.wwd-view-all-bottom i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.wwd-view-all-bottom:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.wwd-view-all-bottom:hover i {
  transform: translateX(5px);
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */

/* Desktop Large */
@media screen and (max-width: 1200px) {
  .wwd-cards-container {
    padding: 0 30px;
  }
  .wwd-section-title {
    font-size: 42px;
  }
  .wwd-card-image {
    height: 200px;
  }
  .wwd-icon-circle {
    width: 65px;
    height: 65px;
  }
  .wwd-icon-circle i {
    font-size: 28px;
  }
}

/* Tablet (992px - 768px) - 2 cards per row */
@media screen and (max-width: 991px) {
  .what-we-do-section {
    padding: 70px 0;
  }
  .wwd-cards-container {
    padding: 0 20px;
  }
  .wwd-section-title {
    font-size: 38px;
  }
  .wwd-section-subtitle {
    font-size: 12px;
  }
  .wwd-section-header {
    margin-bottom: 45px;
  }

  /* Grid - 2 columns */
  .wwd-col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Card adjustments */
  .wwd-card-image {
    height: 180px;
  }
  .wwd-icon-circle {
    width: 60px;
    height: 60px;
    margin-top: -30px;
  }
  .wwd-icon-circle i {
    font-size: 26px;
  }
  .wwd-card-body {
    padding: 20px 18px 25px;
  }
  .wwd-card-title {
    font-size: 20px;
  }
  .wwd-card-description {
    font-size: 12px;
  }
}

/* Mobile (767px and below) - 2 cards per row */
@media screen and (max-width: 767px) {
  .what-we-do-section {
    padding: 50px 0;
  }
  .wwd-cards-container {
    padding: 0 15px;
  }
  .wwd-section-header {
    margin-bottom: 35px;
  }
  .wwd-section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .wwd-section-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }
  .wwd-section-divider {
    width: 60px;
  }

  /* Grid - 2 columns */
  .wwd-col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  /* Card adjustments */
  .wwd-service-card {
    border-radius: 20px;
  }
  .wwd-card-image {
    height: 150px;
  }
  .wwd-icon-circle {
    width: 50px;
    height: 50px;
    margin-top: -25px;
  }
  .wwd-icon-circle i {
    font-size: 22px;
  }
  .wwd-card-body {
    padding: 15px 12px 18px;
  }
  .wwd-card-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .wwd-card-description {
    font-size: 11px;
    line-height: 1.5;
    margin-bottom: 12px;
  }
  .wwd-view-btn {
    font-size: 10px;
  }
  .wwd-view-btn i {
    font-size: 9px;
  }

  /* Bottom button */
  .wwd-bottom-btn-wrapper {
    margin-top: 35px;
  }
  .wwd-view-all-bottom {
    padding: 10px 24px;
    font-size: 11px;
  }
}

/* Small Mobile (480px and below) - 2 cards per row (maintains grid) */
@media screen and (max-width: 480px) {
  .wwd-cards-container {
    padding: 0 12px;
  }
  .wwd-section-title {
    font-size: 24px;
  }
  .wwd-section-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* Card further adjustments */
  .wwd-service-card {
    border-radius: 18px;
  }
  .wwd-card-image {
    height: 130px;
  }
  .wwd-icon-circle {
    width: 45px;
    height: 45px;
    margin-top: -22px;
  }
  .wwd-icon-circle i {
    font-size: 20px;
  }
  .wwd-card-body {
    padding: 12px 10px 15px;
  }
  .wwd-card-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .wwd-card-description {
    font-size: 8px !important;
    line-height: 1.4;
    margin-bottom: 10px;
    text-align: justify !important;
  }
  .wwd-view-btn {
    font-size: 9px;
  }
  .wwd-view-btn i {
    font-size: 8px;
  }

  /* Bottom button */
  .wwd-bottom-btn-wrapper {
    margin-top: 30px;
  }
  .wwd-view-all-bottom {
    padding: 8px 20px;
    font-size: 10px;
  }
  .wwd-view-all-bottom i {
    font-size: 11px;
  }
}

/* Extra Small (360px and below) */
@media screen and (max-width: 360px) {
  .wwd-card-image {
    height: 120px;
  }
  .wwd-icon-circle {
    width: 40px;
    height: 40px;
    margin-top: -20px;
  }
  .wwd-icon-circle i {
    font-size: 18px;
  }
  .wwd-card-body {
    padding: 10px 8px 12px;
  }
  .wwd-card-title {
    font-size: 10px;
  }
  .wwd-card-description {
    font-size: 8px;
  }
}

@media screen and (min-width: 992px) {
  .wwd-col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
/*====================OUR PRODUCTS STYLING============================*/
.featured-collection {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
}

.fc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== SECTION MAIN HEADING ========== */
.fc-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.fc-section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.fc-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.fc-section-title .fc-gold {
  color: #dc2626;
}

.fc-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

.fc-section-para {
  max-width: 600px;
  margin: 20px auto 0;
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* ========== LEFT TABS - LUXURY DESIGN ========== */
.tabs-sticky-container {
  position: sticky;
  top: 100px;
  background: white;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(26, 42, 108, 0.12);
  transition: all 0.3s ease;
}

.tabs-sticky-container:hover {
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

/* Tab Header with Logo Image */
.tab-header-logo {
  text-align: center;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(26, 42, 108, 0.15);
}

.tab-header-logo img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #ffffff;
  padding: 14px;
  margin-bottom: 15px;
  border: 2px solid #dc2626;
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.15);
  transition: transform 0.3s ease;
}

.tab-header-logo img:hover {
  transform: scale(1.05);
}

.tab-header-logo h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 5px;
  font-family: "Cormorant Garamond", serif;
}

.tab-header-logo p {
  font-size: 11px;
  color: #dc2626;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Tab Buttons - Luxury Design */
.tab-custom-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 12px;
  color: #5a626e;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.tab-custom-btn i {
  width: 24px;
  font-size: 16px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.tab-custom-btn .tab-count {
  margin-left: auto;
  background: rgba(220, 38, 38, 0.1);
  padding: 3px 9px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  color: #dc2626;
  transition: all 0.3s ease;
}

.tab-custom-btn.active {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
  transform: translateX(5px);
}

.tab-custom-btn.active i {
  color: #ffffff;
}

.tab-custom-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.tab-custom-btn:hover:not(.active) {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  transform: translateX(5px);
}

.tab-custom-btn:hover:not(.active) i {
  color: #dc2626;
  transform: scale(1.1);
}

/* ========== RIGHT COURSES CONTAINER ========== */
.courses-right-container {
  background: transparent;
}

/* Section Header inside Right Side */
.right-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.right-header-left h3 {
  font-size: 26px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
}

.right-header-left p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}

.right-header-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
  font-size: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.right-header-icon:hover {
  background: #dc2626;
  color: white;
  transform: translateX(5px) rotate(45deg);
}

/* Tab Content */
.tab-content-data {
  display: none;
}

.tab-content-data.active-tab {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cards Row */
.fc-cards-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Premium Product Card */
.fc-product-card {
  background: #ffffff;
  border-radius: 50px 50px 50px 0;
  padding: 15px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(26, 42, 108, 0.08);
  height: 100%;
}

.fc-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
}

.fc-card-image {
  position: relative;
  overflow: hidden;
  height: 230px;
}

.fc-card-image img {
  width: 100%;
  border-radius: 50px 50px 50px 0;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fc-product-card:hover .fc-card-image img {
  transform: scale(1.05);
}

/* Professional Badge - New Premium Design */
.fc-cat-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #1a2a6c 0%, #16205a 100%);
  color: #dc2626;
  font-size: 10px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(220, 38, 38, 0.5);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.fc-product-card:hover .fc-cat-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 38, 38, 0.25);
}

.fc-card-body {
  padding: 22px;
}

.fc-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.fc-product-card:hover .fc-card-title {
  color: #dc2626;
}

.fc-card-desc {
  font-size: 12px;
  color: #8b7d6b;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Features Grid with Circle Icons */
.fc-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px 0;
  border-top: 1px solid rgba(26, 42, 108, 0.1);
  border-bottom: 1px solid rgba(26, 42, 108, 0.1);
}

.fc-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 500;
  color: #4a423e;
}

.fc-feature-icon-circle {
  width: 28px;
  height: 28px;
  background: rgba(220, 38, 38, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.fc-feature-icon-circle i {
  font-size: 12px;
  color: #dc2626;
  transition: all 0.3s ease;
}

/* Hover on Feature Icons */
.fc-feature-item:hover .fc-feature-icon-circle {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.15) rotate(360deg);
}

.fc-feature-item:hover .fc-feature-icon-circle i {
  color: #ffffff;
}

.fc-feature-item:hover {
  color: #dc2626;
}

.fc-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 18px;
}

.fc-price {
  font-size: 20px;
  font-weight: 800;
  color: #dc2626;
}

.fc-price span {
  font-size: 11px;
  font-weight: 400;
  color: #8b7d6b;
}

.fc-discount {
  font-size: 11px;
  font-weight: 700;
  color: #28a745;
  background: rgba(40, 167, 69, 0.12);
  padding: 4px 10px;
  border-radius: 30px;
}

/* Premium CTA Buttons */
.fc-card-buttons {
  display: flex;
  gap: 12px;
}

.fc-btn-details {
  flex: 1;
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  color: #dc2626;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.fc-btn-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.fc-btn-details:hover::before {
  left: 100%;
}

.fc-btn-details:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  transform: translateY(-2px);
}

.fc-btn-quote {
  flex: 1;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border: none;
  color: #ffffff;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 40px;
  text-align: center;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
  position: relative;
  overflow: hidden;
}

.fc-btn-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.fc-btn-quote:hover::before {
  left: 100%;
}

.fc-btn-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

/* View More Button - Premium */
.view-more-wrapper {
  text-align: center;
  margin-top: 45px;
}

.view-more-btn-new {
  background: transparent;
  border: 2px solid #dc2626;
  color: #dc2626;
  padding: 12px 38px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.view-more-btn-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 38, 38, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.view-more-btn-new:hover::before {
  left: 100%;
}

.view-more-btn-new:hover {
  background: #dc2626;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991px) {
  .featured-collection {
    padding: 60px 0;
  }
  .tabs-sticky-container {
    position: relative;
    top: 0;
    margin-bottom: 30px;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 15px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }
  .tabs-sticky-container::-webkit-scrollbar {
    height: 4px;
  }
  .tabs-sticky-container::-webkit-scrollbar-track {
    background: rgba(220, 38, 38, 0.1);
    border-radius: 10px;
  }
  .tabs-sticky-container::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 10px;
  }
  .tab-header-logo {
    display: none;
  }
  .tab-custom-btn {
    white-space: nowrap;
    width: auto;
    padding: 10px 18px;
  }
  .tab-custom-btn.active {
    transform: translateX(0);
  }
  .fc-section-title {
    font-size: 32px;
  }
  .right-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .fc-cards-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .fc-container {
    padding: 0 20px;
  }
  .fc-section-title {
    font-size: 28px;
  }
  .fc-section-para {
    font-size: 13px;
  }
  .fc-cards-row {
    grid-template-columns: 1fr;
  }
  .fc-card-image {
    height: 200px;
  }
  .right-header-left h3 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .fc-card-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .tab-custom-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}
/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-us {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.section-title .gold {
  color: #dc2626;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Cards Container */
.cards-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

[class*="col-"] {
  padding-right: 15px;
  padding-left: 15px;
}

/* Desktop: 3 columns */
.col-lg-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

/* Tablet: 2 columns */
@media (max-width: 991px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile: 2 columns (using col-6) */
@media (max-width: 767px) {
  .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Card Styles */
.premium-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.1);
  height: 100%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease,
    all 0.4s ease;
}

.premium-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.premium-card.revealed:nth-child(1) {
  transition-delay: 0.1s;
}
.premium-card.revealed:nth-child(2) {
  transition-delay: 0.2s;
}
.premium-card.revealed:nth-child(3) {
  transition-delay: 0.3s;
}
.premium-card.revealed:nth-child(4) {
  transition-delay: 0.4s;
}
.premium-card.revealed:nth-child(5) {
  transition-delay: 0.5s;
}
.premium-card.revealed:nth-child(6) {
  transition-delay: 0.6s;
}

.premium-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.icon-diamond {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.1) 0%,
    rgba(26, 42, 108, 0.05) 100%
  );
  transform: rotate(45deg);
  position: absolute;
  border-radius: 8px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.premium-card:hover .icon-diamond {
  background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(220, 38, 38, 0.3);
}

.icon-wrapper i {
  font-size: 38px;
  color: #dc2626;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.premium-card:hover .icon-wrapper i {
  color: #ffffff;
  transform: scale(1.1);
}

.card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.premium-card:hover .card-title {
  color: #dc2626;
}

.card-description {
  font-size: 12px;
  text-align: justify !important;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 0;
}

.premium-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(220, 38, 38, 0.08) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.premium-card:hover::before {
  opacity: 1;
}

.bubble-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 5;
}

.red-bubble {
  position: absolute;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #dc2626, #ef4444);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: scale(0);
  transition:
    transform 0.4s ease-out,
    opacity 0.4s ease-out;
  z-index: 10;
}

/* ========== RESPONSIVE ADJUSTMENTS ========== */

/* Desktop Large */
@media screen and (max-width: 1200px) {
  .cards-container {
    padding: 0 30px;
  }
  .section-title {
    font-size: 42px;
  }
}

/* Tablet (992px - 768px) - 2 cards per row */
@media screen and (max-width: 991px) {
  .why-choose-us {
    padding: 70px 0;
  }
  .cards-container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 38px;
  }
  .section-subtitle {
    font-size: 12px;
  }
  .section-header {
    margin-bottom: 45px;
  }

  /* Card adjustments for tablet */
  .premium-card {
    padding: 30px 20px;
  }
  .icon-wrapper {
    width: 75px;
    height: 75px;
    margin-bottom: 20px;
  }
  .icon-diamond {
    width: 68px;
    height: 68px;
  }
  .icon-wrapper i {
    font-size: 32px;
  }
  .card-title {
    font-size: 20px;
  }
  .card-description {
    font-size: 13px;
  }
}

/* Mobile (767px and below) - 2 cards per row */
@media screen and (max-width: 767px) {
  .why-choose-us {
    padding: 50px 0;
  }
  .cards-container {
    padding: 0 15px;
  }
  .section-header {
    margin-bottom: 35px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }
  .section-divider {
    width: 60px;
  }

  /* Card adjustments for mobile */
  .premium-card {
    padding: 20px 12px;
    border-radius: 18px;
  }
  .icon-wrapper {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
  .icon-diamond {
    width: 54px;
    height: 54px;
  }
  .icon-wrapper i {
    font-size: 26px;
  }
  .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .card-description {
    font-size: 11px;
    line-height: 1.5;
  }

  /* Adjust hover effect for touch */
  .premium-card:hover {
    transform: translateY(-5px);
  }
}

/* Small Mobile (480px and below) - 2 cards per row (maintains grid) */
@media screen and (max-width: 480px) {
  .cards-container {
    padding: 0 12px;
  }
  .section-title {
    font-size: 24px;
  }
  .section-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  /* Card further adjustments */
  .premium-card {
    padding: 16px 10px;
    border-radius: 16px;
  }
  .icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  .icon-diamond {
    width: 48px;
    height: 48px;
  }
  .icon-wrapper i {
    font-size: 22px;
  }
  .card-title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .card-description {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* Extra Small (360px and below) */
@media screen and (max-width: 360px) {
  .premium-card {
    padding: 14px 8px;
  }
  .icon-wrapper {
    width: 48px;
    height: 48px;
  }
  .icon-diamond {
    width: 44px;
    height: 44px;
  }
  .icon-wrapper i {
    font-size: 20px;
  }
  .card-title {
    font-size: 10px;
  }
  .card-description {
    font-size: 9px;
  }
}

/* Desktop (min-width 992px) - No changes, keep 3 columns */
@media screen and (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
/*=========================FEATURED PROJECTS SECTION==============================*/
.projects-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.projects-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.projects-title .gold {
  color: #dc2626;
}

.projects-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Swiper Container */
.projects-swiper {
  padding: 20px 10px 50px;
  position: relative;
}

/* ========== PREMIUM PROJECT CARD - LUXURY DESIGN ========== */
.project-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
  height: 100%;
  position: relative;
  backdrop-filter: blur(0px);
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
}

.project-card:hover::before {
  opacity: 1;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 65px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.25);
}

/* Image Container */
.project-image {
  position: relative;
  overflow: hidden;
  height: 270px;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

/* Image Overlay Gradient */
.project-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 60%,
    rgba(0, 0, 0, 0.4) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-image::after {
  opacity: 1;
}

/* Category Badge - Premium */
.project-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #1a2a6c, #16205a);
  color: #dc2626;
  font-size: 10px;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 40px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  z-index: 2;
  border: 1px solid rgba(220, 38, 38, 0.5);
  backdrop-filter: blur(5px);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.project-card:hover .project-badge {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* Card Body */
.project-body {
  padding: 25px 22px 25px;
}

.project-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  letter-spacing: -0.3px;
}

.project-card:hover .project-name {
  color: #dc2626;
  transform: translateX(3px);
}

.project-intro {
  font-size: 13px;
  color: #8b7d6b;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Location with Circle Icon BG - Premium */
.project-location {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.location-icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.location-icon-circle i {
  font-size: 14px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.project-location:hover .location-icon-circle {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.1) rotate(360deg);
}

.project-location:hover .location-icon-circle i {
  color: #ffffff;
}

.location-text {
  font-weight: 500;
  transition: color 0.3s ease;
}

.project-location:hover .location-text {
  color: #dc2626;
}

/* Dual Buttons Container */
.project-buttons {
  display: flex;
  gap: 12px;
}

/* View Details Button */
.project-btn-details {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.35);
  color: #dc2626;
  padding: 10px 0;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.project-btn-details i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.project-btn-details:hover {
  background: rgba(220, 38, 38, 0.12);
  border-color: #dc2626;
  transform: translateY(-2px);
}

.project-btn-details:hover i {
  transform: translateX(5px);
}

/* Get Quote Button - Premium */
.project-btn-quote {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 10px 0;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
  border: none;
}

.project-btn-quote i {
  font-size: 11px;
  transition: all 0.3s ease;
}

.project-btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.project-btn-quote:hover i {
  transform: scale(1.1);
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 52px;
  height: 52px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.25);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #dc2626 !important;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
  border-color: #dc2626 !important;
  transform: scale(1.08);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #ffffff !important;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1c9bc !important;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #dc2626 !important;
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* View All Projects Button */
.view-all-wrapper {
  text-align: center;
  margin-top: 50px;
}

.view-all-projects {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 42px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.view-all-projects i {
  transition: transform 0.3s ease;
}

.view-all-projects:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(220, 38, 38, 0.4);
}

.view-all-projects:hover i {
  transform: translateX(8px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .projects-title {
    font-size: 42px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}

@media screen and (max-width: 992px) {
  .projects-section {
    padding: 80px 0;
  }
  .projects-title {
    font-size: 36px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .project-image {
    height: 240px;
  }
}

@media screen and (max-width: 768px) {
  .projects-section {
    padding: 60px 0;
  }
  .projects-title {
    font-size: 32px;
  }
  .projects-subtitle {
    font-size: 11px;
  }
  .project-image {
    height: 220px;
  }
  .project-name {
    font-size: 20px;
  }
  .project-body {
    padding: 20px 18px 22px;
  }
  .project-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .view-all-projects {
    padding: 12px 32px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .project-body {
    padding: 18px 15px 20px;
  }
  .project-name {
    font-size: 18px;
  }
  .project-intro {
    font-size: 12px;
  }
  .location-icon-circle {
    width: 28px;
    height: 28px;
  }
  .location-icon-circle i {
    font-size: 12px;
  }
}
/* ========== WORKING PROCESS SECTION ========== */
.process-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.process-header {
  text-align: center;
  margin-bottom: 60px;
}

.process-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.process-title .gold {
  color: #dc2626;
}

.process-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Steps Container */
.steps-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* SVG Zigzag Line Background */
.zigzag-bg {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
  z-index: 0;
}

.zigzag-line {
  width: 100%;
  height: auto;
}

/* Steps Row */
.steps-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* Individual Step Card */
.step-card {
  flex: 1;
  text-align: center;
  position: relative;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Card Content */
.step-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step-card:hover .step-content {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
}

.step-card:hover .step-content::before {
  transform: scaleX(1);
}

/* Step Icon */
.step-icon {
  width: 70px;
  height: 70px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.1) rotate(360deg);
}

.step-icon i {
  font-size: 32px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.step-card:hover .step-icon i {
  color: #ffffff;
  transform: scale(1.05);
}

/* Step Title */
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.step-card:hover .step-title {
  color: #dc2626;
}

/* Step Description */
.step-desc {
  font-size: 10px;
  color: #8b7d6b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Count Number - Top or Bottom */
.step-count-top {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.step-count-bottom {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

.step-count-top span,
.step-count-bottom span {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.step-card:hover .step-count-top,
.step-card:hover .step-count-bottom {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.4);
}

/* Alternate Layout */
.step-card:nth-child(odd) .step-count-bottom {
  display: none;
}

.step-card:nth-child(even) .step-count-top {
  display: none;
}

/* Zigzag Line SVG Styling */
.zigzag-svg {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

/* ========== RESPONSIVE - MOBILE ADJUSTMENTS ========== */

/* Desktop Large */
@media screen and (max-width: 1200px) {
  .process-title {
    font-size: 42px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-desc {
    font-size: 12px;
  }
  .step-icon {
    width: 60px;
    height: 60px;
  }
  .step-icon i {
    font-size: 28px;
  }
}

/* Tablet (992px - 768px) - 2 cards per row */
@media screen and (max-width: 991px) {
  .process-section {
    padding: 70px 0;
  }
  .process-title {
    font-size: 38px;
  }
  .process-subtitle {
    font-size: 12px;
  }
  .steps-row {
    gap: 25px;
  }
  .step-card {
    flex: 0 0 calc(50% - 12.5px);
    min-width: auto;
  }

  /* Adjust count position for tablet */
  .step-card:nth-child(odd) .step-count-bottom {
    display: flex;
  }
  .step-card:nth-child(odd) .step-count-top {
    display: none;
  }
  .step-card:nth-child(even) .step-count-top {
    display: flex;
  }
  .step-card:nth-child(even) .step-count-bottom {
    display: none;
  }

  /* Hide zigzag on tablet */
  .zigzag-svg {
    display: none;
  }

  /* Card adjustments */
  .step-content {
    padding: 30px 18px;
  }
  .step-icon {
    width: 55px;
    height: 55px;
  }
  .step-icon i {
    font-size: 26px;
  }
  .step-title {
    font-size: 18px;
  }
  .step-desc {
    font-size: 12px;
  }
}

/* Mobile (767px and below) - 2,2,1 layout */
@media screen and (max-width: 767px) {
  .process-section {
    padding: 50px 0;
  }
  .process-header {
    margin-bottom: 40px;
  }
  .process-title {
    font-size: 30px;
  }
  .process-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }
  .process-divider {
    width: 60px;
  }

  .steps-container {
    padding: 20px 15px;
  }

  .steps-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .step-card {
    flex: auto;
    max-width: 100%;
  }

  /* 5th card - centered in its own row */
  .step-card:last-child {
    grid-column: span 2;
    max-width: 350px;
    margin: 0 auto;
    width: 100%;
  }

  /* All cards show count on top for mobile */
  .step-card .step-count-top {
    display: flex;
  }
  .step-card .step-count-bottom {
    display: none;
  }

  /* Card adjustments */
  .step-content {
    padding: 22px 15px;
    border-radius: 20px;
  }
  .step-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }
  .step-icon i {
    font-size: 24px;
  }
  .step-title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .step-desc {
    font-size: 11px;
    line-height: 1.5;
  }
  .step-count-top {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
  }
  .step-count-top span {
    font-size: 16px;
  }

  /* Adjust hover for touch */
  .step-card:hover .step-content {
    transform: translateY(-5px);
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .process-title {
    font-size: 26px;
  }
  .process-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .steps-row {
    gap: 15px;
  }

  .step-content {
    padding: 18px 12px;
  }
  .step-icon {
    width: 45px;
    height: 45px;
  }
  .step-icon i {
    font-size: 20px;
  }
  .step-title {
    font-size: 14px;
  }
  .step-desc {
    font-size: 10px;
  }
  .step-count-top {
    width: 34px;
    height: 34px;
  }
  .step-count-top span {
    font-size: 14px;
  }
}

/* Extra Small (360px and below) */
@media screen and (max-width: 360px) {
  .steps-row {
    gap: 12px;
  }
  .step-content {
    padding: 15px 10px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
  }
  .step-icon i {
    font-size: 18px;
  }
  .step-title {
    font-size: 13px;
  }
  .step-desc {
    font-size: 9px;
  }
  .step-count-top {
    width: 30px;
    height: 30px;
  }
  .step-count-top span {
    font-size: 12px;
  }
}

@media screen and (min-width: 992px) {
  .steps-row {
    flex-wrap: nowrap;
  }
  .step-card {
    flex: 1;
  }
}
/* ========== INDUSTRIES SECTION ========== */
.industries-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.industries-header {
  text-align: center;
  margin-bottom: 60px;
}

.industries-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.industries-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.industries-title .gold {
  color: #dc2626;
}

.industries-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Industries Container */
.industries-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row Layout */
.industries-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/* Industry Item */
.industry-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

/* Industry Name - Top */
.industry-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.industry-item:hover .industry-name {
  color: #dc2626;
  transform: translateY(-3px);
}

/* Zigzag Connecting Line (Name to Card) */
.zigzag-connector {
  position: relative;
  height: 40px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.zigzag-line-svg {
  width: 100%;
  max-width: 120px;
  height: auto;
}

/* Diamond Shape Card */
.industry-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 35px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.industry-item:hover .industry-card {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
}

.industry-item:hover .industry-card::before {
  transform: scaleX(1);
}

/* Diamond Icon Shape */
.diamond-icon {
  width: 80px;
  height: 80px;
  background: rgba(26, 42, 108, 0.1);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border-radius: 18px;
}

.industry-item:hover .diamond-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: rotate(45deg) scale(1.08);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.diamond-icon i {
  transform: rotate(-45deg);
  font-size: 36px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.industry-item:hover .diamond-icon i {
  color: #ffffff;
  transform: rotate(-45deg) scale(1.05);
}

/* Card Title (Hidden - we use industry name above) */
.industry-card-title {
  display: none;
}

/* Card Description */
.industry-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-top: 10px;
  transform: rotate(0deg);
}

/* Row 2 specific styling */
.industries-row:last-child {
  margin-bottom: 0;
}

/* Zigzag Line Variations for different positions */
.zigzag-down {
  transform: rotate(0deg);
}

/* ========== RESPONSIVE - MOBILE GRID ADJUSTMENTS ========== */

/* Desktop Large */
@media screen and (max-width: 1200px) {
  .industries-title {
    font-size: 42px;
  }
  .industry-name {
    font-size: 20px;
  }
  .diamond-icon {
    width: 70px;
    height: 70px;
  }
  .diamond-icon i {
    font-size: 30px;
  }
  .zigzag-line-svg {
    max-width: 100px;
  }
}

/* Tablet (992px - 768px) - 2 cards per row */
@media screen and (max-width: 991px) {
  .industries-section {
    padding: 70px 0;
  }
  .industries-title {
    font-size: 38px;
  }
  .industries-subtitle {
    font-size: 12px;
  }
  .industries-container {
    padding: 0 30px;
  }

  /* Two columns grid for tablet */
  .industries-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
  }

  .industry-item {
    min-width: auto;
  }

  .industry-name {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .zigzag-connector {
    height: 35px;
  }

  .zigzag-line-svg {
    max-width: 80px;
  }

  .diamond-icon {
    width: 65px;
    height: 65px;
  }

  .diamond-icon i {
    font-size: 28px;
  }

  .industry-card {
    padding: 28px 15px;
  }

  .industry-desc {
    font-size: 12px;
  }
}

/* Mobile (767px and below) - 2 cards per row */
@media screen and (max-width: 767px) {
  .industries-section {
    padding: 50px 0;
  }

  .industries-header {
    margin-bottom: 40px;
  }

  .industries-title {
    font-size: 30px;
  }

  .industries-subtitle {
    font-size: 10px;
    letter-spacing: 3px;
    padding: 4px 16px;
  }

  .industries-divider {
    width: 60px;
  }

  .industries-container {
    padding: 0 20px;
  }

  /* Two columns grid for mobile */
  .industries-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }

  .industry-item {
    max-width: 100%;
  }

  .industry-name {
    font-size: 16px;
    margin-bottom: 15px;
    padding: 0 10px;
  }

  .zigzag-connector {
    height: 30px;
    margin-bottom: 15px;
  }

  .zigzag-line-svg {
    max-width: 60px;
  }

  .diamond-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 15px;
  }

  .diamond-icon i {
    font-size: 24px;
  }

  .industry-card {
    padding: 20px 12px;
    border-radius: 16px;
  }

  .industry-desc {
    font-size: 11px;
    line-height: 1.5;
    margin-top: 8px;
  }

  /* Adjust hover for touch */
  .industry-item:hover .industry-card {
    transform: translateY(-5px);
  }

  .industry-item:hover .diamond-icon {
    transform: rotate(45deg) scale(1.05);
  }
}

/* Small Mobile (480px and below) - still 2 cards per row */
@media screen and (max-width: 480px) {
  .industries-title {
    font-size: 26px;
  }

  .industries-subtitle {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .industries-container {
    padding: 0 15px;
  }

  .industries-row {
    gap: 15px;
    margin-bottom: 25px;
  }

  .industry-name {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .zigzag-connector {
    height: 25px;
  }

  .zigzag-line-svg {
    max-width: 50px;
  }

  .diamond-icon {
    width: 48px;
    height: 48px;
  }

  .diamond-icon i {
    font-size: 20px;
  }

  .industry-card {
    padding: 15px 10px;
    border-radius: 14px;
  }

  .industry-desc {
    font-size: 10px;
    line-height: 1.4;
  }
}

/* Extra Small (360px and below) */
@media screen and (max-width: 360px) {
  .industries-row {
    gap: 12px;
  }

  .industry-name {
    font-size: 13px;
  }

  .diamond-icon {
    width: 42px;
    height: 42px;
  }

  .diamond-icon i {
    font-size: 18px;
  }

  .industry-card {
    padding: 12px 8px;
  }

  .industry-desc {
    font-size: 9px;
  }

  .zigzag-line-svg {
    max-width: 45px;
  }
}

@media screen and (min-width: 992px) {
  .industries-row {
    flex-wrap: nowrap;
  }

  .industry-item {
    flex: 1;
  }
}

/* ========== TESTIMONIAL SECTION ========== */
.testimonial-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonial-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.testimonial-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.testimonial-title .gold {
  color: #dc2626;
}

.testimonial-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Swiper Container */
.testimonial-swiper {
  padding: 20px 10px 50px;
  position: relative;
}

/* Premium Testimonial Card */
.testimonial-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 30px 28px;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.25);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

/* Quote Icon */
.quote-icon {
  margin-bottom: 20px;
}

.quote-icon i {
  font-size: 45px;
  color: rgba(26, 42, 108, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover .quote-icon i {
  color: rgba(220, 38, 38, 0.4);
  transform: scale(1.05);
}

/* Testimonial Text */
.testimonial-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
  min-height: 85px;
}

/* Rating Stars */
.testimonial-rating {
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testimonial-rating i {
  font-size: 14px;
  color: #dc2626;
}

.testimonial-rating i.fa-star-half-alt {
  color: #dc2626;
}

/* Client Info Row */
.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* Client Image */
.client-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(26, 42, 108, 0.3);
  transition: all 0.3s ease;
}

.testimonial-card:hover .client-image {
  border-color: #dc2626;
  transform: scale(1.05);
}

.client-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Client Details */
.client-details {
  flex: 1;
}

.client-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 3px;
  transition: color 0.3s ease;
}

.testimonial-card:hover .client-name {
  color: #dc2626;
}

.client-location {
  font-size: 11px;
  color: #8b7d6b;
  display: flex;
  align-items: center;
  gap: 5px;
}

.client-location i {
  font-size: 10px;
  color: #dc2626;
}

/* Company Name */
.company-name {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(26, 42, 108, 0.1);
  margin-top: 5px;
}

.company-name i {
  font-size: 14px;
  color: #dc2626;
}

.company-name span {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a6c;
  letter-spacing: 0.5px;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(26, 42, 108, 0.25);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #dc2626;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-color: #dc2626;
  transform: scale(1.08);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
  color: #ffffff;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1c9bc;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: #dc2626;
  opacity: 1;
  width: 28px;
  border-radius: 5px;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .testimonial-title {
    font-size: 42px;
  }
  .testimonial-text {
    font-size: 13px;
    min-height: 100px;
  }
  .client-image {
    width: 55px;
    height: 55px;
  }
  .client-name {
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .testimonial-section {
    padding: 80px 0;
  }
  .testimonial-title {
    font-size: 36px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  .testimonial-card {
    padding: 25px 22px;
  }
}

@media screen and (max-width: 768px) {
  .testimonial-section {
    padding: 60px 0;
  }
  .testimonial-title {
    font-size: 32px;
  }
  .testimonial-subtitle {
    font-size: 11px;
  }
  .testimonial-text {
    font-size: 13px;
    min-height: auto;
  }
  .client-image {
    width: 50px;
    height: 50px;
  }
  .client-name {
    font-size: 16px;
  }
  .quote-icon i {
    font-size: 35px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-card {
    padding: 20px 18px;
  }
  .client-info {
    gap: 12px;
  }
  .client-image {
    width: 45px;
    height: 45px;
  }
  .testimonial-text {
    font-size: 12px;
  }
}
/* ========== CTA BANNER SECTION ========== */
.cta-banner {
  position: relative;
  width: 100%;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Fixed Background Image */
.cta-bg-fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/cover_img/cv2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Mobile fallback - remove fixed attachment on mobile for better performance */
@media (max-width: 768px) {
  .cta-bg-fixed {
    background-attachment: scroll;
  }
}

/* Red Mixed Overlay */
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.85) 0%,
    rgba(220, 38, 38, 0.4) 50%,
    rgba(26, 42, 108, 0.85) 100%
  );
  z-index: 1;
}

/* Subtle Pattern Overlay */
.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.05"><polygon points="50,10 90,35 90,65 50,90 10,65 10,35" fill="none" stroke="%23DC2626" stroke-width="1"/><polygon points="50,25 75,50 50,75 25,50" fill="none" stroke="%23DC2626" stroke-width="0.5"/><circle cx="50" cy="50" r="5" fill="%23DC2626" opacity="0.3"/></svg>');
  background-repeat: repeat;
  background-size: 60px;
  z-index: 2;
  pointer-events: none;
}

/* Content Container */
.cta-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 30px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tagline */
.cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  padding: 8px 22px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.cta-tagline i {
  font-size: 14px;
  color: #dc2626;
}

.cta-tagline span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
}

/* Heading */
.cta-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-heading .gold {
  color: #dc2626;
  position: relative;
  display: inline-block;
}

.cta-heading .gold::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(220, 38, 38, 0.4);
  border-radius: 2px;
}

/* Short Paragraph */
.cta-para {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Buttons Container */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Primary Button - Red */
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
  border: none;
}

.cta-btn-primary i {
  transition: transform 0.3s ease;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.45);
}

.cta-btn-primary:hover i {
  transform: translateX(6px);
}

/* Secondary Button - Outline Blue */
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 2px solid rgba(26, 42, 108, 0.6);
  color: #ffffff;
  padding: 12px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  backdrop-filter: blur(4px);
}

.cta-btn-secondary i {
  transition: transform 0.3s ease;
}

.cta-btn-secondary:hover {
  background: rgba(26, 42, 108, 0.15);
  border-color: #1a2a6c;
  transform: translateY(-3px);
}

.cta-btn-secondary:hover i {
  transform: scale(1.1);
}

/* Decorative Lines */
.cta-decoration {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  z-index: 3;
}

/* Scroll Hint */
.cta-scroll-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  z-index: 3;
  animation: bounce 2s infinite;
}

.cta-scroll-hint i {
  font-size: 14px;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(5px);
  }
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media screen and (max-width: 992px) {
  .cta-heading {
    font-size: 44px;
  }
  .cta-para {
    font-size: 15px;
    padding: 0 20px;
  }
  .cta-banner {
    min-height: 500px;
  }
}

/* Mobile (768px and below) */
@media screen and (max-width: 768px) {
  .cta-banner {
    min-height: 450px;
  }

  .cta-content {
    padding: 50px 20px;
  }

  .cta-heading {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .cta-para {
    font-size: 14px;
    margin-bottom: 25px;
    padding: 0 15px;
  }

  .cta-tagline {
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .cta-tagline i {
    font-size: 12px;
  }

  .cta-tagline span {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Buttons - side by side (2 columns) */
  .cta-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 400px;
    margin: 0 auto;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 10px 16px;
    font-size: 11px;
    letter-spacing: 1px;
    justify-content: center;
    width: 100%;
  }

  .cta-btn-primary i,
  .cta-btn-secondary i {
    font-size: 12px;
  }

  /* Hide scroll hint on mobile */
  .cta-scroll-hint {
    display: none;
  }

  .cta-decoration {
    bottom: 20px;
    width: 50px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .cta-banner {
    min-height: 420px;
  }

  .cta-content {
    padding: 40px 15px;
  }

  .cta-heading {
    font-size: 26px;
  }

  .cta-para {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .cta-tagline {
    padding: 5px 14px;
  }

  .cta-tagline span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  /* Buttons grid - side by side */
  .cta-buttons {
    gap: 10px;
    max-width: 320px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 8px 12px;
    font-size: 10px;
  }

  .cta-btn-primary i,
  .cta-btn-secondary i {
    font-size: 11px;
  }

  .cta-decoration {
    width: 40px;
    bottom: 15px;
  }
}

/* Extra Small Mobile (360px and below) */
@media screen and (max-width: 360px) {
  .cta-banner {
    min-height: 400px;
  }

  .cta-heading {
    font-size: 22px;
  }

  .cta-para {
    font-size: 12px;
  }

  .cta-buttons {
    gap: 8px;
    max-width: 280px;
  }

  .cta-btn-primary,
  .cta-btn-secondary {
    padding: 7px 10px;
    font-size: 6px;
  }

  .cta-btn-primary i,
  .cta-btn-secondary i {
    font-size: 10px;
  }
}

@supports (backdrop-filter: blur(5px)) {
  .cta-tagline {
    backdrop-filter: blur(8px);
  }
}
/*===============================GALLERY SECTION STYLING=================================*/
.gallery-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: visible;
}

/* Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 60px;
}

.gallery-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.gallery-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.gallery-title .gold {
  color: #dc2626;
}

.gallery-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Gallery Container */
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Row with sticky left - IMPORTANT FIX */
.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* LEFT SIDE - STICKY PROMO CARD (FIXED) */
.gallery-sticky-wrapper {
  flex: 1;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.gallery-promo-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.gallery-promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
}

/* Promo Card Content - No fixed height */
.promo-bg {
  position: relative;
  background-image: url("../image/cover_img/cv2.png");
  background-size: cover;
  background-position: center;
  padding: 45px 30px;
}

.promo-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.85) 0%,
    rgba(220, 38, 38, 0.4) 50%,
    rgba(26, 42, 108, 0.85) 100%
  );
  z-index: 0;
}

/* Logo in Header */
.promo-header {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 25px;
}

.promo-logo-wrapper {
  background: #ffffff;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 2px solid #dc2626;
}

.promo-logo-wrapper img {
  width: 100%;
  height: 50px;
  padding: 5px;
  object-fit: contain;
}

/* Promo Content */
.promo-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.promo-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.promo-heading .gold {
  color: #dc2626;
}

.promo-intro {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Promo Buttons */
.promo-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-btn-primary {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.promo-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.6);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.promo-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: #dc2626;
  transform: translateY(-2px);
}

/* RIGHT SIDE - SCROLLABLE GALLERY GRID */
.gallery-grid-wrapper {
  flex: 2;
  height: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Red Overlay on Hover */
.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(220, 38, 38, 0.85),
    rgba(26, 42, 108, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* View Full Icon with Animation */
.gallery-view-icon {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.gallery-item:hover .gallery-view-icon {
  transform: scale(1);
}

.gallery-view-icon i {
  font-size: 24px;
  color: #dc2626;
}

/* Image Title */
.gallery-item-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-title {
  transform: translateY(0);
}

.gallery-item-title span {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 1px;
}

/* View All Button */
.gallery-view-all-wrapper {
  text-align: center;
  margin-top: 30px;
}

.gallery-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
}

.gallery-view-all:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.35);
}

.gallery-view-all:hover i {
  transform: translateX(6px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .gallery-title {
    font-size: 42px;
  }
  .gallery-grid {
    gap: 15px;
  }
}

@media screen and (max-width: 992px) {
  .gallery-section {
    padding: 80px 0;
  }
  .gallery-title {
    font-size: 36px;
  }
  .gallery-container {
    padding: 0 30px;
  }
  .gallery-row {
    flex-direction: column;
  }
  .gallery-sticky-wrapper {
    position: relative;
    top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .gallery-section {
    padding: 60px 0;
  }
  .gallery-title {
    font-size: 32px;
  }
  .gallery-subtitle {
    font-size: 11px;
  }
  .gallery-container {
    padding: 0 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .promo-heading {
    font-size: 24px;
  }
  .promo-logo-wrapper {
    width: 75px;
    height: 75px;
  }
  .promo-logo-wrapper img {
    width: 45px;
    height: 45px;
  }
  .promo-bg {
    padding: 35px 25px;
  }
}

@media screen and (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .promo-buttons {
    flex-direction: column;
    align-items: center;
  }
  .promo-btn-primary,
  .promo-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .gallery-view-all {
    padding: 12px 28px;
    font-size: 12px;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.faq-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.faq-title .gold {
  color: #dc2626;
}

.faq-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* FAQ Container */
.faq-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* FAQ Grid - 2 Columns */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Luxury FAQ Item */
.faq-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.15);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.faq-question-left {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

/* Question Icon */
.faq-q-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-q-icon i {
  font-size: 18px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.faq-question-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a2a6c;
  transition: color 0.3s ease;
  line-height: 1.4;
}

/* Arrow Icon */
.faq-arrow {
  width: 36px;
  height: 36px;
  background: rgba(220, 38, 38, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.faq-arrow i {
  font-size: 14px;
  color: #dc2626;
  transition: all 0.3s ease;
}

/* Active State */
.faq-item.active {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
}

.faq-item.active .faq-question {
  background: #ffffff;
}

.faq-item.active .faq-q-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.faq-item.active .faq-q-icon i {
  color: #ffffff;
}

.faq-item.active .faq-question-text {
  color: #dc2626;
}

.faq-item.active .faq-arrow {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: rotate(180deg);
}

.faq-item.active .faq-arrow i {
  color: #ffffff;
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  background: #ffffff;
}

.faq-answer-content {
  padding: 0 28px 24px 28px;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.faq-answer-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-top: 20px;
}

.faq-answer-list {
  margin-top: 15px;
  padding-left: 20px;
}

.faq-answer-list li {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 8px;
}

.faq-answer-list li i {
  color: #dc2626;
  margin-right: 8px;
  font-size: 10px;
}

/* Hover Effects */
.faq-question:hover {
  background: rgba(220, 38, 38, 0.02);
}

.faq-question:hover .faq-q-icon {
  background: rgba(220, 38, 38, 0.2);
}

.faq-question:hover .faq-arrow {
  background: rgba(220, 38, 38, 0.15);
  transform: translateX(3px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .faq-title {
    font-size: 42px;
  }
  .faq-question-text {
    font-size: 17px;
  }
}

@media screen and (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-title {
    font-size: 36px;
  }
  .faq-container {
    padding: 0 30px;
  }
  .faq-grid {
    gap: 20px;
  }
  .faq-question {
    padding: 20px 24px;
  }
  .faq-question-text {
    font-size: 16px;
  }
  .faq-answer-content {
    padding: 0 24px 20px 24px;
  }
}

@media screen and (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
  .faq-title {
    font-size: 32px;
  }
  .faq-subtitle {
    font-size: 11px;
  }
  .faq-container {
    padding: 0 20px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .faq-question {
    padding: 18px 20px;
  }
  .faq-question-text {
    font-size: 15px;
  }
  .faq-q-icon {
    width: 36px;
    height: 36px;
  }
  .faq-q-icon i {
    font-size: 16px;
  }
  .faq-arrow {
    width: 32px;
    height: 32px;
  }
  .faq-answer-text {
    font-size: 13px;
  }
  .faq-answer-list li {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .faq-question-text {
    font-size: 10px;
  }
  .faq-q-icon {
    width: 22px;
    height: 22px;
  }
  .faq-q-icon i {
    font-size: 10px;
  }
  .faq-answer-content {
    padding: 0 20px 16px 20px;
  }
}
/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
}

/* Section Header */
.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-subtitle {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.contact-title .gold {
  color: #dc2626;
}

.contact-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* Contact Container */
.contact-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Equal Height Row */
.contact-equal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

/* Left Panel - Contact Info */
.contact-info-panel {
  flex: 1;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-info-panel:hover {
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.15);
}

.contact-info-inner {
  padding: 40px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tagline Inside Panel */
.info-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  width: fit-content;
}

.info-tagline i {
  font-size: 12px;
  color: #dc2626;
}

.info-tagline span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.info-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.info-heading .gold {
  color: #dc2626;
}

.info-intro {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

/* Contact Details */
.contact-details {
  margin-bottom: 25px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.contact-detail-item:hover {
  transform: translateX(8px);
}

.detail-icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon-circle {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.05);
}

.detail-icon-circle i {
  font-size: 20px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.contact-detail-item:hover .detail-icon-circle i {
  color: #ffffff;
}

.detail-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 4px;
}

.detail-content p,
.detail-content a {
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
  margin: 0;
}

.detail-content a:hover {
  color: #dc2626;
}

/* Working Hours with Icon */
.working-hours-section {
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
}

.hours-icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hours-icon-circle i {
  font-size: 20px;
  color: #dc2626;
}

.hours-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin: 0;
}

.hours-list {
  padding-left: 63px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.hours-day {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
}

.hours-time {
  font-size: 13px;
  color: #6b6b6b;
}

/* How It Works - Grid Layout (2 columns on mobile) */
.how-it-works-section {
  margin-top: 5px;
}

.how-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  display: flex;
  align-items: center;
  gap: 10px;
}

.how-title i {
  color: #dc2626;
  font-size: 18px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.step-item:hover {
  transform: translateX(5px);
}

.step-circle {
  width: 36px;
  height: 36px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.step-item:hover .step-circle {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  transform: scale(1.1);
}

.step-text {
  font-size: 12px;
  font-weight: 500;
  color: #4a423e;
  line-height: 1.4;
}

/* Right Panel - Form */
.contact-form-panel {
  flex: 1;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.contact-form-panel:hover {
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.15);
}

.contact-form-inner {
  padding: 40px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Form Tagline */
.form-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 20px;
  width: fit-content;
}

.form-tagline i {
  font-size: 12px;
  color: #dc2626;
}

.form-tagline span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.form-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.form-intro {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

/* Premium Form Styling */
.premium-form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-row-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 18px;
}

.form-group-full {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-label i {
  color: #dc2626;
  margin-right: 8px;
  font-size: 16px;
}

.form-control-premium {
  width: 100%;
  padding: 20px 18px;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  border: 1.5px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  background: #ffffff;
  transition: all 0.3s ease;
  color: #1a2a6c;
}

.form-control-premium:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.form-control-premium {
  resize: vertical;
  min-height: 150px;
}

/* Send Button */
.send-btn {
  width: 100%;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.send-btn i {
  transition: transform 0.3s ease;
}

.send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.send-btn:hover i {
  transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */

/* Desktop Large */
@media screen and (max-width: 1200px) {
  .contact-title {
    font-size: 42px;
  }
  .info-heading,
  .form-heading {
    font-size: 28px;
  }
}

/* Tablet */
@media screen and (max-width: 992px) {
  .contact-section {
    padding: 80px 0;
  }
  .contact-title {
    font-size: 36px;
  }
  .contact-container {
    padding: 0 30px;
  }
  .contact-equal-row {
    flex-direction: column;
  }
  .contact-info-panel,
  .contact-form-panel {
    flex: auto;
  }
  .contact-info-inner,
  .contact-form-inner {
    padding: 35px 30px;
  }
  /* How It Works - 2 columns on tablet */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media screen and (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
  .contact-title {
    font-size: 32px;
  }
  .contact-subtitle {
    font-size: 11px;
  }
  .contact-container {
    padding: 0 20px;
  }
  .info-heading,
  .form-heading {
    font-size: 24px;
  }
  .contact-info-inner,
  .contact-form-inner {
    padding: 25px 20px;
  }

  /* Form - 1 column */
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* How It Works - 2 columns on mobile (important) */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .step-item {
    gap: 10px;
  }

  .step-circle {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .step-text {
    font-size: 11px;
  }

  /* Working Hours adjustments */
  .hours-list {
    padding-left: 0;
  }
  .hours-header {
    flex-direction: row;
    text-align: left;
  }
  .hours-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Form label and input adjustments */
  .form-label {
    font-size: 14px;
  }
  .form-control-premium {
    padding: 14px 16px;
    font-size: 13px;
  }
  textarea.form-control-premium {
    min-height: 120px;
  }

  /* Send button */
  .send-btn {
    padding: 12px 25px;
    font-size: 12px;
  }
}

/* Small Mobile (480px and below) */
@media screen and (max-width: 480px) {
  .info-heading,
  .form-heading {
    font-size: 16px;
  }
  .info-intro {
    font-size: 10px;
  }
  .form-intro {
    font-size: 10px;
  }

  /* How It Works - 2 columns (maintained) */
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .step-circle {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .step-text {
    font-size: 10px;
  }

  .form-label {
    font-size: 13px;
  }
  .form-control-premium {
    padding: 12px 14px;
    font-size: 12px;
  }

  /* Working hours */
  .hours-day,
  .hours-time {
    font-size: 11px;
  }

  .hours-icon-circle {
    width: 40px;
    height: 40px;
  }
  .hours-icon-circle i {
    font-size: 16px;
  }
  .hours-header h4 {
    font-size: 14px;
  }

  /* Detail items */
  .detail-icon-circle {
    width: 40px;
    height: 40px;
  }
  .detail-icon-circle i {
    font-size: 16px;
  }
  .detail-content h4 {
    font-size: 12px;
  }
  .detail-content p,
  .detail-content a {
    font-size: 11px;
  }
}

/* Extra Small (360px and below) */
@media screen and (max-width: 360px) {
  .steps-grid {
    gap: 8px;
  }
  .step-circle {
    width: 10px;
    height: 10px;
    font-size: 8px;
  }
  .step-text {
    font-size: 6px;
  }
  .form-label {
    font-size: 12px;
  }
  .form-control-premium {
    padding: 10px 12px;
    font-size: 11px;
  }
}
/* ========== CTA STRIP (NEW - Added at top of footer) ========== */
.footer-cta-strip {
  background: #fff5f5;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
  border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

.footer-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-cta-left h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 5px;
}

.footer-cta-left p {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
}

.footer-cta-btn {
  background: #1a2a6c;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.footer-cta-btn i {
  transition: transform 0.3s ease;
  color: #dc2626;
}

.footer-cta-btn:hover {
  background: #dc2626;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.footer-cta-btn:hover i {
  color: #ffffff;
  transform: translateX(5px);
}

/* ========== FOOTER SECTION ========== */
.footer-section {
  position: relative;
  background: #fff5f5;
  overflow: hidden;
}

/* Animated Carpet Related Shapes - Red/Blue theme */
.footer-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.footer-shape {
  position: absolute;
  opacity: 0.06;
  animation: floatShape 15s infinite ease-in-out;
}

.shape-weave {
  top: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: repeating-linear-gradient(
    90deg,
    #1a2a6c,
    #1a2a6c 3px,
    transparent 3px,
    transparent 20px
  );
  transform: rotate(15deg);
  border-radius: 30px;
  animation-delay: 0s;
}

.shape-diamond {
  bottom: 15%;
  right: 8%;
  width: 150px;
  height: 150px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%231a2a6c" stroke-width="2"/><polygon points="50,25 75,50 50,75 25,50" fill="none" stroke="%23dc2626" stroke-width="1"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation-delay: -3s;
}

.shape-medallion {
  top: 30%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #1a2a6c, transparent);
  border-radius: 50%;
  filter: blur(30px);
  animation-delay: -6s;
}

.shape-border {
  bottom: 20%;
  left: 10%;
  width: 120px;
  height: 60px;
  background: repeating-linear-gradient(
    45deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 15px
  );
  border-radius: 15px;
  transform: rotate(-10deg);
  animation-delay: -2s;
}

.shape-fringe {
  top: 60%;
  left: -3%;
  width: 80px;
  height: 200px;
  background: repeating-linear-gradient(
    0deg,
    #1a2a6c,
    #1a2a6c 3px,
    transparent 3px,
    transparent 12px
  );
  border-radius: 0 20px 20px 0;
  animation-delay: -5s;
}

.shape-dots {
  top: 70%;
  right: 20%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle at 20% 30%, #dc2626 3px, transparent 3px);
  background-size: 20px 20px;
  border-radius: 50%;
  animation-delay: -4s;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.05;
  }
  50% {
    transform: translateY(-25px) rotate(3deg);
    opacity: 0.1;
  }
}

/* Light Overlay */
.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(220, 38, 38, 0.05),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}

/* Footer Container */
.footer-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 40px 0;
}

/* Main Footer Row */
.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
}

/* Footer Columns */
.footer-col {
  flex: 1;
  min-width: 180px;
}

/* Column 1 - Company Info */
.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  background: #ffffff;
  padding: 10px;
  border-radius: 10px;
  max-width: 150px;
  height: auto;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.footer-desc {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Social Icons */
.social-icons-footer {
  display: flex;
  gap: 12px;
}

.social-icon-footer {
  width: 38px;
  height: 38px;
  background: rgba(26, 42, 108, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.social-icon-footer i {
  font-size: 16px;
  color: #1a2a6c;
  transition: all 0.3s ease;
}

.social-icon-footer:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: translateY(-5px) rotate(360deg);
  border-color: #dc2626;
}

.social-icon-footer:hover i {
  color: #ffffff;
}

/* Column Headings */
.footer-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
}

/* Quick Links & Collection Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #6b6b6b;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 12px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #dc2626;
  transform: translateX(8px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Contact Items */
.contact-item-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.contact-item-footer:hover {
  transform: translateX(5px);
}

.contact-icon-circle {
  width: 38px;
  height: 38px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.contact-item-footer:hover .contact-icon-circle {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.05);
}

.contact-icon-circle i {
  font-size: 16px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.contact-item-footer:hover .contact-icon-circle i {
  color: #ffffff;
}

.contact-text {
  flex: 1;
}

.contact-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 2px;
}

.contact-text p,
.contact-text a {
  font-size: 11px;
  color: #6b6b6b;
  text-decoration: none;
  margin: 0;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: #dc2626;
}

/* Map Section */
.footer-map {
  margin-bottom: 15px;
}

.footer-map img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.direction-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 42, 108, 0.08);
  color: #1a2a6c;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.35s ease;
  border: 1px solid rgba(220, 38, 38, 0.2);
  width: 100%;
  justify-content: center;
}

.direction-btn i {
  transition: transform 0.3s ease;
  color: #dc2626;
}

.direction-btn:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  transform: translateY(-3px);
}

.direction-btn:hover i {
  color: #ffffff;
  transform: translateX(5px);
}

/* Colored Divider */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 0 25px 0;
}

/* Bottom Footer - Glassmorphism */
.bottom-footer {
  background: rgba(26, 42, 108, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px 20px 0 0;
  padding: 20px 40px;
  margin-top: 0;
  border-top: 1px solid rgba(220, 38, 38, 0.1);
}

.bottom-footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-size: 12px;
  color: #6b6b6b;
}

.design-by {
  font-size: 12px;
  color: #6b6b6b;
}

.design-by a {
  color: #dc2626;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.design-by a:hover {
  color: #1a2a6c;
  text-decoration: underline;
}

.privacy-links {
  display: flex;
  gap: 20px;
}

.privacy-links a {
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: none;
  transition: color 0.3s ease;
}

.privacy-links a:hover {
  color: #dc2626;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .footer-container {
    padding: 60px 30px 0;
  }
  .footer-col {
    min-width: 160px;
  }
  .footer-cta-container {
    padding: 18px 30px;
  }
  .footer-cta-left h3 {
    font-size: 22px;
  }
}

@media screen and (max-width: 992px) {
  .footer-row {
    gap: 25px;
  }
  .footer-col {
    flex: 0 0 calc(33.33% - 17px);
  }
  .bottom-footer-content {
    flex-direction: column;
    text-align: center;
  }
  .privacy-links {
    justify-content: center;
  }
  .footer-cta-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-cta-left {
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-container {
    padding: 50px 20px 0;
  }
  .footer-row {
    flex-direction: column;
    gap: 35px;
  }
  .footer-col {
    flex: auto;
  }
  .footer-heading::after {
    width: 30px;
  }
  .bottom-footer {
    padding: 15px 20px;
  }
  .bottom-footer-content {
    gap: 10px;
  }
  .copyright,
  .design-by,
  .privacy-links a {
    font-size: 11px;
  }
  .footer-cta-container {
    padding: 15px 20px;
  }
  .footer-cta-left h3 {
    font-size: 20px;
  }
  .footer-cta-left p {
    font-size: 12px;
  }
  .footer-cta-btn {
    padding: 10px 25px;
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .footer-container {
    padding: 40px 15px 0;
  }
  .social-icons-footer {
    justify-content: center;
  }
  .footer-desc {
    text-align: center;
  }
  .footer-logo {
    text-align: center;
  }
  .footer-heading {
    display: block;
    text-align: center;
  }
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .footer-links {
    text-align: left;
  }
  .footer-links a {
    justify-content: left;
  }
  .contact-item-footer {
    justify-content: left;
  }
  .privacy-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .footer-cta-left h3 {
    font-size: 18px;
  }
  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
/*==============================================OTHERS PAGES STYLING START=========================================*/
.about-page-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== 1. COVER SECTION ========== */
.about-page-cover {
  position: relative;
  min-height: 350px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-page-cover-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/cover_img/cv2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-page-cover-bg {
    background-attachment: scroll;
  }
}

.about-page-cover-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.about-page-cover-shape {
  position: absolute;
  animation: aboutPageFloatShape 18s infinite ease-in-out;
}

.cover-page-shape-weave {
  top: 15%;
  left: 3%;
  width: 220px;
  height: 220px;
  background: repeating-linear-gradient(
    90deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 20px
  );
  transform: rotate(15deg);
  border-radius: 30px;
  animation-delay: 0s;
  opacity: 0.12;
}

.cover-page-shape-diamond {
  bottom: 15%;
  right: 5%;
  width: 160px;
  height: 160px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%23DC2626" stroke-width="2.5"/><polygon points="50,25 75,50 50,75 25,50" fill="none" stroke="%23DC2626" stroke-width="1.5"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation-delay: -4s;
  opacity: 0.12;
}

.cover-page-shape-medallion {
  top: 45%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #dc2626, transparent);
  border-radius: 50%;
  filter: blur(25px);
  animation-delay: -7s;
  opacity: 0.1;
}

@keyframes aboutPageFloatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-25px) rotate(4deg);
    opacity: 0.16;
  }
}

.about-page-cover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.88) 0%,
    rgba(220, 38, 38, 0.35) 45%,
    rgba(220, 38, 38, 0.5) 50%,
    rgba(220, 38, 38, 0.35) 55%,
    rgba(26, 42, 108, 0.88) 100%
  );
  z-index: 2;
}

.about-page-cover-content {
  position: relative;
  z-index: 3;
  max-width: 850px;
  padding: 0 20px;
  animation: aboutPageFadeInUp 0.9s ease-out;
}

@keyframes aboutPageFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-page-cover-tagline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 25px;
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.about-page-cover-tagline i {
  font-size: 14px;
  color: #dc2626;
}

.about-page-cover-tagline span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
}

.about-page-cover-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.about-page-cover-title .about-page-gold {
  color: #dc2626;
}

.about-page-cover-intro {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.about-page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(26, 42, 108, 0.6);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.about-page-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-page-breadcrumb a:hover {
  color: #dc2626;
}

.about-page-breadcrumb i {
  color: #dc2626;
  font-size: 12px;
}

.about-page-breadcrumb .current {
  color: #dc2626;
  font-weight: 700;
}

/* ========== 2. COMPANY INTRO SECTION - VERTICAL IMAGE LAYOUT ========== */
.about-page-intro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}

/* Animated Shapes in Background */
.about-page-intro-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.about-page-intro-shape {
  position: absolute;
  opacity: 0.06;
  animation: aboutPageIntroFloat 20s infinite ease-in-out;
}

.about-page-intro-weave {
  top: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  background: repeating-linear-gradient(
    90deg,
    #dc2626,
    #dc2626 3px,
    transparent 3px,
    transparent 18px
  );
  transform: rotate(20deg);
  border-radius: 25px;
  animation-delay: 0s;
}

.about-page-intro-diamond {
  bottom: 15%;
  right: 8%;
  width: 120px;
  height: 120px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 90,50 50,90 10,50" fill="none" stroke="%23DC2626" stroke-width="2"/></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  animation-delay: -5s;
}

.about-page-intro-medallion {
  top: 50%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, #dc2626, transparent);
  border-radius: 50%;
  filter: blur(20px);
  animation-delay: -8s;
}

@keyframes aboutPageIntroFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

/* Red Light Effect */
.about-page-golden-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse,
    rgba(220, 38, 38, 0.08),
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
  animation: aboutPageGlowPulse 4s ease-in-out infinite;
}

@keyframes aboutPageGlowPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Vertical Image Layout */
.about-page-intro-images {
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

/* Right Large Image - 450px */
.about-page-img-large {
  flex-shrink: 0;
  width: 380px;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.about-page-img-large img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.about-page-img-large:hover img {
  transform: scale(1.05);
}

/* Left Small Images Container - Vertical Layout */
.about-page-img-small-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Vertical Image - 250px */
.about-page-img-vertical {
  width: 220px;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about-page-img-vertical img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-page-img-vertical:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(220, 38, 38, 0.15);
}

.about-page-img-vertical:hover img {
  transform: scale(1.05);
}

/* Top Small Image - 150px */
.about-page-img-top {
  width: 220px;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.about-page-img-top img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-page-img-top:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 40px rgba(220, 38, 38, 0.15);
}

.about-page-img-top:hover img {
  transform: scale(1.05);
}

/* Experience Badge */
.about-page-exp-badge {
  position: absolute;
  bottom: 30px;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.95),
    rgba(26, 42, 108, 0.95)
  );
  backdrop-filter: blur(12px);
  padding: 15px 28px;
  border-radius: 60px;
  border-left: 4px solid #dc2626;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.about-page-exp-badge .exp-years {
  font-size: 30px;
  font-weight: 800;
  color: #dc2626;
  line-height: 1;
  font-family: "Cormorant Garamond", serif;
}

.about-page-exp-badge .exp-text {
  font-size: 11px;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Right Content */
.about-page-intro-content {
  padding-left: 50px;
}

.about-page-intro-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.about-page-intro-tagline i {
  font-size: 12px;
  color: #dc2626;
}

.about-page-intro-tagline span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.about-page-intro-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.about-page-intro-heading .about-page-gold {
  color: #dc2626;
}

.about-page-intro-desc {
  font-size: 12px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Key Points Grid */
.about-page-key-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.about-page-key-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 15px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.about-page-key-item:hover {
  transform: translateX(8px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.about-page-key-icon {
  width: 35px;
  height: 35px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.about-page-key-item:hover .about-page-key-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.08);
}

.about-page-key-icon i {
  font-size: 16px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.about-page-key-item:hover .about-page-key-icon i {
  color: #ffffff;
}

.about-page-key-text h4 {
  font-size: 12px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 4px;
}

.about-page-key-text p {
  font-size: 10px;
  color: #8b7d6b;
  margin: 0;
}

/* CTA Buttons */
.about-page-intro-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.about-page-btn-primary {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.about-page-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
}

.about-page-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.4);
  color: #dc2626;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-page-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  transform: translateY(-3px);
}

/* ========== 3. OUR STORY TIMELINE ========== */
.about-page-story-section {
  padding: 80px 0;
  background: #ffffff;
}

.about-page-story-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-page-story-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.about-page-story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
}

.about-page-story-title .about-page-gold {
  color: #dc2626;
}

.about-page-timeline {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}

.about-page-timeline-item {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  background: #f8f6f2;
  border-radius: 28px;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
  position: relative;
  overflow: hidden;
}

.about-page-timeline-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-page-timeline-item:hover::before {
  transform: scaleX(1);
}

.about-page-timeline-item:hover {
  transform: translateY(-8px);
  background: #ffffff;
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 25px 45px rgba(220, 38, 38, 0.12);
}

.about-page-timeline-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 800;
  color: #dc2626;
  margin-bottom: 12px;
}

.about-page-timeline-text {
  font-size: 12px;
  text-align: justify;
  color: #4a423e;
  line-height: 1.6;
  font-weight: 500;
}

/* ========== 4. MISSION & VISION CARDS ========== */
.about-page-mv-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.about-page-mv-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-page-mv-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.about-page-mv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
}

.about-page-mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.about-page-mv-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.about-page-mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #dc2626, #ef4444);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.about-page-mv-card:hover::before {
  transform: scaleX(1);
}

.about-page-mv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 30px 55px rgba(220, 38, 38, 0.15);
}

.about-page-mv-card-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  padding: 5px 15px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.about-page-mv-card-tagline i {
  font-size: 10px;
  color: #dc2626;
}

.about-page-mv-card-tagline span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #dc2626;
}

.about-page-mv-icon {
  width: 85px;
  height: 85px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.about-page-mv-card:hover .about-page-mv-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.1);
}

.about-page-mv-icon i {
  font-size: 40px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.about-page-mv-card:hover .about-page-mv-icon i {
  color: #ffffff;
}

.about-page-mv-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.about-page-mv-card p {
  font-size: 12px;
  text-align: justify;
  color: #6b6b6b;
  line-height: 1.7;
}
/*===============MESSAGES SECTION==================*/
.lmsg-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.lmsg-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.lmsg-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.lmsg-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.lmsg-title-red {
  color: #dc2626;
}

.lmsg-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== LEADERSHIP MESSAGE CARDS - PREMIUM DESIGN ========== */
.lmsg-leadership {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

/* Premium Card with Left Gradient Border */
.lmsg-card {
  background: #ffffff;
  border-radius: 50px 50px 50px 0;
  transition: all 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  height: 100%;
  position: relative;
}

/* Left Gradient Border */
.lmsg-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #1a2a6c, #dc2626, #1a2a6c);
  z-index: 1;
}

.lmsg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.12);
}

/* Card Inner Flex Layout - Image Left, Details Right */
.lmsg-card-inner {
  display: flex;
  gap: 30px;
  padding: 30px;
}

/* Image Section - Left Side (Larger) */
.lmsg-img-section {
  flex-shrink: 0;
  width: 180px;
  text-align: center;
}

.lmsg-img-wrapper {
  border-radius: 40px 40px 40px 0;
  overflow: hidden;
  height: 180px;
  width: 180px;
  margin-bottom: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.lmsg-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lmsg-card:hover .lmsg-img-wrapper img {
  transform: scale(1.05);
}

/* Badge Below Image */
.lmsg-img-badge {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  letter-spacing: 1px;
  display: inline-block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Details Section - Right Side */
.lmsg-details-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tagline */
.lmsg-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(220, 38, 38, 0.08);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 12px;
  width: fit-content;
}

.lmsg-tagline i {
  font-size: 11px;
  color: #dc2626;
}

.lmsg-tagline span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #dc2626;
}

/* Name and Position Row */
.lmsg-name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.lmsg-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 800;
  color: #1a2a6c;
}

.lmsg-position {
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Description */
.lmsg-description {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer - Company Name Left, Signature Right */
.lmsg-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.lmsg-company {
  text-align: left;
}

.lmsg-company-name {
  font-size: 13px;
  font-weight: 800;
  color: #1a2a6c;
  letter-spacing: 0.5px;
}

.lmsg-company-tag {
  font-size: 9px;
  color: #8b7d6b;
  letter-spacing: 0.5px;
}

.lmsg-signature {
  text-align: right;
}

.lmsg-signature-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 700;
  color: #1a2a6c;
  font-style: italic;
  margin-bottom: 3px;
}

.lmsg-signature-line {
  width: 70px;
  height: 1px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin-left: auto;
}

.lmsg-signature-text {
  font-size: 9px;
  color: #8b7d6b;
  margin-top: 3px;
}

/* Responsive */
@media screen and (max-width: 1200px) {
  .lmsg-main-wrapper {
    padding: 0 30px;
  }
  .lmsg-section-title {
    font-size: 42px;
  }
  .lmsg-img-section {
    width: 160px;
  }
  .lmsg-img-wrapper {
    height: 160px;
    width: 160px;
  }
}

@media screen and (max-width: 992px) {
  .lmsg-leadership {
    padding: 60px 0;
  }
  .lmsg-section-title {
    font-size: 36px;
  }
  .lmsg-card {
    margin-bottom: 30px;
  }
  .lmsg-img-section {
    width: 150px;
  }
  .lmsg-img-wrapper {
    height: 150px;
    width: 150px;
  }
}

@media screen and (max-width: 768px) {
  .lmsg-main-wrapper {
    padding: 0 20px;
  }
  .lmsg-section-title {
    font-size: 32px;
  }
  .lmsg-card-inner {
    flex-direction: column;
    padding: 25px;
    gap: 20px;
  }
  .lmsg-img-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .lmsg-img-wrapper {
    width: 140px;
    height: 140px;
  }
  .lmsg-name {
    font-size: 22px;
  }
  .lmsg-description {
    -webkit-line-clamp: 4;
  }
  .lmsg-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .lmsg-signature {
    text-align: left;
  }
  .lmsg-signature-line {
    margin-left: 0;
  }
}

@media screen and (max-width: 480px) {
  .lmsg-name {
    font-size: 20px;
  }
  .lmsg-description {
    font-size: 12px;
  }
  .lmsg-img-wrapper {
    width: 120px;
    height: 120px;
  }
  .lmsg-img-badge {
    font-size: 10px;
    padding: 4px 12px;
  }
}

/* ========== 5. WHY WE ARE DIFFERENT ========== */
.about-page-different-section {
  padding: 100px 0;
  background: #ffffff;
}

.about-page-different-left img {
  width: 100%;
  border-radius: 30px;
  height: 500px;
  object-fit: cover;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  transition: transform 0.6s ease;
}

.about-page-different-left img:hover {
  transform: scale(1.02);
}

.about-page-different-right {
  padding-left: 50px;
}

.about-page-different-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.about-page-different-tagline i {
  font-size: 12px;
  color: #dc2626;
}

.about-page-different-tagline span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.about-page-different-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 30px;
}

.about-page-different-heading .about-page-gold {
  color: #dc2626;
}

.about-page-different-points {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.about-page-different-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  border-radius: 20px;
  transition: all 0.35s ease;
}

.about-page-different-point:hover {
  background: rgba(220, 38, 38, 0.05);
  transform: translateX(8px);
}

.about-page-different-icon {
  width: 52px;
  height: 52px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.about-page-different-point:hover .about-page-different-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.08);
}

.about-page-different-icon i {
  font-size: 22px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.about-page-different-point:hover .about-page-different-icon i {
  color: #ffffff;
}

.about-page-different-text h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 6px;
}

.about-page-different-text p {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* ========== 6. FINAL CTA ========== */
.about-page-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #1a2a6c 100%);
  position: relative;
  overflow: hidden;
}

.about-page-final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(220, 38, 38, 0.2),
    transparent
  );
  pointer-events: none;
}

.about-page-final-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-page-final-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.15);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 25px;
}

.about-page-final-tagline i {
  font-size: 12px;
  color: #dc2626;
}

.about-page-final-tagline span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #dc2626;
}

.about-page-final-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.about-page-final-title .about-page-gold {
  color: #dc2626;
}

.about-page-final-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
}

.about-page-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.about-page-final-btn-primary {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.about-page-final-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.45);
}

.about-page-final-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.5);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-page-final-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: #dc2626;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .about-page-container {
    padding: 0 30px;
  }
  .about-page-cover-title {
    font-size: 50px;
  }
  .about-page-img-large {
    width: 320px;
  }
  .about-page-img-large img {
    height: 400px;
  }
  .about-page-img-vertical,
  .about-page-img-top {
    width: 190px;
  }
  .about-page-img-vertical img {
    height: 220px;
  }
  .about-page-img-top img {
    height: 130px;
  }
}

@media screen and (max-width: 992px) {
  .about-page-intro-section {
    padding: 60px 0;
  }
  .about-page-intro-images {
    justify-content: center;
    margin-bottom: 40px;
  }
  .about-page-intro-content {
    padding-left: 0;
  }
  .about-page-mv-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .about-page-different-right {
    padding-left: 0;
    margin-top: 40px;
  }
  .about-page-timeline {
    flex-direction: column;
    gap: 20px;
  }
  .about-page-cover-title {
    font-size: 42px;
  }
  .about-page-img-large {
    width: 280px;
  }
  .about-page-img-large img {
    height: 350px;
  }
  .about-page-img-vertical,
  .about-page-img-top {
    width: 170px;
  }
  .about-page-img-vertical img {
    height: 200px;
  }
  .about-page-img-top img {
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .about-page-container {
    padding: 0 20px;
  }
  .about-page-cover-title {
    font-size: 34px;
  }
  .about-page-cover-intro {
    font-size: 14px;
  }
  .about-page-intro-heading,
  .about-page-story-title,
  .about-page-mv-title,
  .about-page-different-heading,
  .about-page-final-title {
    font-size: 30px;
  }
  .about-page-key-grid {
    grid-template-columns: 1fr;
  }
  .about-page-intro-images {
    flex-direction: column;
    align-items: center;
  }
  .about-page-img-large {
    width: 100%;
    max-width: 350px;
  }
  .about-page-img-large img {
    height: 350px;
  }
  .about-page-img-small-container {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }
  .about-page-img-vertical,
  .about-page-img-top {
    width: 45%;
  }
  .about-page-img-vertical img {
    height: 180px;
  }
  .about-page-img-top img {
    height: 120px;
  }
  .about-page-exp-badge {
    position: static;
    margin-top: 20px;
    display: inline-block;
    width: auto;
  }
  .about-page-mv-card {
    padding: 35px 25px;
  }
  .about-page-timeline-item {
    padding: 20px;
  }
  .about-page-different-left img {
    height: 350px;
  }
}

@media screen and (max-width: 480px) {
  .about-page-intro-buttons,
  .about-page-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  .about-page-btn-primary,
  .about-page-btn-secondary,
  .about-page-final-btn-primary,
  .about-page-final-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .about-page-mv-icon {
    width: 70px;
    height: 70px;
  }
  .about-page-mv-icon i {
    font-size: 32px;
  }
  .about-page-timeline-year {
    font-size: 28px;
  }
  .about-page-img-small-container {
    flex-direction: column;
    align-items: center;
  }
  .about-page-img-vertical,
  .about-page-img-top {
    /* width: 100%;
    max-width: 280px; */
    display: none;
  }
}
/*=================================WHAT WE DO (SERVICES) CSS================================*/
.srv-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.srv-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.srv-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.srv-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.srv-title-red {
  color: #dc2626;
}

.srv-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== 1. INTRO + SEARCH SECTION ========== */
.srv-intro-block {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.srv-intro-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.srv-intro-left .srv-text-red {
  color: #dc2626;
}

.srv-intro-left p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

.srv-search-container {
  background: #ffffff;
  border-radius: 60px;
  padding: 5px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.1);
  display: flex;
  transition: all 0.3s ease;
}

.srv-search-container:focus-within {
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.15);
  border-color: #dc2626;
}

.srv-search-input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: transparent;
  font-size: 15px;
  outline: none;
}

.srv-search-button {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  border: none;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.srv-search-button:hover {
  transform: scale(1.02);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.3);
}

/* ========== 2. SERVICES EXPLORE SECTION ========== */
.srv-explore-block {
  padding: 80px 0;
  background: #ffffff;
}

.srv-sidebar-sticky {
  position: sticky;
  top: 100px;
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
}

/* Sidebar Header with Logo */
.srv-sidebar-header {
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(220, 38, 38, 0.2);
}

.srv-sidebar-logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.srv-sidebar-logo i {
  font-size: 32px;
  color: #ffffff;
}

.srv-sidebar-header h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", serif;
}

.srv-sidebar-header p {
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 12px;
}

.srv-sidebar-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  padding: 8px 16px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  transition: all 0.3s ease;
}

.srv-sidebar-phone:hover {
  background: #dc2626;
  color: #ffffff;
}

.srv-sidebar-heading {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dc2626;
  font-family: "Cormorant Garamond", serif;
}

.srv-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.srv-cat-list li {
  margin-bottom: 10px;
}

.srv-cat-button {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 18px;
  border-radius: 16px;
  font-weight: 600;
  font-size: 14px;
  color: #4a423e;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

.srv-cat-button i {
  width: 24px;
  color: #dc2626;
}

.srv-cat-button:hover {
  background: rgba(220, 38, 38, 0.08);
  transform: translateX(5px);
  color: #dc2626;
}

.srv-cat-button.srv-active-cat {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
}

.srv-cat-button.srv-active-cat i {
  color: #ffffff;
}

/* Services Grid */
.srv-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.srv-card-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
  position: relative;
}

.srv-card-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.srv-card-img-area {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.srv-card-img-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.srv-card-item:hover .srv-card-img-area img {
  transform: scale(1.08);
}

.srv-card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 30px;
  z-index: 2;
}

/* Circle Icon - Fixed Position (Above Content, Not Hidden) */
.srv-card-icon-circle {
  position: absolute;
  bottom: 10px;
  left: 20px;
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #dc2626;
  z-index: 10;
}

.srv-card-icon-circle i {
  font-size: 24px;
  color: #dc2626;
}

.srv-card-content {
  padding: 35px 20px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
  background: #ffffff;
}

.srv-card-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.srv-card-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.srv-card-learn-btn {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 8px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.srv-card-learn-btn:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-color: transparent;
  color: #ffffff;
}

/* ========== 3. FEATURED SERVICES ========== */
.srv-featured-block {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
}

.srv-featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.srv-featured-card {
  text-align: center;
  padding: 35px 25px;
  background: #ffffff;
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(26, 42, 108, 0.08);
}

.srv-featured-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.1);
}

.srv-featured-icon {
  width: 70px;
  height: 70px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.srv-featured-card:hover .srv-featured-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.08);
}

.srv-featured-icon i {
  font-size: 32px;
  color: #dc2626;
}

.srv-featured-card:hover .srv-featured-icon i {
  color: #ffffff;
}

.srv-featured-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.srv-featured-desc {
  font-size: 13px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.srv-featured-btn {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 6px 16px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.srv-featured-btn:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-color: transparent;
  color: #ffffff;
}

/* ========== 4. INDUSTRIES WE SERVE ========== */
.srv-industries-block {
  padding: 80px 0;
  background: #ffffff;
}

.srv-industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.srv-industry-card {
  text-align: center;
  padding: 25px 15px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.srv-industry-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
}

.srv-industry-icon {
  width: 55px;
  height: 55px;
  background: rgba(220, 38, 38, 0.1);
  transform: rotate(45deg);
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 14px;
}

.srv-industry-card:hover .srv-industry-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: rotate(45deg) scale(1.08);
}

.srv-industry-icon i {
  transform: rotate(-45deg);
  font-size: 24px;
  color: #dc2626;
}

.srv-industry-card:hover .srv-industry-icon i {
  color: #ffffff;
}

.srv-industry-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
}

/* ========== 5. WHY CHOOSE US - FULL WIDTH BG ========== */
.srv-whyus-block {
  position: relative;
  padding: 100px 0;
  background-image: url("../image/cover_img/cv2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

@media (max-width: 768px) {
  .srv-whyus-block {
    background-attachment: scroll;
  }
}

.srv-whyus-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.88) 0%,
    rgba(220, 38, 38, 0.75) 100%
  );
  z-index: 1;
}

.srv-whyus-content {
  position: relative;
  z-index: 2;
}

.srv-whyus-left img {
  width: 100%;
  border-radius: 28px;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.srv-whyus-right {
  padding-left: 40px;
}

.srv-whyus-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.srv-whyus-tagline span {
  font-size: 12px;
  color: #ffffff;
}

.srv-whyus-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.srv-whyus-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

.srv-whyus-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.srv-whyus-point {
  display: flex;
  align-items: center;
  gap: 15px;
}

.srv-whyus-point-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srv-whyus-point-icon i {
  font-size: 20px;
  color: #ffffff;
}

.srv-whyus-point-text {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

.srv-stats-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.srv-stat-item {
  text-align: center;
  flex: 1;
}

.srv-stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
}

.srv-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

/* ========== 6. FAQ SECTION ========== */
.srv-faq-block {
  padding: 80px 0;
  background: #ffffff;
}

.srv-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.srv-faq-item {
  background: #f8f6f2;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 42, 108, 0.08);
}

.srv-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #1a2a6c;
  text-align: left;
  transition: all 0.3s ease;
}

.srv-faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
}

.srv-faq-item.srv-faq-active .srv-faq-question i {
  transform: rotate(180deg);
}

.srv-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.srv-faq-item.srv-faq-active .srv-faq-answer {
  max-height: 200px;
}

.srv-faq-answer p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  padding: 0 25px 20px;
}

/* ========== 7. FINAL CTA ========== */
.srv-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #dc2626 100%);
  text-align: center;
}

.srv-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.srv-final-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.srv-final-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.srv-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.srv-final-btn-primary {
  background: #ffffff;
  color: #1a2a6c;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.35s ease;
}

.srv-final-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.srv-final-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.35s ease;
}

.srv-final-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .srv-main-wrapper {
    padding: 0 30px;
  }
  .srv-industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .srv-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-faq-grid {
    grid-template-columns: 1fr;
  }
  .srv-sidebar-sticky {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
  .srv-intro-left {
    margin-bottom: 30px;
  }
  .srv-whyus-left {
    margin-bottom: 30px;
  }
  .srv-whyus-right {
    padding-left: 0;
  }
  .srv-stats-strip {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .srv-main-wrapper {
    padding: 0 20px;
  }
  .srv-section-title {
    font-size: 32px;
  }
  .srv-intro-left h1 {
    font-size: 32px;
  }
  .srv-grid-container {
    grid-template-columns: 1fr;
  }
  .srv-featured-grid {
    grid-template-columns: 1fr;
  }
  .srv-industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .srv-whyus-heading {
    font-size: 32px;
  }
  .srv-final-title {
    font-size: 32px;
  }
  .srv-final-buttons {
    flex-direction: column;
    align-items: center;
  }
  .srv-search-container {
    flex-direction: column;
    border-radius: 30px;
  }
  .srv-search-button {
    margin: 5px;
  }
}
/*===============================CATEGORY RUGS (FLAT WEAVE) PAGE STYLING=================================*/
.flatweave-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.section-title .gold {
  color: #dc2626;
  position: relative;
  display: inline-block;
}

.section-title .gold::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(220, 38, 38, 0.3);
  border-radius: 2px;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* ========== MAIN LAYOUT - 70% LEFT + 30% RIGHT STICKY ========== */
.flatweave-main-layout {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

/* LEFT SIDE - 70% */
.flatweave-left-content {
  padding-right: 30px;
}

/* RIGHT SIDE - 30% STICKY */
.flatweave-right-sidebar {
  position: sticky;
  top: 100px;
}

/* ========== PRODUCT OVERVIEW ========== */
.flatweave-gallery {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.flatweave-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100px;
}

.flatweave-thumb {
  width: 100px;
  height: 100px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.flatweave-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.flatweave-thumb:hover {
  border-color: #dc2626;
  transform: translateY(-3px);
}

.flatweave-thumb.active {
  border-color: #dc2626;
  box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.flatweave-main-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  cursor: zoom-in;
}

.flatweave-main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.flatweave-main-image.zoomed img {
  transform: scale(1.5);
  cursor: zoom-out;
}

.flatweave-details {
  margin-top: 30px;
}

.flatweave-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
}

.flatweave-badge i {
  font-size: 12px;
  color: #dc2626;
}

.flatweave-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #dc2626;
}

.flatweave-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.flatweave-subtitle {
  font-size: 14px;
  color: #dc2626;
  margin-bottom: 15px;
  font-weight: 600;
}

.flatweave-price-section {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(220, 38, 38, 0.15);
}

.flatweave-current-price {
  font-size: 32px;
  font-weight: 800;
  color: #dc2626;
  display: inline-block;
  margin-right: 15px;
}

.flatweave-original-price {
  font-size: 18px;
  color: #b8b8b8;
  text-decoration: line-through;
  display: inline-block;
}

.flatweave-price-badge {
  display: inline-block;
  background: #28a745;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 30px;
  margin-left: 12px;
}

.flatweave-desc {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 25px;
}

.flatweave-key-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.flatweave-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-feature:hover {
  transform: translateX(5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.08);
}

.flatweave-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flatweave-feature:hover .flatweave-feature-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.05);
}

.flatweave-feature-icon i {
  font-size: 18px;
  color: #dc2626;
}

.flatweave-feature:hover .flatweave-feature-icon i {
  color: #ffffff;
}

.flatweave-feature-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
}

.flatweave-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.flatweave-btn-primary {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.2);
}

.flatweave-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.35);
}

.flatweave-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.4);
  color: #dc2626;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.flatweave-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  transform: translateY(-3px);
}

/* ========== MATERIALS & CONSTRUCTION SECTION (NEW) ========== */
.flatweave-materials {
  margin: 50px 0;
}

.flatweave-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flatweave-material-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-material-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.08);
}

.flatweave-material-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flatweave-material-card:hover .flatweave-material-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.flatweave-material-icon i {
  font-size: 20px;
  color: #dc2626;
}

.flatweave-material-card:hover .flatweave-material-icon i {
  color: #ffffff;
}

.flatweave-material-text {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
}

/* ========== CUSTOMIZATION OPTIONS SECTION ========== */
.flatweave-customization {
  margin: 50px 0;
}

.flatweave-customization-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flatweave-custom-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: #ffffff;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-custom-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.08);
}

.flatweave-custom-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flatweave-custom-card:hover .flatweave-custom-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.flatweave-custom-icon i {
  font-size: 20px;
  color: #dc2626;
}

.flatweave-custom-card:hover .flatweave-custom-icon i {
  color: #ffffff;
}

.flatweave-custom-text {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
}

/* ========== SPECIFICATIONS TABLE SECTION (NEW) ========== */
.flatweave-specs {
  margin: 50px 0;
}

.flatweave-specs-table {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-specs-table table {
  width: 100%;
  border-collapse: collapse;
}

.flatweave-specs-table tr {
  border-bottom: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-specs-table tr:last-child {
  border-bottom: none;
}

.flatweave-specs-table th {
  width: 35%;
  padding: 18px 25px;
  text-align: left;
  font-weight: 800;
  font-size: 15px;
  color: #1a2a6c;
  background: #f8f6f2;
}

.flatweave-specs-table td {
  padding: 18px 25px;
  font-size: 14px;
  color: #6b6b6b;
}

/* ========== IDEAL APPLICATIONS ========== */
.flatweave-applications {
  margin-bottom: 60px;
}

.flatweave-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.flatweave-app-card {
  text-align: center;
  padding: 25px 20px;
  background: #ffffff;
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.flatweave-app-card:hover {
  transform: translateY(-5px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
}

.flatweave-app-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  transform: rotate(45deg);
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border-radius: 16px;
}

.flatweave-app-card:hover .flatweave-app-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: rotate(45deg) scale(1.05);
}

.flatweave-app-icon i {
  transform: rotate(-45deg);
  font-size: 28px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.flatweave-app-card:hover .flatweave-app-icon i {
  color: #ffffff;
}

.flatweave-app-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 5px;
}

.flatweave-app-desc {
  font-size: 11px;
  color: #6b6b6b;
}

/* ========== AVAILABLE DESIGNS ========== */
.flatweave-designs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flatweave-design-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-design-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.25);
}

.flatweave-design-img {
  height: 180px;
  overflow: hidden;
}

.flatweave-design-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.flatweave-design-card:hover .flatweave-design-img img {
  transform: scale(1.08);
}

.flatweave-design-body {
  padding: 15px;
  text-align: center;
}

.flatweave-design-title {
  font-size: 15px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 3px;
}

.flatweave-design-cat {
  font-size: 11px;
  color: #dc2626;
}

/* ========== RIGHT SIDEBAR - STICKY ========== */
.flatweave-sidebar-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
}

.flatweave-sidebar-box:hover {
  border-color: rgba(220, 38, 38, 0.2);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.08);
}

.flatweave-box-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  border-left: 3px solid #dc2626;
  padding-left: 12px;
}

.flatweave-assist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.flatweave-assist-item:hover {
  transform: translateX(5px);
}

.flatweave-assist-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flatweave-assist-item:hover .flatweave-assist-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.flatweave-assist-icon i {
  font-size: 20px;
  color: #dc2626;
}

.flatweave-assist-item:hover .flatweave-assist-icon i {
  color: #ffffff;
}

.flatweave-assist-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 2px;
}

.flatweave-assist-text a,
.flatweave-assist-text p {
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: none;
}

.flatweave-assist-btn {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s ease;
  margin-top: 15px;
}

.flatweave-assist-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.flatweave-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.flatweave-highlight-item:hover {
  transform: translateX(5px);
}

.flatweave-highlight-icon {
  width: 38px;
  height: 38px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.flatweave-highlight-item:hover .flatweave-highlight-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.flatweave-highlight-icon i {
  font-size: 16px;
  color: #dc2626;
}

.flatweave-highlight-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
}

.flatweave-related-links {
  list-style: none;
  padding: 0;
}

.flatweave-related-links li {
  margin-bottom: 12px;
}

.flatweave-related-links a {
  color: #1a2a6c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding: 8px 0;
}

.flatweave-related-links a i:first-child {
  color: #dc2626;
  margin-right: 10px;
}

.flatweave-related-links a i:last-child {
  color: #dc2626;
  opacity: 0;
  transition: all 0.3s ease;
}

.flatweave-related-links a:hover {
  color: #dc2626;
  transform: translateX(5px);
}

.flatweave-related-links a:hover i:last-child {
  opacity: 1;
  transform: translateX(3px);
}

.flatweave-download-btn {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.flatweave-download-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  transform: translateY(-3px);
}

.flatweave-mini-form input,
.flatweave-mini-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  font-size: 13px;
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
}

.flatweave-mini-form input:focus,
.flatweave-mini-form textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.flatweave-mini-form textarea {
  min-height: 80px;
  resize: vertical;
}

.flatweave-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 12px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.35s ease;
}

.flatweave-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* ========== RELATED PRODUCTS SLIDER ========== */
.flatweave-related-products {
  padding: 80px 0;
  background: #ffffff;
}

.flatweave-related-swiper {
  padding: 20px 10px 60px;
  position: relative;
}

.flatweave-related-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.flatweave-related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}

.flatweave-related-img {
  height: 200px;
  overflow: hidden;
}

.flatweave-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flatweave-related-card:hover .flatweave-related-img img {
  transform: scale(1.08);
}

.flatweave-related-body {
  padding: 18px;
  text-align: center;
}

.flatweave-related-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.flatweave-related-card:hover .flatweave-related-title {
  color: #dc2626;
}

.flatweave-related-price {
  font-size: 20px;
  font-weight: 800;
  color: #dc2626;
}

.flatweave-related-swiper .swiper-button-next,
.flatweave-related-swiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  transition: all 0.35s ease;
}

.flatweave-related-swiper .swiper-button-next:after,
.flatweave-related-swiper .swiper-button-prev:after {
  font-size: 18px;
  font-weight: bold;
  color: #dc2626;
  transition: all 0.3s ease;
}

.flatweave-related-swiper .swiper-button-next:hover,
.flatweave-related-swiper .swiper-button-prev:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  border-color: #dc2626;
  transform: scale(1.1);
}

.flatweave-related-swiper .swiper-button-next:hover:after,
.flatweave-related-swiper .swiper-button-prev:hover:after {
  color: #ffffff;
}

.flatweave-related-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1c9bc;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.flatweave-related-swiper .swiper-pagination-bullet-active {
  background: #dc2626;
  width: 28px;
  border-radius: 5px;
  opacity: 1;
}

/* ========== FAQ SECTION ========== */
.flatweave-faq {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.flatweave-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.flatweave-faq-item {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
}

.flatweave-faq-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.05);
}

.flatweave-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 16px;
  color: #1a2a6c;
  text-align: left;
  transition: all 0.3s ease;
}

.flatweave-faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
}

.flatweave-faq-item.active .flatweave-faq-question i {
  transform: rotate(180deg);
}

.flatweave-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.flatweave-faq-item.active .flatweave-faq-answer {
  max-height: 200px;
}

.flatweave-faq-answer p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  padding: 0 25px 20px;
}

/* ========== FINAL CTA ========== */
.flatweave-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #2a3a7c 100%);
  position: relative;
  text-align: center;
}

.flatweave-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(220, 38, 38, 0.2),
    transparent
  );
  pointer-events: none;
}

.flatweave-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.flatweave-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.15);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.flatweave-cta-tagline i,
.flatweave-cta-tagline span {
  font-size: 12px;
  color: #dc2626;
}

.flatweave-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.flatweave-cta-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.flatweave-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .flatweave-container {
    padding: 0 30px;
  }
  .flatweave-materials-grid,
  .flatweave-customization-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 992px) {
  .flatweave-left-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  .flatweave-right-sidebar {
    position: relative;
    top: 0;
  }
  .flatweave-designs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flatweave-faq-grid {
    grid-template-columns: 1fr;
  }
  .flatweave-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .flatweave-container {
    padding: 0 20px;
  }
  .section-title {
    font-size: 32px;
  }
  .flatweave-title {
    font-size: 28px;
  }
  .flatweave-gallery {
    flex-direction: column;
  }
  .flatweave-thumbnails {
    flex-direction: row;
    width: 100%;
    order: 2;
  }
  .flatweave-main-image {
    order: 1;
  }
  .flatweave-main-image img {
    height: 300px;
  }
  .flatweave-key-features {
    grid-template-columns: 1fr;
  }
  .flatweave-app-grid {
    grid-template-columns: 1fr;
  }
  .flatweave-designs-grid {
    grid-template-columns: 1fr;
  }
  .flatweave-materials-grid,
  .flatweave-customization-grid {
    grid-template-columns: 1fr;
  }
  .flatweave-current-price {
    font-size: 28px;
  }
  .flatweave-specs-table th,
  .flatweave-specs-table td {
    padding: 12px 15px;
    font-size: 12px;
  }
}
/*=====================================DOWNLOAD CATLOGUES PAGE STYLING=====================================*/
.dc-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.dc-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.dc-section-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.dc-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.dc-section-title .gold {
  color: #dc2626;
}

.dc-section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #dc2626,
    #ef4444,
    #dc2626,
    transparent
  );
  margin: 0 auto;
}

/* ========== 1. INTRODUCTION SECTION ========== */
.dc-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
}

.dc-intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.dc-intro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.dc-intro-badge i,
.dc-intro-badge span {
  font-size: 12px;
  color: #dc2626;
}

.dc-intro-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.dc-intro-desc {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

/* ========== 2. TABLE SECTION ========== */
.dc-table-section {
  padding: 80px 0;
  background: #ffffff;
}

.dc-table-wrapper {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.dc-table {
  width: 100%;
  border-collapse: collapse;
}

.dc-table th {
  background: linear-gradient(135deg, #1a2a6c, #2a3a7c);
  color: #ffffff;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: left;
}

.dc-table th:first-child {
  border-radius: 28px 0 0 0;
}

.dc-table th:last-child {
  border-radius: 0 28px 0 0;
}

.dc-table td {
  padding: 18px 20px;
  font-size: 14px;
  color: #1a2a6c;
  border-bottom: 1px solid rgba(220, 38, 38, 0.08);
  vertical-align: middle;
}

.dc-table tr:hover td {
  background: rgba(220, 38, 38, 0.03);
}

.dc-table tr:last-child td {
  border-bottom: none;
}

/* NEW Badge */
.dc-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.dc-file-name {
  font-weight: 700;
  color: #1a2a6c;
}

.dc-file-desc {
  font-size: 12px;
  color: #8b7d6b;
  margin-top: 3px;
}

.dc-file-date {
  font-size: 12px;
  color: #8b7d6b;
}

.dc-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 8px 16px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.dc-download-btn:hover {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ========== 3. WHY DOWNLOAD SECTION ========== */
.dc-why-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.dc-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.dc-why-card {
  text-align: center;
  padding: 40px 25px;
  background: #ffffff;
  border-radius: 28px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(220, 38, 38, 0.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.dc-why-card:hover {
  transform: translateY(-10px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 25px 45px rgba(220, 38, 38, 0.12);
}

.dc-why-icon {
  width: 80px;
  height: 80px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.dc-why-card:hover .dc-why-icon {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  transform: scale(1.08);
}

.dc-why-icon i {
  font-size: 38px;
  color: #dc2626;
  transition: all 0.4s ease;
}

.dc-why-card:hover .dc-why-icon i {
  color: #ffffff;
}

.dc-why-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 12px;
}

.dc-why-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* ========== 4. FINAL CTA BANNER ========== */
.dc-cta {
  position: relative;
  padding: 100px 0;
  background-image: url("../image/cover_img/cv2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  overflow: hidden;
}

@media (max-width: 768px) {
  .dc-cta {
    background-attachment: scroll;
  }
}

.dc-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.88) 0%,
    rgba(220, 38, 38, 0.4) 50%,
    rgba(26, 42, 108, 0.88) 100%
  );
  z-index: 1;
}

.dc-cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}

.dc-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 25px;
}

.dc-cta-tagline i,
.dc-cta-tagline span {
  font-size: 12px;
  color: #dc2626;
}

.dc-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.dc-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 35px;
}

.dc-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.dc-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #dc2626, #ef4444);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.dc-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.45);
}

.dc-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.6);
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.35s ease;
}

.dc-cta-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.15);
  border-color: #dc2626;
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .dc-container {
    padding: 0 30px;
  }
  .dc-section-title {
    font-size: 38px;
  }
  .dc-intro-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 992px) {
  .dc-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .dc-table-wrapper {
    overflow-x: auto;
  }
  .dc-table {
    min-width: 700px;
  }
  .dc-intro-title {
    font-size: 36px;
  }
  .dc-cta-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .dc-container {
    padding: 0 20px;
  }
  .dc-section-title {
    font-size: 32px;
  }
  .dc-intro-title {
    font-size: 32px;
  }
  .dc-why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .dc-cta-title {
    font-size: 32px;
  }
  .dc-cta-desc {
    font-size: 14px;
  }
  .dc-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .dc-cta-btn-primary,
  .dc-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .dc-intro-desc {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .dc-cta-title {
    font-size: 28px;
  }
}
/*============================SERVICES DETAILS PAGE STYLING==============================*/
.srvdt-main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.srvdt-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.srvdt-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.srvdt-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.srvdt-title-red {
  color: #dc2626;
}

.srvdt-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== MAIN 70-30 LAYOUT ========== */
.srvdt-main-layout {
  padding: 80px 0;
  background: #ffffff;
}

/* 70% Left Content */
.srvdt-left-content {
  flex: 0 0 calc(70% - 20px);
  width: calc(70% - 20px);
}

/* 30% Right Sidebar - Sticky */
.srvdt-right-sidebar {
  flex: 0 0 30%;
  width: 30%;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

/* ========== IMAGE GRID SECTION ========== */
.srvdt-image-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.srvdt-left-small-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 35%;
}

.srvdt-small-img {
  border-radius: 20px;
  overflow: hidden;
  height: 200px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.srvdt-small-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.srvdt-small-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.15);
}

.srvdt-small-img:hover img {
  transform: scale(1.05);
}

.srvdt-right-big-img {
  width: 65%;
  border-radius: 24px;
  overflow: hidden;
  height: 420px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.srvdt-right-big-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.srvdt-right-big-img:hover img {
  transform: scale(1.03);
}

/* ========== SERVICE DETAILS ========== */
.srvdt-service-details {
  margin-bottom: 50px;
}

.srvdt-service-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(220, 38, 38, 0.1);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.srvdt-service-tagline span {
  font-size: 12px;
  color: #dc2626;
}

.srvdt-service-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.srvdt-service-desc {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 25px;
}

.srvdt-service-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.srvdt-btn-primary {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.srvdt-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.srvdt-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.4);
  color: #dc2626;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.srvdt-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-3px);
}

/* ========== WHAT'S INCLUDED SECTION ========== */
.srvdt-included {
  margin-bottom: 50px;
}

.srvdt-included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.srvdt-included-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.srvdt-included-item:hover {
  background: #ffffff;
  transform: translateX(8px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.08);
  border-left: 3px solid #dc2626;
}

.srvdt-included-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.srvdt-included-item:hover .srvdt-included-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.05);
}

.srvdt-included-icon i {
  font-size: 20px;
  color: #dc2626;
}

.srvdt-included-item:hover .srvdt-included-icon i {
  color: #ffffff;
}

.srvdt-included-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 4px;
}

.srvdt-included-text p {
  font-size: 12px;
  color: #6b6b6b;
}

/* ========== MATERIALS WE USE ========== */
.srvdt-materials {
  margin-bottom: 50px;
}

.srvdt-materials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.srvdt-material-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(26, 42, 108, 0.08);
}

.srvdt-material-item:hover {
  transform: translateX(5px);
  border-color: #dc2626;
}

.srvdt-material-icon {
  width: 35px;
  height: 35px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srvdt-material-icon i {
  font-size: 16px;
  color: #dc2626;
}

.srvdt-material-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a6c;
}

/* ========== MANUFACTURING PROCESS ========== */
.srvdt-process {
  margin-bottom: 50px;
}

.srvdt-process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.srvdt-process-step {
  flex: 1;
  text-align: center;
  padding: 20px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.srvdt-process-step:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.srvdt-step-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.srvdt-step-title {
  font-size: 14px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 5px;
}

.srvdt-step-desc {
  font-size: 11px;
  color: #6b6b6b;
}

/* ========== APPLICATIONS ========== */
.srvdt-applications {
  margin-bottom: 50px;
}

.srvdt-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.srvdt-app-card {
  text-align: center;
  padding: 25px 15px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.srvdt-app-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(220, 38, 38, 0.1);
}

.srvdt-app-icon {
  width: 60px;
  height: 60px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.srvdt-app-card:hover .srvdt-app-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.05);
}

.srvdt-app-icon i {
  font-size: 28px;
  color: #dc2626;
}

.srvdt-app-card:hover .srvdt-app-icon i {
  color: #ffffff;
}

.srvdt-app-text {
  font-size: 14px;
  font-weight: 700;
  color: #1a2a6c;
}

/* ========== RELATED SERVICES ========== */
.srvdt-related {
  margin-bottom: 30px;
}

.srvdt-related-grid {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.srvdt-related-link {
  background: #f8f6f2;
  padding: 10px 20px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.srvdt-related-link:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ========== RIGHT SIDEBAR ========== */
.srvdt-sidebar-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 42, 108, 0.08);
}

.srvdt-sidebar-title {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  border-left: 3px solid #dc2626;
  padding-left: 12px;
}

.srvdt-assist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.srvdt-assist-item:hover {
  transform: translateX(5px);
}

.srvdt-assist-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.srvdt-assist-item:hover .srvdt-assist-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
}

.srvdt-assist-icon i {
  font-size: 20px;
  color: #dc2626;
}

.srvdt-assist-item:hover .srvdt-assist-icon i {
  color: #ffffff;
}

.srvdt-assist-text h4 {
  font-size: 13px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 2px;
}

.srvdt-assist-text a {
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: none;
}

.srvdt-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  margin-left: 55px;
  transition: all 0.3s ease;
}

.srvdt-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.srvdt-assist-btn {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s ease;
  margin-top: 15px;
}

.srvdt-assist-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.srvdt-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.srvdt-highlight-item:hover {
  transform: translateX(5px);
}

.srvdt-highlight-icon {
  width: 38px;
  height: 38px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.srvdt-highlight-icon i {
  font-size: 16px;
  color: #dc2626;
}

.srvdt-highlight-text {
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
}

.srvdt-mini-form input,
.srvdt-mini-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 12px;
  border: 1px solid rgba(26, 42, 108, 0.2);
  border-radius: 16px;
  font-size: 13px;
  transition: all 0.3s ease;
}

.srvdt-mini-form input:focus,
.srvdt-mini-form textarea:focus {
  outline: none;
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.srvdt-mini-form textarea {
  min-height: 80px;
  resize: vertical;
}

.srvdt-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 12px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 13px;
  transition: all 0.35s ease;
}

.srvdt-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.srvdt-download-btn {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 14px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.srvdt-download-btn:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  transform: translateY(-3px);
}

.srvdt-related-links {
  list-style: none;
  padding: 0;
}

.srvdt-related-links li {
  margin-bottom: 12px;
}

.srvdt-related-links a {
  color: #1a2a6c;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.srvdt-related-links a:hover {
  color: #dc2626;
  transform: translateX(5px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .srvdt-main-wrapper {
    padding: 0 30px;
  }
}

@media screen and (max-width: 992px) {
  .srvdt-main-layout {
    flex-direction: column;
  }
  .srvdt-left-content,
  .srvdt-right-sidebar {
    flex: auto;
    width: 100%;
  }
  .srvdt-right-sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
  .srvdt-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .srvdt-main-wrapper {
    padding: 0 20px;
  }
  .srvdt-section-title {
    font-size: 32px;
  }
  .srvdt-image-grid {
    flex-direction: column;
  }
  .srvdt-left-small-images {
    flex-direction: row;
    width: 100%;
  }
  .srvdt-small-img {
    width: 50%;
    height: 180px;
  }
  .srvdt-right-big-img {
    width: 100%;
    height: 300px;
  }
  .srvdt-included-grid {
    grid-template-columns: 1fr;
  }
  .srvdt-materials-grid {
    grid-template-columns: 1fr;
  }
  .srvdt-app-grid {
    grid-template-columns: 1fr;
  }
  .srvdt-process-steps {
    flex-direction: column;
  }
}
/*=======================================OUR WORKS PAGE STYLING===========================*/
.ow-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.ow-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.ow-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.ow-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.ow-title-red {
  color: #dc2626;
}

.ow-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== 1. INTRO SECTION (Left Logo + Right Intro) ========== */
.ow-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.ow-intro-logo-frame {
  text-align: center;
}

.ow-intro-logo-img {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border: 4px solid #dc2626;
  box-shadow: 0 15px 35px rgba(220, 38, 38, 0.25);
  transition: all 0.3s ease;
}

.ow-intro-logo-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(220, 38, 38, 0.35);
}

.ow-intro-logo-img img {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
  object-fit: contain;
}

.ow-intro-right h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.ow-intro-right p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

/* ========== 2. FEATURED PROJECTS (Side by Side) ========== */
.ow-featured {
  padding: 80px 0;
  background: #ffffff;
}

.ow-featured-card {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.ow-featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(220, 38, 38, 0.15);
  border-color: #dc2626;
}

.ow-featured-img {
  height: 320px;
  position: relative;
  overflow: hidden;
}

.ow-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ow-featured-card:hover .ow-featured-img img {
  transform: scale(1.05);
}

.ow-featured-overlay {
  padding: 25px;
  background: #ffffff;
}

.ow-featured-tag {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ow-featured-title {
  font-size: 22px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
}

.ow-featured-location {
  font-size: 13px;
  color: #6b6b6b;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========== 3. CASE STUDIES (Alternating Layout) ========== */
.ow-case-studies {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
}

.ow-case-studies-container {
  max-height: 900px;
  overflow-y: auto;
  padding-right: 15px;
}

.ow-case-studies-container::-webkit-scrollbar {
  width: 5px;
}

.ow-case-studies-container::-webkit-scrollbar-track {
  background: rgba(220, 38, 38, 0.1);
  border-radius: 10px;
}

.ow-case-studies-container::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 10px;
}

.ow-case-item {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 50px;
  padding: 25px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.ow-case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.1);
}

.ow-case-img {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  height: 300px;
}

.ow-case-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  cursor: pointer;
}

.ow-case-img:hover img {
  transform: scale(1.05);
}

.ow-case-content {
  flex: 1;
}

.ow-case-tag {
  display: inline-block;
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  padding: 4px 12px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ow-case-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.ow-case-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.ow-case-meta span {
  font-size: 13px;
  color: #6b6b6b;
}

.ow-case-meta i {
  color: #dc2626;
  margin-right: 5px;
}

.ow-case-desc {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  margin-bottom: 12px;
}

.ow-case-gallery-btn {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.ow-case-gallery-btn:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  border-color: transparent;
}

/* Alternating Layout */
.ow-case-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* ========== 4. BEFORE VS AFTER SECTION ========== */
.ow-before-after {
  padding: 80px 0;
  background: #ffffff;
}

.ow-ba-container {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.ow-ba-card {
  flex: 1;
  text-align: center;
}

.ow-ba-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

.ow-ba-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.ow-ba-label {
  font-size: 18px;
  font-weight: 800;
  color: #1a2a6c;
  display: inline-block;
  padding: 5px 20px;
  border-radius: 30px;
}

.ow-ba-card:first-child .ow-ba-label {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

.ow-ba-card:last-child .ow-ba-label {
  background: rgba(26, 42, 108, 0.1);
  color: #1a2a6c;
}

/* ========== 5. IMPACT STATISTICS ========== */
.ow-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #dc2626 100%);
  position: relative;
}

.ow-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ow-stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.ow-stat-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.ow-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
}

.ow-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

/* ========== 6. TRUSTED BY SLIDER ========== */
.ow-trusted {
  padding: 80px 0;
  background: #ffffff;
}

.ow-trusted-swiper {
  padding: 20px 10px;
}

.ow-trusted-logo {
  text-align: center;
  padding: 25px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.ow-trusted-logo:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.ow-trusted-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}

.ow-trusted-logo h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin-top: 10px;
}

/* ========== 7. FINAL CTA ========== */
.ow-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #dc2626 100%);
  text-align: center;
}

.ow-final-content {
  max-width: 700px;
  margin: 0 auto;
}

.ow-final-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.ow-final-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.ow-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ow-final-btn-primary {
  background: #ffffff;
  color: #1a2a6c;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.35s ease;
}

.ow-final-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.ow-final-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.35s ease;
}

.ow-final-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ========== MODAL STYLES ========== */
.ow-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.ow-modal.active {
  display: flex;
}

.ow-modal-content {
  max-width: 900px;
  width: 90%;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.ow-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #ffffff;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ow-modal-slider {
  position: relative;
}

.ow-modal-slider img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.ow-modal-prev,
.ow-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ow-modal-prev {
  left: 15px;
}
.ow-modal-next {
  right: 15px;
}

.ow-modal-prev:hover,
.ow-modal-next:hover {
  background: #dc2626;
}

.flip-animation {
  animation: flipPage 0.4s ease-in-out;
}

@keyframes flipPage {
  0% {
    transform: rotateY(0deg);
    opacity: 1;
  }
  50% {
    transform: rotateY(90deg);
    opacity: 0.5;
  }
  100% {
    transform: rotateY(0deg);
    opacity: 1;
  }
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .ow-main-wrapper {
    padding: 0 30px;
  }
}

@media screen and (max-width: 992px) {
  .ow-intro-left {
    margin-bottom: 30px;
  }
  .ow-case-item {
    flex-direction: column !important;
  }
  .ow-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ow-ba-container {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .ow-main-wrapper {
    padding: 0 20px;
  }
  .ow-section-title {
    font-size: 32px;
  }
  .ow-intro-right h1 {
    font-size: 32px;
  }
  .ow-stats-grid {
    grid-template-columns: 1fr;
  }
  .ow-featured-img {
    height: 250px;
  }
  .ow-intro-logo-img {
    width: 140px;
    height: 140px;
  }
  .ow-intro-logo-img img {
    width: 90px;
    height: 90px;
  }
}
/*=====================================CONTACT US PAGE STYLING================================*/
.cu-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.cu-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.cu-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.cu-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.cu-title-red {
  color: #dc2626;
}

.cu-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

.cu-contact-methods {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.cu-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.cu-method-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.cu-method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.3);
}

.cu-method-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.cu-method-card:hover .cu-method-icon {
  transform: scale(1.05) rotate(360deg);
}

.cu-method-icon i {
  font-size: 32px;
  color: #ffffff;
}

.cu-method-title {
  font-size: 20px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.cu-method-detail {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 15px;
  word-break: break-word;
}

.cu-method-link {
  color: #dc2626;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.cu-method-link:hover {
  gap: 10px;
  color: #1a2a6c;
}

.cu-method-strip {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 11px;
  color: #8b7d6b;
  letter-spacing: 1px;
}

/* ========== MARQUEE SECTION ========== */
.cu-marquee {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  padding: 12px 0;
  overflow: hidden;
}

.cu-marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: cuMarqueeScroll 20s linear infinite;
}

.cu-marquee-content span {
  display: inline-block;
  margin: 0 30px;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.cu-marquee-content i {
  margin-right: 8px;
  color: #ffffff;
}

@keyframes cuMarqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== 2. CONTACT FORM + WHY CONTACT US (60/40) ========== */
.cu-form-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Form Styling */
.cu-form-container {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.cu-form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 30px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #dc2626;
}

.cu-form-group {
  margin-bottom: 22px;
}

.cu-form-label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 8px;
}

.cu-form-label i {
  color: #dc2626;
  margin-right: 8px;
  font-size: 16px;

  width: 18px;
}

.cu-form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1.5px solid rgba(26, 42, 108, 0.15);
  border-radius: 16px;
  background: #f8f6f2;
  transition: all 0.3s ease;
}

.cu-form-control:focus {
  outline: none;
  border-color: #dc2626;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

textarea.cu-form-control {
  resize: vertical;
  min-height: 135px;
}

.cu-submit-btn {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.cu-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* Why Contact Us Card */
.cu-why-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.cu-why-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 25px;
  position: relative;
  padding-left: 20px;
  border-left: 4px solid #dc2626;
}

.cu-why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cu-why-item:hover {
  transform: translateX(8px);
}

.cu-why-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cu-why-item:hover .cu-why-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.05);
}

.cu-why-icon i {
  font-size: 20px;
  color: #dc2626;
}

.cu-why-item:hover .cu-why-icon i {
  color: #ffffff;
}

.cu-why-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a6c;
}

.cu-social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.cu-social-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cu-social-icon i {
  font-size: 20px;
  color: #dc2626;
}

.cu-social-icon:hover {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: translateY(-3px);
}

.cu-social-icon:hover i {
  color: #ffffff;
}

/* ========== 3. INTERACTIVE LOCATION SECTION ========== */
.cu-location {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
}

.cu-map-container {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.cu-map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.cu-location-details {
  background: #ffffff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid rgba(220, 38, 38, 0.1);
}

.cu-location-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 25px;
}

.cu-location-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 10px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.cu-location-item:hover {
  background: rgba(220, 38, 38, 0.05);
  transform: translateX(5px);
}

.cu-location-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cu-location-icon i {
  font-size: 22px;
  color: #dc2626;
}

.cu-location-text h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 4px;
}

.cu-location-text p {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
}

.cu-direction-btn {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 14px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
  margin-top: 10px;
  border: none;
  cursor: pointer;
}

.cu-direction-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* Direction Overlay */
.cu-direction-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.cu-direction-overlay.active {
  display: flex;
}

.cu-direction-card {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cu-direction-card .cu-logo-img {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cu-direction-card .cu-logo-img img {
  width: 55px;
  height: 55px;
  background: #ffffff;
  border-radius: 50%;
  padding: 5px;
}

.cu-direction-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 10px;
}

.cu-direction-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.cu-direction-close {
  background: #ffffff;
  color: #1a2a6c;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cu-direction-close:hover {
  transform: translateY(-2px);
}

/* ========== 4. FAQ SECTION ========== */
.cu-faq {
  padding: 80px 0;
  background: #ffffff;
}

.cu-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.cu-faq-item {
  background: #f8f6f2;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 42, 108, 0.08);
  transition: all 0.3s ease;
}

.cu-faq-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
}

.cu-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: #1a2a6c;
  text-align: left;
  transition: all 0.3s ease;
}

.cu-faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
}

.cu-faq-item.cu-faq-active .cu-faq-question i {
  transform: rotate(180deg);
}

.cu-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.cu-faq-item.cu-faq-active .cu-faq-answer {
  max-height: 200px;
}

.cu-faq-answer p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  padding: 0 28px 22px;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .cu-main-wrapper {
    padding: 0 30px;
  }
}

@media screen and (max-width: 992px) {
  .cu-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cu-faq-grid {
    grid-template-columns: 1fr;
  }
  .cu-map-container {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .cu-main-wrapper {
    padding: 0 20px;
  }
  .cu-section-title {
    font-size: 32px;
  }
  .cu-methods-grid {
    grid-template-columns: 1fr;
  }
  .cu-form-container {
    padding: 25px;
  }
  .cu-why-card {
    margin-top: 30px;
  }
  .cu-location-details {
    margin-top: 30px;
  }
  .cu-direction-card h3 {
    font-size: 24px;
  }
}
/*============================TERMS OF CONDITIONS STYLING=============================*/
.tc-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.tc-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.tc-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.tc-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.tc-title-red {
  color: #dc2626;
}

.tc-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== LAST UPDATED BAR ========== */
.tc-update-bar {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  padding: 12px 0;
  text-align: center;
}

.tc-update-bar span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.tc-update-bar i {
  margin-right: 8px;
}

/* ========== TERMS CONTENT ========== */
.tc-content {
  padding: 80px 0;
  background: #ffffff;
}

.tc-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

/* Section Styling */
.tc-section-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tc-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.tc-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.tc-block-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-block-icon i {
  font-size: 24px;
  color: #dc2626;
}

.tc-block-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a6c;
  margin: 0;
}

.tc-block-subheading {
  font-size: 14px;
  color: #8b7d6b;
  margin-top: 5px;
}

.tc-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.tc-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.tc-list li {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 8px;
}

.tc-list li i {
  color: #dc2626;
  margin-right: 8px;
  font-size: 12px;
}

.tc-highlight {
  background: rgba(220, 38, 38, 0.05);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  border-left: 3px solid #dc2626;
}

.tc-highlight p {
  margin: 0;
  font-size: 14px;
  color: #1a2a6c;
  font-weight: 500;
}

/* Table Styling */
.tc-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.tc-table th,
.tc-table td {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.tc-table th {
  background: rgba(220, 38, 38, 0.05);
  color: #1a2a6c;
  font-weight: 700;
}

.tc-table td {
  color: #6b6b6b;
}

/* Grid for multiple sections */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 20px 0;
}

.tc-grid-item {
  background: #f8f6f2;
  padding: 20px;
  border-radius: 20px;
}

.tc-grid-item h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.tc-grid-item p {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
}

/* ========== ACCEPTANCE BAR ========== */
.tc-acceptance {
  background: #f8f6f2;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  margin-top: 30px;
}

.tc-acceptance p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.tc-acceptance .tc-date {
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .tc-main-wrapper {
    padding: 0 30px;
  }
  .tc-section-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 992px) {
  .tc-content {
    padding: 60px 0;
  }
  .tc-section-title {
    font-size: 36px;
  }
  .tc-card {
    padding: 30px;
  }
  .tc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .tc-block-heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .tc-main-wrapper {
    padding: 0 20px;
  }
  .tc-section-title {
    font-size: 32px;
  }
  .tc-card {
    padding: 25px;
  }
  .tc-block-heading {
    font-size: 22px;
  }
  .tc-table {
    display: block;
    overflow-x: auto;
  }
}

@media screen and (max-width: 480px) {
  .tc-block-title {
    flex-direction: column;
    text-align: center;
  }
  .tc-block-heading {
    text-align: center;
  }
}
/*=============================PRIVACY POLICY STYLES==========================================*/
.pp-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.pp-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.pp-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.pp-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.pp-title-red {
  color: #dc2626;
}

.pp-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== LAST UPDATED BAR ========== */
.pp-update-bar {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  padding: 12px 0;
  text-align: center;
}

.pp-update-bar span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
}

.pp-update-bar i {
  margin-right: 8px;
}

/* ========== PRIVACY CONTENT ========== */
.pp-content {
  padding: 80px 0;
  background: #ffffff;
}

.pp-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

/* Section Styling */
.pp-section-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pp-section-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.pp-block-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.pp-block-icon {
  width: 50px;
  height: 50px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-block-icon i {
  font-size: 24px;
  color: #dc2626;
}

.pp-block-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 700;
  color: #1a2a6c;
  margin: 0;
}

.pp-block-subheading {
  font-size: 14px;
  color: #8b7d6b;
  margin-top: 5px;
}

.pp-text {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 15px;
}

.pp-list {
  padding-left: 20px;
  margin-bottom: 15px;
}

.pp-list li {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 8px;
}

.pp-list li i {
  color: #dc2626;
  margin-right: 8px;
  font-size: 12px;
}

.pp-highlight {
  background: rgba(220, 38, 38, 0.05);
  padding: 20px;
  border-radius: 20px;
  margin: 20px 0;
  border-left: 3px solid #dc2626;
}

.pp-highlight p {
  margin: 0;
  font-size: 14px;
  color: #1a2a6c;
  font-weight: 500;
}

/* Cookie Table */
.pp-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.pp-table th,
.pp-table td {
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.pp-table th {
  background: rgba(220, 38, 38, 0.05);
  color: #1a2a6c;
  font-weight: 700;
}

.pp-table td {
  color: #6b6b6b;
}

/* Rights Grid */
.pp-rights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.pp-rights-card {
  background: #f8f6f2;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.pp-rights-card:hover {
  transform: translateY(-3px);
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.1);
}

.pp-rights-icon {
  width: 55px;
  height: 55px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.pp-rights-icon i {
  font-size: 24px;
  color: #dc2626;
}

.pp-rights-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
}

.pp-rights-card p {
  font-size: 12px;
  color: #6b6b6b;
  margin: 0;
}

/* Contact Grid */
.pp-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0;
}

.pp-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pp-contact-item:hover {
  transform: translateX(5px);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.08);
}

.pp-contact-icon {
  width: 45px;
  height: 45px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-contact-icon i {
  font-size: 20px;
  color: #dc2626;
}

.pp-contact-text h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 2px;
}

.pp-contact-text p,
.pp-contact-text a {
  font-size: 12px;
  color: #6b6b6b;
  text-decoration: none;
}

.pp-contact-text a:hover {
  color: #dc2626;
}

/* Acceptance Section */
.pp-acceptance {
  background: #f8f6f2;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  margin-top: 30px;
}

.pp-acceptance p {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 15px;
}

.pp-acceptance .pp-date {
  font-size: 12px;
  color: #dc2626;
  font-weight: 600;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .pp-main-wrapper {
    padding: 0 30px;
  }
  .pp-section-title {
    font-size: 42px;
  }
}

@media screen and (max-width: 992px) {
  .pp-content {
    padding: 60px 0;
  }
  .pp-section-title {
    font-size: 36px;
  }
  .pp-card {
    padding: 30px;
  }
  .pp-rights-grid {
    grid-template-columns: 1fr;
  }
  .pp-contact-grid {
    grid-template-columns: 1fr;
  }
  .pp-block-heading {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .pp-main-wrapper {
    padding: 0 20px;
  }
  .pp-section-title {
    font-size: 32px;
  }
  .pp-card {
    padding: 25px;
  }
  .pp-block-heading {
    font-size: 22px;
  }
  .pp-block-title {
    flex-direction: column;
    text-align: center;
  }
  .pp-table {
    display: block;
    overflow-x: auto;
  }
}

@media screen and (max-width: 480px) {
  .pp-block-heading {
    text-align: center;
  }
}
/*===================================NEWS DETAILS PAGE STYLING=====================================*/
.nd-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ========== 1. NEWS DETAILS SECTION ========== */
.nd-details-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.nd-details-card {
  background: #ffffff;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
  transition: all 0.3s ease;
}

.nd-details-card:hover {
  box-shadow: 0 25px 50px rgba(220, 38, 38, 0.1);
}

.nd-details-inner {
  display: flex;
  gap: 40px;
  padding: 0;
}

/* Left Image Side */
.nd-image-side {
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 500px;
}

.nd-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nd-details-card:hover .nd-main-img {
  transform: scale(1.02);
}

/* Right Details Side */
.nd-details-side {
  flex: 1;
  padding: 40px 40px 40px 0;
}

.nd-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, 0.1);
  padding: 5px 15px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.nd-tagline i {
  font-size: 11px;
  color: #dc2626;
}

.nd-tagline span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #dc2626;
}

.nd-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.nd-date-range {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nd-date-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nd-date-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-date-icon i {
  font-size: 18px;
  color: #dc2626;
}

.nd-date-text h4 {
  font-size: 12px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 2px;
}

.nd-date-text p {
  font-size: 13px;
  color: #6b6b6b;
  margin: 0;
}

.nd-paragraph {
  font-size: 15px;
  color: #6b6b6b;
  line-height: 1.8;
  margin-bottom: 25px;
}

.nd-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.nd-btn-primary {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.nd-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

.nd-btn-secondary {
  background: transparent;
  border: 1.5px solid rgba(220, 38, 38, 0.3);
  color: #dc2626;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.35s ease;
}

.nd-btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1);
  border-color: #dc2626;
  transform: translateY(-3px);
}

/* ========== 2. RELATED NEWS SECTION ========== */
.nd-related-section {
  padding: 80px 0;
  background: #ffffff;
}

.nd-related-header {
  text-align: center;
  margin-bottom: 50px;
}

.nd-related-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.nd-related-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.nd-related-title span {
  color: #dc2626;
}

.nd-related-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* Related News Grid - 3 Cards */
.nd-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.nd-related-card {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
}

.nd-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
  border-color: rgba(220, 38, 38, 0.2);
}

.nd-related-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.nd-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nd-related-card:hover .nd-related-img img {
  transform: scale(1.08);
}

.nd-related-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 30px;
}

.nd-related-body {
  padding: 22px;
}

.nd-related-date {
  font-size: 11px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nd-related-date i {
  font-size: 11px;
}

.nd-related-news-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.nd-related-card:hover .nd-related-news-title {
  color: #dc2626;
}

.nd-related-desc {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.nd-related-link {
  color: #dc2626;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.nd-related-link:hover {
  gap: 12px;
}

/* ========== 3. FINAL CTA SECTION ========== */
.nd-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c 0%, #dc2626 100%);
  text-align: center;
  position: relative;
}

.nd-cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.nd-cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.nd-cta-tagline span {
  font-size: 12px;
  color: #ffffff;
}

.nd-cta-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.nd-cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.nd-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.nd-cta-btn-primary {
  background: #ffffff;
  color: #1a2a6c;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: all 0.35s ease;
}

.nd-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nd-cta-btn-secondary {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 38px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.35s ease;
}

.nd-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .nd-main-wrapper {
    padding: 0 30px;
  }
  .nd-title {
    font-size: 32px;
  }
}

@media screen and (max-width: 992px) {
  .nd-details-inner {
    flex-direction: column;
  }
  .nd-details-side {
    padding: 30px;
  }
  .nd-image-side {
    min-height: 350px;
  }
  .nd-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .nd-related-title {
    font-size: 36px;
  }
}

@media screen and (max-width: 768px) {
  .nd-main-wrapper {
    padding: 0 20px;
  }
  .nd-title {
    font-size: 28px;
  }
  .nd-related-grid {
    grid-template-columns: 1fr;
  }
  .nd-related-title {
    font-size: 32px;
  }
  .nd-cta-title {
    font-size: 32px;
  }
  .nd-cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .nd-cta-btn-primary,
  .nd-cta-btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .nd-date-range {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*===============================BOOKING PAGE STYLE=============================*/
.bk-main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.bk-section-head {
  text-align: center;
  margin-bottom: 50px;
}

.bk-section-subhead {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.1);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  margin-bottom: 20px;
}

.bk-section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.bk-title-red {
  color: #dc2626;
}

.bk-divider-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #1a2a6c, #dc2626);
  margin: 0 auto;
}

/* ========== 1. INTRODUCTION SECTION ========== */
.bk-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f6f2 100%);
}

.bk-intro-left h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.bk-intro-left p {
  font-size: 16px;
  color: #6b6b6b;
  line-height: 1.8;
}

.bk-scroll-btn {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

.bk-scroll-btn:hover {
  transform: scale(1.05);
}

.bk-scroll-btn i {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 5px;
}

.bk-scroll-btn span {
  font-size: 10px;
  color: #ffffff;
  font-weight: 600;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* ========== 2. BOOKING FORM SECTION ========== */
.bk-form-section {
  padding: 80px 0;
  background: #ffffff;
}

.bk-form-card {
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.08);
  height: 100%;
}

.bk-form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 4px solid #dc2626;
}

.bk-form-group {
  margin-bottom: 22px;
}

.bk-form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 8px;
}

.bk-form-label i {
  color: #dc2626;
  margin-right: 8px;
}

.bk-form-control {
  width: 100%;
  padding: 14px 18px;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1.5px solid rgba(26, 42, 108, 0.15);
  border-radius: 16px;
  background: #f8f6f2;
  transition: all 0.3s ease;
}

.bk-form-control:focus {
  outline: none;
  border-color: #dc2626;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Multi-Select Services */
.bk-services-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.bk-service-chip {
  background: #f8f6f2;
  border: 1.5px solid rgba(220, 38, 38, 0.2);
  padding: 8px 18px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: #1a2a6c;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bk-service-chip:hover {
  background: rgba(220, 38, 38, 0.1);
  transform: translateY(-2px);
}

.bk-service-chip.selected {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  border-color: transparent;
}

.bk-selected-services {
  margin-top: 12px;
  font-size: 12px;
  color: #6b6b6b;
}

.bk-selected-services span {
  background: rgba(220, 38, 38, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-block;
  margin: 3px;
  font-size: 11px;
}

.bk-submit-btn {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
  padding: 14px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.35s ease;
  margin-top: 10px;
}

.bk-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
}

/* Benefits Card */
.bk-benefits-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 35px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
}

.bk-benefits-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.bk-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.bk-benefit-item:hover {
  transform: translateX(5px);
}

.bk-benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bk-benefit-icon i {
  font-size: 18px;
  color: #dc2626;
}

.bk-benefit-text {
  font-size: 14px;
  font-weight: 600;
  color: #1a2a6c;
}

.bk-contact-info {
  background: #f8f6f2;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
}

.bk-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.bk-contact-item i {
  width: 35px;
  height: 35px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
}

.bk-contact-item a,
.bk-contact-item p {
  font-size: 13px;
  color: #6b6b6b;
  text-decoration: none;
}

/* Booking Steps */
.bk-steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.bk-step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8f6f2;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.bk-step-item:hover {
  transform: translateX(5px);
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(220, 38, 38, 0.08);
}

.bk-step-circle {
  width: 40px;
  height: 40px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: #dc2626;
  transition: all 0.3s ease;
}

.bk-step-item:hover .bk-step-circle {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  color: #ffffff;
}

.bk-step-text {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a6c;
}

/* ========== 3. SERVICES SELECTION ========== */
.bk-services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
}

.bk-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.bk-service-card {
  text-align: center;
  padding: 30px 20px;
  background: #ffffff;
  border-radius: 24px;
  transition: all 0.4s ease;
  border: 1px solid rgba(220, 38, 38, 0.08);
  cursor: pointer;
}

.bk-service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(220, 38, 38, 0.25);
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.1);
}

.bk-service-card.selected {
  border-color: #dc2626;
  background: linear-gradient(
    135deg,
    rgba(26, 42, 108, 0.05),
    rgba(220, 38, 38, 0.05)
  );
}

.bk-service-icon {
  width: 70px;
  height: 70px;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}

.bk-service-card:hover .bk-service-icon {
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  transform: scale(1.05);
}

.bk-service-icon i {
  font-size: 32px;
  color: #dc2626;
}

.bk-service-card:hover .bk-service-icon i {
  color: #ffffff;
}

.bk-service-name {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
}

/* ========== 4. WHAT HAPPENS NEXT (TIMELINE) ========== */
.bk-timeline-section {
  padding: 80px 0;
  background: #ffffff;
}

.bk-timeline-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.bk-timeline-item {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  background: #f8f6f2;
  border-radius: 24px;
  transition: all 0.4s ease;
  position: relative;
}

.bk-timeline-item::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #dc2626;
}

.bk-timeline-item:last-child::after {
  display: none;
}

.bk-timeline-item:hover {
  transform: translateY(-8px);
  background: #ffffff;
  box-shadow: 0 20px 35px rgba(220, 38, 38, 0.1);
}

.bk-timeline-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a2a6c, #dc2626);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.bk-timeline-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a2a6c;
  margin-bottom: 8px;
}

.bk-timeline-desc {
  font-size: 12px;
  color: #6b6b6b;
}

/* ========== 5. FAQ SECTION ========== */
.bk-faq-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f6f2 0%, #ffffff 100%);
}

.bk-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.bk-faq-item {
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(26, 42, 108, 0.08);
  transition: all 0.3s ease;
}

.bk-faq-item:hover {
  border-color: rgba(220, 38, 38, 0.25);
}

.bk-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 16px;
  color: #1a2a6c;
  text-align: left;
}

.bk-faq-question i {
  color: #dc2626;
  transition: transform 0.3s ease;
}

.bk-faq-item.bk-faq-active .bk-faq-question i {
  transform: rotate(180deg);
}

.bk-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bk-faq-item.bk-faq-active .bk-faq-answer {
  max-height: 200px;
}

.bk-faq-answer p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.7;
  padding: 0 28px 22px;
}

/* ========== RESPONSIVE ========== */
@media screen and (max-width: 1200px) {
  .bk-main-wrapper {
    padding: 0 30px;
  }
  .bk-section-title {
    font-size: 38px;
  }
}

@media screen and (max-width: 992px) {
  .bk-intro-left {
    margin-bottom: 40px;
    text-align: center;
  }
  .bk-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bk-timeline-item::after {
    display: none;
  }
  .bk-faq-grid {
    grid-template-columns: 1fr;
  }
  .bk-steps-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 768px) {
  .bk-main-wrapper {
    padding: 0 20px;
  }
  .bk-section-title {
    font-size: 32px;
  }
  .bk-intro-left h1 {
    font-size: 32px;
  }
  .bk-services-grid {
    grid-template-columns: 1fr;
  }
  .bk-timeline-grid {
    flex-direction: column;
  }
  .bk-form-card {
    padding: 25px;
    margin-bottom: 30px;
  }
}
