@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600;700&display=swap');

body { margin:0px; padding:0px; font-family:'Roboto', sans-serif; background: #F3FAFE }
img { border:none; outline:none; max-width:100%; vertical-align:top; background-size:100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary { display: block; }
.clrfix{ clear:both}








/* Container styling */
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:10px 0 15px 0;
   transition: all 0.3s ease; max-width: 1200px;  margin: 0 auto; width: 100%;
}

/* Logo styling */
.logo img {
    max-width:100%;
    height: auto;
    transition: transform 0.3s ease;
}



/* Event details (date next to logo) */
.event-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

		padding:10px 0 0 0
}

.event-details span {
color: #236CAB;
font-size: 24px;
padding:0 0 2px;
font-weight: 900;
text-transform: uppercase;
}



.event-date {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: #0E3D58;
    font-weight: bold;
}


 .date-container strong{
  font-size: 24px; 
   
}


    .date-container {
      display: flex;
      gap: 10px;
      font-family: Arial, sans-serif; align-items: center;
    }

    .date-box {
      width: 70px;
      text-align: center;
      border-radius: 5px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }

    .date-top {
      background-color: #28873E; /* green */
      color: white;
      padding: 4px 0 0;
      font-size: 22px;
      font-weight: bold;
    }

    .date-bottom {
      background-color: #0459A5; /* orange */
      color: white;
      padding: 5px 0;
      font-size: 10px;
      font-weight: bold;
    }

.event-location {
    font-size: 14px;
    color: #0E3D58; padding: 5px 0 0 0; line-height: 28px
}

/* Button styling */
.action-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 15px 25px;
    text-decoration: none;
    color: #fff;
    background-color: #186DA6;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease; font-size: 16px
}

.book-stall {
background: linear-gradient(90deg, #0459A5 0%, #28873E 100%);
}

.visit {
background: linear-gradient(90deg, #0459A5 0%, #28873E 100%);
}

.btn:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .action-buttons {
        flex-direction: column;
        width: 90%; margin: 0 auto!important; gap:0px; 
    }

    .btn {
        width: 85%;
        margin-bottom: 10px;
    }
	
	.event-details {

    width:90%; text-align: center; margin-bottom: 10px
}
	
.event-location {
    font-size: 14px;
    text-align: left;
}
	
	
	
	
}




    .card-hover {
      transition: all 0.3s ease;
      border: 2px solid transparent;
    }
    .card-hover:hover {
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      transform: translateY(-4px);
      border-color: #6366f1; /* Indigo border */
    }





.exhibit-section {
  text-align: left;
  padding: 0px 0px 50px 0;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.exhibit-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  padding: 0px 0 0 0;
}

.exhibit-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
}

.exhibit-item {
  background: #eaecef;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding:10px 15px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #000000;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.exhibit-item:before {
  content: attr(data-icon);
  font-size: 1.5rem;
  margin-right: 10px;
  color: #007bff;
}

.exhibit-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .exhibit-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .exhibit-items {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .exhibit-item {
 
    padding: 10px; text-align: left
  }
	

	
}

@media (max-width: 480px) {


  .exhibit-items {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .exhibit-item {
   
    padding: 8px;
  }
}




.welcome-section {

width: 100%;
  max-width: 1200px; margin: 0 auto; padding:50px 0 50px 0

}
 h1 {
  font-size: 1.6rem;
  color: #2c3e50;
  text-align: left;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease; line-height:2.5rem
}
.welcome-content {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; 
}
.welcome-text {
  flex:1;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.welcome-text p {
  margin-bottom: 15px;
}
.welcome-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease; 
}
.welcome-image img {
  max-width:88%;
  height: auto;
  border-radius: 8px; margin: 0 auto
 
}
.show {
  opacity: 1;
  transform: translateY(0);
}
.image-show {
  opacity: 1;
  transform: scale(1);
}
@media (max-width: 768px) {
  .welcome-content {
    flex-direction: column; padding: 20px
  }
  .welcome-section h1 {
    font-size: 1.8rem;
  }
}





.countdown-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(80px, auto));
    gap: 20px;
    justify-content: center;
    text-align: center;
}

.countdown-item {
    padding: 15px 30px;
    border-radius: 10px;
 
    background: #070839;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.countdown-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.countdown-item span {
    display: block;
    font-size: 2.5em;
    line-height:1.1;
    margin-bottom: 0px;
    color: #00FFAE; /* neon airport green */
    font-weight: bold;
    font-family: 'Courier New', monospace;
    transition: transform 0.6s ease-in-out;
    position: relative;
}

/* Divider line across number (airport style) */
.countdown-item span::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;

}

.countdown-item label {
    font-size: 1em;
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Flip animation when number updates */
.flip {
    animation: flipAnim 0.6s ease-in-out;
}

@keyframes flipAnim {
    0%   { transform: rotateX(0deg); }
    50%  { transform: rotateX(-90deg); }
    100% { transform: rotateX(0deg); }
}

/* Responsive */
@media screen and (max-width: 768px) {
    .countdown-container {
        grid-template-columns: repeat(2, minmax(100px, auto));
    }
}

@media screen and (max-width: 480px) {
    .countdown-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .countdown-item {
        padding: 15px 20px;
    }
    .countdown-item span {
        font-size: 2em;
    }
}

.scroll-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #0459A5;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
}

.scroll-top:hover {
  background: #28873E;
  transform: scale(1.1);
}

.scroll-top svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg);
}

.scroll-bg,
.scroll-bar {
  fill: none;
  stroke-width: 4;
}

.scroll-bg {
  stroke: rgba(255, 255, 255, 0.1);
}

.scroll-bar {
  stroke: #fff;
  stroke-dasharray: 263.36;
  stroke-dashoffset: 263.36;
  transition: stroke-dashoffset 0.25s ease-out;
}

.arrow-icon {
  font-size: 28px;
  color: #fff;
  z-index: 2;
  pointer-events: none;
  font-weight: bolder;
}




.industry-section {
  padding: 50px 20px;
  background: #f8f9fa;
  font-family: Arial, sans-serif;
  text-align: center;
}

.industry-section h2 {
  font-size: 2.5rem;
  margin:0 0 40px 0;
  color: #1a1a1a; 
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  justify-items: center;  max-width: 1300px; margin: 0 auto
}

.industry-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1rem;
  position: relative;
  align-items: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; width: 90%; font-size: 22px; 
}



.industry-item .icon {
  font-size: 24px;
  margin-right: 8px;
  vertical-align: middle;
}

.industry-item .desc {
  display: block;
  margin-top: 8px;
  color: #555;
  font-size: 16px; line-height: 1.8
}



.industry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.industry-item .icon {
  font-size: 1.5rem;
}







   .container {
      max-width: 1200px;
      margin: auto;
      padding: 3rem 1rem;
      position: relative;
    }

    .decor {
      position: absolute;
      top: 20px;
      right: 20px;
      background: radial-gradient(circle at center, #f5a623 0%, #f39c12 100%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }

    .stat-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .stat-icon {
      font-size: 2.5rem;
      color: var(--orange);
      flex-shrink: 0;
    }

    .stat-content {
      display: flex;
      flex-direction: column;
    }

    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--blue);
    }

    .stat-text {
      font-size: 1rem;
      color: #333;
      line-height: 1.4;
      margin-top: 0.2rem;
    }

    @media (max-width: 600px) {
      .stat-item {
        flex-direction: row;
        align-items: center;
      }

      .stat-number {
        font-size: 1.6rem;
      }

      .stat-icon {
        font-size: 2rem;
      }

      .stat-text {
        font-size: 0.95rem;
      }
    }


    .banner {
      position: relative;
      width: 100%;
  
      overflow: hidden;
      display: flex;
      flex-direction: column; padding:0px; margin: 0px
    }

    .logo-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 5%;
    }

    .logo-bar img {
      height: 100px;
      object-fit: contain;
    }

    .main-content {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      box-sizing: border-box;
    }

    .banner-content {
      max-width: 60%;
      color: #fff;
      transform: translateX(-100%);
      opacity: 0;
      transition: all 1s ease;
    }

    .banner-content.show {
      transform: translateX(0);
      opacity: 1;
    }

    .banner .date {
      font-size: 2.8rem;
      color: #ffeb3b;
      margin-bottom: 10px; font-weight: 900
    }

    .banner h5 {
      font-size: 2.2rem;
      color: #fff;
      margin:0 0 20px;
    }

    .banner h2 {
      font-size: 1.5rem;
      margin-bottom: 15px;
    }

    .tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      background-color: #004a99;
      color: #fff;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 20px;
      transition: background-color 0.3s ease; font-weight: 900
    }

    .tag:hover {
      background-color: #007bff;
    }

    .banner-image {
      max-width: 35%;
      opacity: 0;
      transform: translateY(50px);
      transition: all 1.5s ease;
    }

    .banner-image.show {
      opacity: 1;
      transform: translateY(0);
    }

    .banner-image img {
      width: 84%;
      height: auto; float: right
    }

    @media (max-width: 768px) {
      .main-content {
        flex-direction: column;
        padding: 30px 20px;
      }

      .banner-content {
        max-width: 100%;
        text-align: center;
      }

      .banner h1 {
        font-size: 2rem;
      }

      .banner-image {
        max-width: 80%;
        margin-top: 20px;
      }

      .logo-bar {
        flex-direction: column;
        gap: 10px;
      }

      .logo-bar img {
        height: 50px;
      }
    }



.benefits-section {
 background-image: linear-gradient(180deg, #86BB46 0%, #549900 100%);
      color: #fff;
      text-align: center;
      padding: 60px 0px 60px;
      position: relative;
      overflow: hidden; max-width: 1300px; margin: 0 auto; border-radius: 8px
    }


    .benefits-section h2 {
      font-size: 36px;
      font-weight: 900;
      margin-bottom: 40px;
      position: relative;
      z-index: 2;
    }

    .stats-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 2;
    }

    .stat-box {
      flex: 1 1 180px;
      min-width: 180px;
    }

    .stat-box h3 {
      font-size: 40px;
      margin: 0;
    }

    .stat-box p {
      font-weight: 600;
      margin: 5px 0 0;
      font-size: 15px;
    }

    .stat-box i {
      font-size: 24px;
      display: block;
      margin-bottom: 10px;
      color: #fff;
    }

    .info-section-wrapper {
      position: relative;
      margin-top: -150px; /* pull over green section */
      z-index: 5;
    }

    .info-section {
      background: transparent;
      padding: 0 20px 60px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .info-box {
      background: #fff;
      padding: 30px;
      max-width: 360px;
      flex: 1 1 300px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
    }

    .info-box:hover {
      transform: translateY(-6px);
    }

    .info-box h4 {
      color: #003366;
      margin-bottom: 15px;
      font-size: 20px;
    }

    .info-box p {
      color: #555;
      font-size: 15px;
      line-height: 1.6;
    }

    .read-more-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: #f2f7ff;
      border: 1px solid #d0dffa;
      color: #003366;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 700;
      transition: background 0.3s;
    }

    .read-more-btn:hover {
      background: #d0dffa;
    }

    @media (max-width: 768px) {
      .stat-box h3 {
        font-size: 28px;
      }

      .info-section {
        flex-direction: column;
        align-items: center;
      }
    }

 .contact-bar {
      width: 100%;
      background-color: #319025; /* Change as needed */
      color: white;
      padding: 25px 0px;
      font-size: 28px;
      text-align: center;
      font-family: Arial, sans-serif;
    }
    .contact-bar a {
      color: white;
      text-decoration: none;
    }
    .contact-bar a:hover {
      text-decoration: underline;
    }



.footer-cta {
  text-align: center;
  padding: 30px 15px;
background: linear-gradient(180deg, #ececec 0%, #eeeeee 53.33%, #efefef 100%);
}

.cta-button {
  display: inline-block;
  margin: 10px;
  padding: 15px 40px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  color: #fff;
  transition: background-color 0.3s ease; font-size: 16px
}

/* Different button colors */
.cta-exhibit {
    background: linear-gradient(90deg, #0459A5 0%, #28873E 100%);
}

.cta-exhibit:hover {
    background: linear-gradient(90deg, #28873E  0%, #0459A5 100%);
}

.cta-visit {
    background: linear-gradient(90deg, #0459A5 0%, #28873E 100%);
  color: #fff; /* Contrast for yellow background */
}

.cta-visit:hover {
    background: linear-gradient(90deg, #28873E  0%, #0459A5 100%);
}


.section {
      text-align: center;
      padding: 40px 0px; max-width: 1300px; margin: 0 auto
    }

    .section .subtitle {
      color: #f8a100;
      font-weight: bold;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .section h2 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 40px;
    }

    .expo-layout {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 30px;
      flex-wrap: wrap;
    }

    .expo-column {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .expo-card {
      background: #f5f5f5;
      border-radius: 10px;
      padding: 20px;
      text-align: left;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .expo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .expo-icon {
      width: 40px;
      height: 40px;
      background-color: #84c225;
      color: white;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    .expo-title {
      font-size: 1.2rem;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .expo-description {
      font-size: 0.95rem;
      line-height: 1.5;
    }

    .expo-image {
      text-align: center;
    }

    .expo-image img {
      max-width: 100%;
      width: 500px;
      height: auto;
      border-radius: 10px; margin: 30px 0 0 0
    }

    @media screen and (max-width: 768px) {
      .expo-layout {
        flex-direction: column;
        align-items: center;
      }

      .expo-image img {
        width: 100%;
      }
    }






   .row {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 40px;
    }

    .column {
      min-width: 120px;
      text-align: center;
      margin: 10px;
    }

    .heading {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 18px;
    }

    .logos {
      background: #fff;
      padding: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: inline-block;
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
		
    }
 .logos:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }




    .logos img {
      max-width: 180px;
      height: auto;
    }

    .logo-group {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .full-width-heading {
      width: 100%;
      text-align: center;
      font-weight: bold;
      font-size: 18px;
      margin-bottom: 20px;
    }

    /* Divider layout for Inspired & In Association */
    .inspired-association-wrapper {
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-wrap: wrap;
      gap: 0px;
      margin: 60px 0px; 
    }

    .inspired-section,
    .association-section {
      flex: 1 1 300px;
      max-width: 900px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .divider {
      width: 2px;
      background-color: #ccc;
      height: auto;
      min-height: 100px;
    }

    @media (max-width: 768px) {
		
		.heading {font-size: 12px}
		   .inspired-section,
    .association-section {
      flex: 1 1 1px; padding: 20px 0 0 0
 
    }
		
		
		
      .inspired-association-wrapper {
        flex-direction: column;
        align-items: center;
      }

      .divider {
        display: none;
      }

      .logos img {
        max-width: 100px;
      }

      .column {
        width: 30%;
      }
    }




      /* Slider container: responsive height, never larger than 550px */
  .slider{
    position:relative;
    width:100%;

    overflow:hidden;
background: linear-gradient(90deg, #0459A5 0%, #28873E 100%);
    margin: 0 auto;
    text-align: center;
  }

 .slider img{
 
    margin: 0 auto;
    text-align: center;
  }

  /* Each slide covers the full container */
  .slide{
    position:absolute;
    inset:0;
    opacity:0;
    transform:scale(1.02);
    transition: opacity 900ms ease-in-out, transform 900ms ease-in-out;
    pointer-events:none;
  }
  .slide.active{
    opacity:1;
    transform:scale(1);
    z-index:1;
    pointer-events:auto;
  }

  .slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    -o-object-fit:cover;
  }

  /* Left-middle overlay content */
  .overlay{
    position:absolute;
left:5%;
    top:50%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:2;
    padding:28px 30px;
    background:rgba(0,0,0,0.0); /* subtle block for readability */
    border-radius:8px;
  }

  .overlay h6{
    font-size: clamp(20px, 5vw, 66px);
    line-height:.7;
    margin-bottom:10px;
    font-weight:700;
    margin: 0px;padding:20px 0 10px;
    text-transform: uppercase;
    font-weight: 900;
  }
  .overlay p{
    font-size: clamp(13px, 4vw, 30px);
    line-height:.6;
    margin-bottom:6px;
    font-weight: 700;
  }

  /* Nav buttons */
  .nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;height:44px;border-radius:999px;
    border:0;background:rgba(252, 175, 10, 0.62); color:#fff;
    display:flex;align-items:center;justify-content:center;cursor:pointer;
    transition:background 160ms;
    z-index:3;
  }
  .nav:hover{background:rgba(255,255,255,0.45)}
  .nav.prev{left:12px}
  .nav.next{right:12px}

  /* Dots */
  .dots1{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:12px;
    display:flex;
    gap:8px;
    z-index:3;
  
  }
  .dot{
    width:var(--dot-size);height:var(--dot-size);border-radius:50%;
    border:2px solid rgba(255,255,255,0.55);
    background:rgba(255,255,255,0.25);
    cursor:pointer;transition:all 160ms;
  }
  .dot.active{
    background:#fff;border-color:#fff;transform:scale(1.05);
  }

  /* Keyboard focus visibility */
  .nav:focus,.dot:focus{outline:3px solid rgba(255,255,255,0.25);outline-offset:2px}

  /* Mobile tweaks */
  @media (max-width:640px){
    .overlay{left:4%;right:4%;max-width:calc(100% - 40px);padding:14px}
    .overlay p{font-size:14px}
    .nav{width:38px;height:38px}
  }


       /* ===== Wrapper ===== */
    .focus-wrapper {
      max-width: 1280px;
      margin: 0 auto;
      padding: 40px 20px 60px;
    }

    /* ===== Header ===== */
    .focus-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .focus-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 20px;
      color: rgba(17, 24, 39, 0.7);
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      padding: 4px 12px;
      border-radius: 9999px;
      font-weight: 900;
    }
    .focus-badge span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #86bb46;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: 0.4; transform: scale(0.9); }
    }
    .focus-title {
      font-size: 2rem;
      font-weight: bold;
      margin-top: 20px;
      background: linear-gradient(to bottom right, #86bb46, #65a30d);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    @media (min-width: 640px) { .focus-title { font-size: 2.5rem; } }
    @media (min-width: 1024px) { .focus-title { font-size: 3rem; } }
    .focus-subtext {
      margin-top: 16px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      color: rgba(17, 24, 39, 0.8);
    }

    /* ===== Grid ===== */
    .focus-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }
    @media (min-width: 640px) {
      .focus-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (min-width: 1024px) {
      .focus-grid { grid-template-columns: repeat(3, 1fr); }
    }

    /* ===== Sector Box ===== */
    .focus-sector {
      background: #f9fafb;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      padding: 24px;
      box-shadow: 0 10px 30px -12px rgba(0,0,0,.15);
      display: flex;
      gap: 16px;
      align-items: flex-start;
      transition: border-color 0.3s, color 0.3s;
      animation: fadeUp .6s ease-out both;
    }
    .focus-sector:hover { border-color: #86bb46; }
    .focus-icon {
      font-size: 28px;
      flex-shrink: 0;
    }
    .focus-name {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 8px;
      transition: color 0.3s;
    }
    .focus-sector:hover .focus-name { color: #86bb46; }
    .focus-desc {
      color: rgba(17, 24, 39, 0.8);
      font-size: 15px;
      line-height: 1.8;
    }

    /* ===== Animation ===== */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ===== Footer ===== */
    .focus-footer {
      margin-top: 48px;
      text-align: center;
      font-size: 12px;
      color: rgba(17, 24, 39, 0.6);
    }




       @keyframes rotate-border {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    .animated-border {
      position: relative;
      padding: 2px; /* border thickness */
      border-radius: 1rem;
      overflow: hidden;
    }
    .animated-border::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 2px;
      background: conic-gradient(white 10%, transparent 30%, white 60%, transparent 90%);
      animation: rotate-border 6s linear infinite;
    }
    .animated-border > div {
      position: relative;
      border-radius: inherit;
      background: #f5f5f5; /* light grey background inside */
      z-index: 1;
    }



       .focus-extra-section {
      background: linear-gradient(180deg, #86BB46 0%, #549900 100%);
      padding: 30px 20px;
      color: #fff;
      text-align: center;
    }

    .focus-extra-title {
      font-size: 28px;
      font-weight: 600;
      margin-bottom: 40px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .focus-extra-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 25px;
      max-width: 1300px;
      margin: 0 auto;
    }

    .animated-border {
      position: relative;
      padding: 3px; /* border thickness */
      border-radius: 16px;
      overflow: hidden;
    }

    .animated-border::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 3px;
      background: conic-gradient(white 10%, transparent 30%, white 60%, transparent 90%);
      animation: rotate-border 6s linear infinite;
    }

    .animated-border > .box-content {
      position: relative;
      border-radius: inherit;
      background: #f5f5f5; /* light grey */
      padding: 40px 20px;
      text-align: center;
      z-index: 1;
    }

    .box-icon {
      font-size: 40px;
      margin-bottom: 15px;
      color: #2e7d32; /* green icon */
    }

    .box-text {
      font-size: 16px;
      font-weight: 500;
      color: #222;
    }

    @keyframes rotate-border {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }







     /* Smooth gradient border ring on hover */
    .hover-ring {
      position: relative;
      border-radius: 1.25rem;
      background: radial-gradient(120% 120% at 0% 0%, rgba(59,130,246,.10), transparent 60%),
                  radial-gradient(120% 120% at 100% 0%, rgba(16,185,129,.10), transparent 60%);
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .hover-ring::before {
      content: "";
      position: absolute; inset: -1px;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(135deg, rgba(59,130,246,.55), rgba(16,185,129,.55));
      -webkit-mask: 
        linear-gradient(#000 0 0) content-box, 
        linear-gradient(#000 0 0);
      -webkit-mask-composite: xor; mask-composite: exclude;
      opacity: 0; transition: opacity .25s ease;
    }
    .hover-ring:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,.08); }
    .hover-ring:hover::before { opacity: 1; }



.shadow-sm {border: solid 1px #F9B31B;}




.max-w-6xl {max-width: 78rem !important;}

.max-w-\[1300px\] {
    max-width: 1200px !important;
}
    

    .lg\:text-3xl { font-size: 1.575rem !important;}