body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}

:root {
  --primary: #131313;
  --maroon: #ac1924;
}

.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.text-maroon { color: var(--maroon) !important; }
.btn-maroon { background-color: var(--maroon); color: #fff; border: none; }
.btn-maroon:hover { background-color: #8d141d; color: #fff; }

.custom-input {
  background-color: #1a1a1a;
  color: #fff;
  border: none;
}
.custom-input::placeholder { color: #bbb; }
.custom-input:focus { background-color: #1a1a1a; box-shadow: 0 0 0 .2rem rgba(172,25,36,0.3); }

.hero-section { position: relative; height: 90vh; }
.hero-bg { position: absolute; width: 100%; height: 100%; object-fit: cover; top: 0; left: 0; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.55); }
.hero-content { position: relative; z-index: 2; display: flex; flex-direction: column; justify-content: center; align-items: center; height: 100%; }

.gradient-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hover-zoom { transition: all .4s ease-in-out; }
.hover-zoom:hover { transform: scale(1.08); }

.footer-link { color: #ccc; text-decoration: none; display: block; margin-bottom: .25rem; }
.footer-link:hover { color: var(--maroon); }

.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--primary);
  transition: .3s;
}
.social-btn:hover { background: var(--maroon); color: #fff; }

/* ===== DROPDOWN MENU HOVER STYLING ===== */
.navbar .dropdown-menu {
  background-color: #131313 !important; /* keeps your dark menu base */
  border: none;
  border-radius: 0;
  padding: 0;
}

.navbar .dropdown-item {
  color: #ffffff !important;
  padding: 10px 18px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: #ac1924 !important; 
  color: #ffffff !important;          
}


/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  background: #fff;
}
.filter-btn {
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  background-color: #f3f3f3;
  color: var(--primary);
  font-weight: 500;
  transition: all 0.3s ease;
}
.filter-btn.active {
  background-color: var(--maroon);
  color: #fff;
}
.filter-btn:hover {
  background-color: #e3e3e3;
}

/* Card Styling */
.portfolio-card {
  transition: all 0.6s ease;
  display: block;
  width: 260px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  transition: all 0.6s ease;
}
.rotate6 { transform: rotate(6deg); }
.rotateNeg12 { transform: rotate(-12deg); }

.portfolio-card:hover {
  transform: translateY(-30px) rotate(0deg) scale(1.05);
  z-index: 2;
}
.portfolio-card:hover img {
  transform: scale(1.15);
}

/* Fade-in effect when filtering */
.fadeIn {
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== GET IN TOUCH SECTION ===== */
.get-in-touch {
  background-color: #131313;
  color: #f1f1f1;
  position: relative;
  overflow: hidden;
}

.get-in-touch .contact-card {
  border-left: 4px solid #ac1924;
}

.btn-contact {
  padding: 0.8rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  color: #f8f9fa;
  border: 2px solid #ac1924;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-contact:hover {
  background-color: #ac1924;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(172, 25, 36, 0.3);
}

.bottom-gradient {
  background: linear-gradient(to right top, rgba(220, 38, 38, 0.2) 0%, transparent 50%, transparent 100%);
  border-top: 1px solid rgba(92, 79, 240, 0.2);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  background-color: #131313;
  color: #e5e5e5;
  position: relative;
  overflow: hidden;
}

.text-gradient {
  background: linear-gradient(to bottom, #ffffff, #bcbcbc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card {
  background-color: rgba(30, 30, 30, 0.7)!important;
  border: 1px solid #222;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(172, 25, 36, 0.3);
  border-color: #ac1924;
}

.icon-wrapper {
  width: 55px;
  height: 55px;
  border-radius: 10px;
  border: 1px solid #ac1924;
  background-image: linear-gradient(rgb(195, 40, 40) 0%, rgb(118, 38, 38) 100%);
  box-shadow: 0 0 15px rgba(172, 25, 36, 0.4);
}

.text-gray-300 { color: #d1d5db !important; }
.text-gray-400 { color: #9ca3af !important; }

.bottom-gradient {
  background: linear-gradient(to left top, rgba(220, 38, 38, 0.2) 0%, transparent 50%, transparent 100%);
  border-top: 1px solid rgba(92, 79, 240, 0.2);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: #131313;
  color: #fff;
}

.bg-maroon {
  background-color: #ac1924 !important;
}

.text-gray-300 {
  color: #d1d5db !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #f9f9f9;
  opacity: 0.8;
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(172, 25, 36, 0.4);
}

.optin-box {
  font-size: 0.9rem;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.btn-submit {
  background-color: #ac1924;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #8e151e;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(172, 25, 36, 0.3);
}

/* ===== FOOTER ===== */
.footer-section {
  background-color: #131313;
  color: #fff;
}

.text-maroon {
  color: #ac1924 !important;
}

.text-gray-300 {
  color: #d1d5db !important;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-link:hover {
  color: #ac1924;
  transform: translateX(3px);
}

.footer-about p {
  max-width: 400px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid #9ca3af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.social-btn i {
  position: relative;
  z-index: 2;
  font-size: 1rem;
}

.social-btn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.4s ease;
}

.social-btn.instagram::after {
  background-color: #e1306c;
}

.social-btn.twitter::after {
  background-color: #000;
}

.social-btn.facebook::after {
  background-color: #1877f2;
}

.social-btn:hover::after {
  top: 0;
}

.social-btn:hover i {
  color: #fff;
}

/* ===== FORCE GLOBAL 100PX PADDING ON ALL SECTIONS ===== */
body section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* exclude hero section */
.hero-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 70vh; /* reduce banner height */
}

/* =========================================
   GLOBAL SECTION SPACING & BOXED WIDTH
   ========================================= */

/* 100px top/bottom padding for every section */
body section {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  width: 100%;
  display: block;
}

/* boxed content inside sections */
body section > .container {
  max-width: 1320px;      
  margin: 0 auto;        
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* optional slightly wider on 1600px+ screens */
@media (min-width: 1600px) {
  body section > .container {
    max-width: 1400px;
  }
}

/* Hero section — smaller height, no padding */
.hero-section {
  height: 70vh;          
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* Keep hero content centered nicely */
.hero-section .hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* responsive hero height */
@media (max-width: 992px) {
  .hero-section { height: 60vh; }
}
@media (max-width: 576px) {
  .hero-section { height: 50vh; }
}

/* Extra cleanup: remove inner section padding if Bootstrap adds any */
section[class*="py-"] {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}


.seo-slider {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    height: 100%;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    background-color: #b91c1c; /* maroon */
    border-radius: 8px;
  }
  .text-maroon {
    color: #b91c1c !important;
  }
  .text-secondary {
    color: #fff !important;
    line-height: 1.6;
  }

.icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    background-color: #b91c1c;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Center decorative line under each icon */
  .center-line {
    width: 100px;
    height: 2px;
    background-color: #b91c1c;
  }

  /* Spacing */
  .seo-step {
    margin-bottom: 2rem;
  }

  @media (max-width: 767px) {
    .center-line {
      width: 60px;
    }
  }

  .text-maroon { color: #b91c1c !important; }
  .bg-maroon { background-color: #b91c1c !important; }

  #seoContent {
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
  }

  .seo-dot {
    width: 22px;
    height: 22px;
    background-color: #b91c1c;
    opacity: 0.5;
    transition: all 0.3s ease;
  }
  .seo-dot.active {
    opacity: 1;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(185, 28, 28, 0.5);
  }
  .seo-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
  }

   .text-orange { color: #b91c1c !important; }
  .bg-orange { background-color: #b91c1c !important; }
  .btn-orange {
    background-color: #b91c1c;
    border: none;
    transition: all 0.3s ease;
  }
  .btn-orange:hover {
    transform: translateY(-3px);
    background-color: #b91c1c;
  }
  .bg-light-yellow { background-color: #ffe7e0 !important; }