/*
Theme Name: P & Q Carpet Cleaning Westville
Theme URI: https://website.com/
Author: P & Q Carpet Cleaning Westville
Author URI: https://website.com/
Description: Professional carpet cleaning services in Westville, NJ
Version: 1.0
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

1. VARIABLES

2. GENERAL TYPOGRAPHY
  2.1 General Styles
  2.2 Background Color
  2.3 Section
    - Section Paddings
    - Section Margins
    - Section Title
    - Content width
  2.4 Buttons
    - Primary Buttons
    - Outline Buttons

3. CONTENT ELEMENTS
  - Dropdown
  - Form
  - Svg Color
- Swiper
- Modal

4. SITE STRUCTURE
  4.1 Header
  4.2 Hero Section
  4.3 About Section
  4.4 Services Section
  4.5 Service Area Section
  4.6 FAQ Section
  4.7 Contact Section
  
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --lion: #AE9555;
  --prussian-blue: #0F2F52;
  --alice-blue: #E2EAF0;
  --indigo-dye: #17416A;
  --black-olive: #4D4C40;
  --primary-color: var(--lion);
  --black-color: var(--black-olive);
  --light-black-color: #4E4C49;
  --dark-color: #9B9B9B;
  --primary-color-200: var(--alice-blue);
  --primary-color-400: #c4e9ed;
  --gray-color: #777F81;
  --bs-body-bg: #F9F4EC;
  --bs-dark-rgb: 80, 80, 80;
  --bs-gray-100: var(--alice-blue);
  --bs-gray-300: #DCDCDC;
  --bs-primary-text-emphasis: var(--lion);
  --bs-light-rgb: rgba(255, 255, 255, 1);
  --bs-primary-rgb: 174, 149, 85;
  --light-color: #fdfdfd;
  --swiper-theme-color: var(--prussian-blue) !important;
  --cadet-blue-color: #9AB4B7;
}

/* Fonts */
:root {
  --heading-font: "Syne", sans-serif;
  --body-font: "Poppins", sans-serif;
}

/*----------------------------------------------*/
/* 2 GENERAL TYPOGRAPHY
/*----------------------------------------------*/

/* 2.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black-color);
  background-color: var(--bs-body-bg);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--prussian-blue);
}

.text-light {
  color: var(--light-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.text-black {
  color: var(--black-color) !important;
}

.bg-light {
  background-color: var(--alice-blue) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.bg-gray {
  background-color: var(--alice-blue) !important;
}

.bg-accent-gradient {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--indigo-dye) 100%);
}

.bg-primary-200 {
  background-color: var(--primary-color-200) !important;
}

.bg-primary-dim {
  background-color: rgba(174, 149, 85, 0.1) !important;
}

/* Section Paddings */
.padding-small {
  padding: 60px 0;
}

.padding-medium {
  padding: 80px 0;
}

.padding-large {
  padding: 100px 0;
}

/* Section Margins */
.margin-small {
  margin: 60px 0;
}

.margin-medium {
  margin: 80px 0;
}

.margin-large {
  margin: 100px 0;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--black-color);
}

h6 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.container-md {
  max-width: 768px;
}

.container-lg {
  max-width: 992px;
}

/* Animations */
@media (min-width: 200px) {
  .animate {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
}

@keyframes slide {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slide {
  animation-name: slide;
}

/* Buttons */
.btn {
  border-radius: 50px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--prussian-blue);
  border-color: var(--prussian-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(174, 149, 85, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-outline-light {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline-light:hover {
  background-color: white;
  border-color: white;
  color: var(--prussian-blue);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

/* Dropdown */
.dropdown-item {
  color: var(--black-color);
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: var(--primary-color);
  color: white;
}

/* Form */
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(174, 149, 85, 0.25);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(174, 149, 85, 0.25);
}

input,
select {
  border-radius: 8px;
}

select:focus {
  border-color: var(--primary-color);
}

/* SVG Colors */
svg.light-color {
  color: var(--light-color);
}

svg.dark-color {
  color: var(--dark-color);
}

svg.primary-color {
  color: var(--primary-color);
}

svg.primary-color {
  color: var(--primary-color);
}

svg.primary-color-500 {
  color: var(--primary-color);
}


/* Navigation */
#primary-header {
  background-color: var(--prussian-blue) !important; /* Match the logo background color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

                                                               a.nav-link {
          color: white !important;
          font-weight: 500;
          font-size: 15px;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          text-transform: none;
          letter-spacing: 0.3px;
          position: relative;
          padding: 8px 16px !important;
          border-radius: 8px;
          margin: 0 4px;
        }
        
        a.nav-link:hover {
          color: white;
          background-color: rgba(255, 255, 255, 0.1);
          transform: translateY(-1px);
        }
        
        a.nav-link::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          width: 0;
          height: 2px;
          background: linear-gradient(90deg, var(--primary-color), var(--lion));
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
          transform: translateX(-50%);
          border-radius: 1px;
        }
        
        a.nav-link:hover::after {
          width: 80%;
}

a.nav-link:focus {
  color: white;
}

a.nav-link.active,
a.nav-link:hover {
  color: white;
}

.navbar-brand {
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.navbar-brand:hover img {
  transform: scale(1.05) rotate(1deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.navbar-brand:hover {
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  padding: 10px 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-color), var(--lion));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(174, 149, 85, 0.3);
}

.navbar-toggler:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(174, 149, 85, 0.4);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(174, 149, 85, 0.25);
}

.navbar-icon {
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile Menu Styling */
.offcanvas {
  background: linear-gradient(135deg, var(--prussian-blue) 0%, var(--indigo-dye) 100%);
  border: none;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.offcanvas-header .btn-close {
  filter: invert(1);
  opacity: 0.8;
}

.offcanvas-header .btn-close:hover {
  opacity: 1;
}

                .offcanvas-body .nav-link {
          padding: 16px 20px;
          border-bottom: 1px solid rgba(255, 255, 255, 0.1);
          font-size: 16px;
          color: white;
          font-weight: 500;
          border-radius: 8px;
          margin: 4px 0;
          transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .offcanvas-body .nav-link:hover {
          background-color: rgba(255, 255, 255, 0.1);
          color: var(--primary-color);
          transform: translateX(8px);
        }

.offcanvas-body .nav-link:last-child {
  border-bottom: none;
}

@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 20px;
  }
  
  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }
  
  .navbar-nav .btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section .overlay {
  background: linear-gradient(135deg, rgba(15, 47, 82, 0.8) 0%, rgba(23, 65, 106, 0.7) 100%);
}

/* Hero Logo Styling */
.hero-logo-container {
  position: relative;
  z-index: 10;
}

.hero-logo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

/* Mobile Hero Improvements */
@media (max-width: 768px) {
  .hero-section .text-center {
    text-align: center !important;
  }
  
  .hero-section .text-lg-start {
    text-align: center !important;
  }
  
  .hero-logo-container {
    margin-bottom: 30px;
  }
  
  .hero-logo-wrapper {
    margin-bottom: 15px;
  }
  
  .hero-logo-text {
    text-align: center;
  }
  
  .hero-section h1 {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .hero-section p {
    text-align: center;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .hero-section .text-center {
    text-align: center !important;
  }
  
  .hero-section .text-lg-start {
    text-align: center !important;
  }
  
  .hero-logo-container {
    margin-bottom: 25px;
  }
  
  .hero-logo-wrapper {
    margin-bottom: 12px;
  }
  
  .hero-logo-text {
    text-align: center;
  }
  
  .hero-section h1 {
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  
  .hero-section p {
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
  animation: logoFloat 3s ease-in-out infinite;
}

.hero-logo:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 2px rgba(255, 255, 255, 0.2);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.hero-logo-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: linear-gradient(45deg, 
    rgba(174, 149, 85, 0.3) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(174, 149, 85, 0.3) 100%);
  border-radius: 25px;
  z-index: -1;
  animation: logoGlow 4s ease-in-out infinite;
  filter: blur(15px);
}

.hero-logo-pulse {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(174, 149, 85, 0.4);
  border-radius: 30px;
  z-index: -2;
  animation: logoPulse 2s ease-in-out infinite;
}

.hero-logo-text h2 {
  font-size: 2.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: textFadeIn 1s ease-out 0.5s both;
}

.hero-logo-text p {
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: textFadeIn 1s ease-out 0.8s both;
}

/* Logo Animations */
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes logoGlow {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

@keyframes logoPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes textFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero Logo */
@media (max-width: 991px) {
  .hero-logo {
    width: 150px;
    height: 150px;
  }
  
  .hero-logo-text h2 {
    font-size: 2rem;
  }
  
  .hero-logo-text p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .hero-logo {
    width: 120px;
    height: 120px;
  }
  
  .hero-logo-text h2 {
    font-size: 1.5rem;
  }
  
  .hero-logo-text p {
    font-size: 0.9rem;
  }
}

/* Services Cards */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Detailed Services Section */
.service-detail-section {
  padding: 40px 0;
  border-bottom: 1px solid rgba(174, 149, 85, 0.1);
}

.service-detail-section:last-child {
  border-bottom: none;
}

.service-detail-section img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.service-detail-section img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(174, 149, 85, 0.3);
}

/* Image Container for consistent height */
.service-detail-section .col-lg-6:first-child {
  display: flex;
  align-items: center;
  min-height: 500px;
}

.service-detail-section .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 500px;
}

.service-detail-section h4 {
  color: var(--prussian-blue);
  margin-bottom: 20px;
  position: relative;
}

.service-detail-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--lion));
  border-radius: 2px;
}

.service-detail-section ul li {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.service-detail-section ul li:hover {
  transform: translateX(5px);
  color: var(--primary-color);
}

/* CTA Cards */
.cta-card {
  margin-top: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta-card::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.6s ease;
}

.cta-card:hover::before {
  left: 100%;
}

.cta-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-card .btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cta-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Emergency CTA Card */
.cta-card.bg-danger {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%) !important;
  border: 2px solid #dc3545;
}

.cta-card.bg-danger:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%) !important;
  border-color: #c82333;
}

/* Responsive Design for Detailed Services */
@media (max-width: 991px) {
  .service-detail-section {
    padding: 30px 0;
  }
  
  .service-detail-section img {
    margin-bottom: 30px;
    height: 350px;
  }
  
  .service-detail-section .col-lg-6:first-child,
  .service-detail-section .col-lg-6:last-child {
    min-height: auto;
  }
  
  .cta-card {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .service-detail-section img {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .service-detail-section {
    padding: 20px 0;
  }
  
  .service-detail-section img {
    height: 250px;
  }
  
  .service-detail-section h4 {
    font-size: 1.5rem;
  }
  
  .cta-card {
    padding: 20px !important;
  }
  
  .cta-card h5 {
    font-size: 1.1rem;
  }
}

/* Service Area */
.service-area-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(174, 149, 85, 0.1);
}

.service-area-list li:last-child {
  border-bottom: none;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: white;
  border: none;
  padding: 20px;
  font-weight: 600;
  color: var(--black-color);
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23AE9555'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 20px;
  background-color: #f8f9fa;
}

/* Contact Cards */
.contact-card {
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--prussian-blue) 0%, var(--indigo-dye) 100%);
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-section {
    min-height: 80vh;
    padding: 40px 0;
  }
  
  .hero-logo {
    width: 150px;
    height: 150px;
  }
  
  .hero-logo-text h2 {
    font-size: 2rem;
  }
  
  .hero-logo-text p {
    font-size: 1rem;
  }
  
  .display-3 {
    font-size: 2.8rem;
  }
  
  .display-5 {
    font-size: 2.2rem;
  }
  
  .padding-medium {
    padding: 60px 0;
  }
  
  .btn-lg {
    padding: 12px 30px;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 30px 0;
  }
  
  .hero-logo {
    width: 120px;
    height: 120px;
  }
  
  .hero-logo-text h2 {
    font-size: 1.8rem;
  }
  
  .hero-logo-text p {
    font-size: 0.9rem;
  }
  
  .display-3 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
  
  .padding-medium {
    padding: 50px 0;
  }
  
  .btn-lg {
    padding: 12px 25px;
    font-size: 15px;
  }
  
  .hero-section .container {
    padding: 0 20px;
  }
  
  .hero-section .row {
    margin: 0;
  }
  
  .hero-section .col-lg-6 {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 60vh;
    padding: 20px 0;
  }
  
  .hero-logo {
    width: 100px;
    height: 100px;
  }
  
  .hero-logo-text h2 {
    font-size: 1.5rem;
  }
  
  .hero-logo-text p {
    font-size: 0.8rem;
  }
  
  .display-3 {
    font-size: 2rem;
  }
  
  .display-5 {
    font-size: 1.5rem;
  }
  
  .padding-medium {
    padding: 40px 0;
  }
  
  .hero-section .container {
    padding: 0 15px;
  }
  
  .hero-section .col-lg-6 {
    padding: 0 10px;
    margin-bottom: 20px;
  }
  
  .hero-section .btn {
    width: 100%;
    margin-bottom: 10px;
  }
  
  .hero-section .d-flex {
    flex-direction: column;
  }
  
  .hero-section .gap-3 {
    gap: 0.5rem !important;
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 50vh;
    padding: 15px 0;
  }
  
  .hero-logo {
    width: 80px;
    height: 80px;
  }
  
  .hero-logo-text h2 {
    font-size: 1.3rem;
  }
  
  .hero-logo-text p {
    font-size: 0.75rem;
  }
  
  .display-3 {
    font-size: 1.8rem;
  }
  
  .display-5 {
    font-size: 1.3rem;
  }
  
  .hero-section .container {
    padding: 0 10px;
  }
  
  .hero-section .col-lg-6 {
    padding: 0 5px;
    margin-bottom: 15px;
  }
}

/* Custom Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.loading.loaded {
  opacity: 1;
  transform: translateY(0);
}