.elementor-6688 .elementor-element.elementor-element-780becb{margin-top:40px;margin-bottom:0px;}/* Start custom CSS for html, class: .elementor-element-ff1daab */.aioc-hero-diagonal {
  position: relative;
  background: #0a0d14;
  padding: 100px 8%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

/* GOLDEN DIAGONAL SUNLIGHT */
.light-beam {
  position: absolute;
  top: -40%;
  left: -40%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    rgba(255,215,0,0.55) 0%,
    rgba(255,193,7,0.35) 20%,
    rgba(255,215,0,0.05) 40%,
    transparent 65%
  );
  animation: moveLight 60s linear infinite;
  pointer-events: none;
  z-index: 0;
  filter: blur(0px);
}

@keyframes moveLight {
  0% { transform: translateX(-10%) translateY(-10%); }
  100% { transform: translateX(10%) translateY(10%); }
}

.aioc-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.aioc-left {
  flex: 1;
  max-width: 600px;
  animation: fadeLeft 1.2s ease forwards;
}

/* GOLDEN TAG */
.event-tag {
  display: inline-block;
  background: transparent;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  color: white;
  border: 1px solid rgba(255,215,0,0.3);
  letter-spacing: 1px;
}

/* GOLDEN HEADING */
.aioc-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
  color:white;
}

.aioc-left h1 span {
  background: linear-gradient(
    90deg,
    #fff8dc,
    #ffd700,
    #ffcc00,
    #b8860b
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aioc-left p {
  color: #ccc;
  margin-bottom: 30px;
}

/* DATE BOX GOLD TOUCH */
.date-box {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  padding: 22px;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid rgba(255,215,0,0.2);
}

.date-box strong {
  display: block;
  font-size: 20px;
  color: #ffd700;
}

.date-box span {
  font-size: 14px;
  color: #bbb;
}

/* BUTTONS GOLD STYLE */
.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(45deg,#ffd700,#ffb300,#b8860b);
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.6);
}

.btn-outline {
  border: 2px solid #ffd700;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  color: #ffd700;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #ffd700;
  color: #000;
}

/* IMAGE */
.aioc-right {
  flex: 1;
  text-align: center;
  animation: fadeRight 1.5s ease forwards;
}

.aioc-right img {
  max-width: 500px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.7);
}

/* Animations */
@keyframes fadeLeft {
  from { opacity:0; transform: translateX(-40px); }
  to { opacity:1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity:0; transform: translateX(40px); }
  to { opacity:1; transform: translateX(0); }
}
/* GOLDEN HEADING WITH DIAGONAL ANIMATION */
.aioc-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
  background: linear-gradient(
    135deg,
    #fff8dc 0%,
    #ffd700 25%,
    #ffcc00 50%,
    #b8860b 75%,
    #fff8dc 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: diagonalGoldMove 6s linear infinite;
}

/* Smooth Diagonal Shine Movement */
@keyframes diagonalGoldMove {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Optional: subtle glow around heading */
.aioc-left h1::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(circle at top left, rgba(255,215,0,0.25), transparent 60%);
  z-index: -1;
  filter: blur(20px);
}

/* Responsive */
@media (max-width: 992px) {
  .aioc-container {
    flex-direction: column;
    text-align: center;
  }
  .aioc-left h1 {
    font-size: 28px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-184916d */<style>

.aioc-about {
  background: #0a0d14;
  padding: 100px 8%;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.aioc-about-container {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.aioc-about-left {
  flex: 1;
}

.aioc-about-left h2 {
  font-size: 36px;
  margin-bottom: 25px;
  background: linear-gradient(90deg,#fff8dc,#ffd700,#b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.aioc-about-left p {
  color: #ccc!important;
  margin-bottom: 20px;
  line-height: 1.7;
}

.aioc-about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.3s;
}

.info-card h3 {
  color: #ffd700!important;
  margin-bottom: 10px;
}

.info-card:hover {
  transform: translateY(-6px);
  border-color: #ffd700;
}
p{
    color:white!important;
}
/* Responsive */
@media (max-width: 992px) {
  .aioc-about-container {
    flex-direction: column;
    text-align: center;
  }
}

</style>/* End custom CSS */