.elementor-2497 .elementor-element.elementor-element-686d428{--display:flex;--min-height:351px;}.elementor-2497 .elementor-element.elementor-element-25e34dd{--display:flex;--min-height:289px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2497 .elementor-element.elementor-element-b5aafeb{--display:flex;--min-height:539px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-2497 .elementor-element.elementor-element-3bc7669 > .elementor-widget-container{margin:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-2a82c8d *//* Root & Font Setup */
body {
  background-color: #000;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
}

/* Fade-in Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in {
  animation: fadeIn 1.5s ease forwards;
}

/* Brand Section Layout */
.brand-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  margin-top: 80px;
}

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

.brand-header .yellow {
  color: #FFD700;
}

.brand-header .white {
  color: #ffffff;
}

/* Content Section */
.brand-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Quote Box */
.brand-quote {
  flex: 1 1 300px;
  border: 2px solid #fff;
  padding: 30px;
  border-radius: 25px;
  position: relative;
  font-size: 1.5rem;
  line-height: 1.5;
}

.brand-quote .yellow {
  color: #FFD700;
  font-weight: 600;
}

/* Info Box */
.brand-info {
  flex: 1 1 300px;
  border: 2px solid #fff;
  padding: 30px;
  border-radius: 25px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
}

.brand-info h3 {
  color: #FFD700;
  font-weight: 700;
  margin-bottom: 10px;
}

.brand-info em {
  font-style: italic;
  font-weight: 500;
}

/* Circle Decorations */
.brand-info::before,
.brand-quote::after {
  content: '';
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
}

.brand-info::before {
  top: -10px;
  right: -10px;
}

.brand-quote::after {
  bottom: -10px;
  left: -10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brand-content {
    flex-direction: column;
  }

  .brand-header h1 {
    font-size: 2.2rem;
  }

  .brand-quote, .brand-info {
    font-size: 1.2rem;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.logo {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  text-transform: lowercase;
}

.logo span {
  color: #FFD700;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  font-weight: 500;
  color: #dcdcdc;
  text-transform: lowercase;
  transition: 0.3s;
}

nav a.active,
nav a:hover {
  color: #FFD700;
  border: 1px solid #FFD700;
  padding: 5px 15px;
  border-radius: 25px;
}/* End custom CSS */