html {
  scroll-behavior: smooth;
}

.btn-grad {
  background-image: linear-gradient(to right, #000428 0%, #004e92 51%, #000428 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  display: inline-block;
  border: none;
  font-weight: 500;
}
.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  transform: scale(1.05);
}

.navbar {
  background: linear-gradient(to right, #000428, #004e92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-nav {
  margin: 0 auto;
}
.navbar-nav .nav-link {
  color: #fff !important;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #00bfff !important;
}

.hero {
  height: 100vh;
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.event-details-box {
  background-color: #ffe06a;
  color: #000;
  font-weight: 650;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(255, 235, 59, 0.4);
  animation: fadeInUp 1s ease-in-out;
}

.hero p {
  font-size: 1.1rem;
  color: #d1e8ff;
}

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

@media (max-width: 768px) {
  .hero-heading { font-size: 2rem; }
}


/* About Section */
.about-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.about-heading {
  font-size: 2.2rem;
  font-weight: 700;
 
}

.heading-underline {
  width: 80px;
  height: 4px;
  background-color: #ffeb3b;
  margin: 10px auto 0 auto;
  border-radius: 3px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #d1e8ff;
  margin-bottom: 20px;
}

.about-img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(255, 235, 59, 0.5);
}


/* About Section Enhancements */
.about-points {
  margin-top: 25px;
}

.point-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffeb3b;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #e3f2fd;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.point-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.3);
}




/* ==============================
   Conference Focus Area Section
============================== */
.focus-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.focus-heading {
  font-size: 2.2rem;
  font-weight: 700;
 
}

.focus-subheading {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffeb3b;
  margin-bottom: 20px;
}

.focus-text {
  font-size: 1.1rem;
  color: #d1e8ff;
  line-height: 1.8;
}

.focus-points {
  margin-top: 20px;
}

.focus-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffeb3b;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 15px;
  color: #e3f2fd;
  font-size: 1rem;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.focus-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

@media (max-width: 768px) {
  .focus-subheading {
    text-align: center;
    font-size: 1.4rem;
  }
  .focus-text {
    text-align: center;
  }
}


/* ==============================
   Key Highlights Section
============================== */
.highlights-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 700;

}

.section-subtext {
  font-size: 1.1rem;
  color: #d1e8ff;
  max-width: 700px;
  margin: 0 auto;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
  background: rgba(255, 255, 255, 0.15);
}

.highlight-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px;
  transition: transform 0.4s ease;
}

.highlight-card:hover .highlight-img {
  transform: scale(1.1);
}

.highlight-title {
  font-weight: 600;
  font-size: 1.2rem;
}

.highlight-text {
  font-size: 1rem;
  color: #e3f2fd;
}


/* ==============================
   Who Should Attend Section
============================== */

.who-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.who-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #ffeb3b;
  border-radius: 12px;
  padding: 18px 20px;
  margin-bottom: 15px;
  color: #e3f2fd;
  font-size: 1rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.who-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

.who-img {
  max-width: 85%;
  transition: transform 1s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  cursor: pointer;
  transform-style: preserve-3d;
}

/* Rotate left to right on hover */
.who-img:hover {
  transform: rotateY(360deg);
  filter: drop-shadow(0 0 20px rgba(255, 235, 59, 0.4));
}

@media (max-width: 768px) {
  .who-img {
    max-width: 100%;
  }
}

/* ==============================
   Why Partner With Us Section
============================== */
.partner-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.partner-img {
  max-width: 90%;
  border-radius: 15px;
  transition: transform 0.8s ease;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.partner-img:hover {
  transform: rotateY(360deg);
  filter: drop-shadow(0 0 30px rgba(255, 235, 59, 0.4));
}

.partner-box {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 5px solid #ffeb3b;
  border-radius: 12px;
  padding: 18px 20px;
  text-align: left;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.partner-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

.small-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-box h5 {
  font-weight: 700;
  margin-bottom: 6px;
}

.partner-box p {
  color: #e3f2fd;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .partner-img {
    margin-bottom: 30px;
    max-width: 100%;
  }
}


/* =================================
   Brand Integration Opportunities
================================= */
.brand-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
}

.brand-img {
  max-width: 90%;
  border-radius: 15px;
  transition: transform 0.8s ease;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

.brand-img:hover {
  transform: rotateY(25deg);
  filter: drop-shadow(0 0 30px rgba(255, 235, 59, 0.4));
}

.brand-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.brand-box {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #ffeb3b;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.brand-box:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateX(8px);
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

.brand-box p {
  margin: 0;
  font-size: 1rem;
  color: #e3f2fd;
  line-height: 1.5;
}

.highlight {
  color: #ffeb3b;
  font-weight: 600;
}

@media (max-width: 768px) {
  .brand-img {
    margin-top: 30px;
    max-width: 100%;
  }
}


/* Industrial Verticals Section */
.verticals-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  text-align: center;
  padding: 80px 0;
}

.vertical-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.8); /* bright white border */
  border-radius: 12px;
  padding: 25px 20px;
  margin-bottom: 25px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.vertical-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffeb3b; /* border glows yellow on hover */
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

.vertical-box h5 {
  margin-bottom: 10px;
}

.vertical-box p {
  margin: 0;
  color: #e0eaff;
}

/* Image Hover Rotation (same as Who Should Attend) */
.vertical-img {
  max-width: 85%;
  transition: transform 1s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  cursor: pointer;
  transform-style: preserve-3d;
}

.vertical-img:hover {
  transform: rotateY(180deg);
  filter: drop-shadow(0 0 20px rgba(255, 235, 59, 0.4));
}


/* Contact Section */
/* Contact Section */
.contact-section {
  background: linear-gradient(to right, #000428, #004e92);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.contact-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 30px 25px;
  margin: 15px;
  min-height: 230px;
  width: 100%;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease-in-out;
}

.contact-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffeb3b;
  box-shadow: 0 0 25px rgba(255, 235, 59, 0.4);
}

.contact-box h5 {
  margin-bottom: 10px;
}

.contact-box p {
  margin: 5px 0;
  color: #dce7ff;
  font-size: 0.95rem;
}

.contact-box a {
  color: #ffeb3b;
  text-decoration: none;
  font-weight: 500;
}

.contact-box a:hover {
  text-decoration: underline;
}

/* Make boxes wider on larger screens */
@media (min-width: 992px) {
  .contact-section .col-md-3 {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
