html, body {
    overflow-x: hidden;
}
    /* Typography */
    h1, h2, h3, h4, h5, h6 { font-family: "Merriweather", serif;color:black; }
    body, p, span, li, th, td {font-family: "Crimson Text", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
        color:black;
    }
  
    /* Background with gradient + overlay pattern */
  .conference-section {
    position: relative;
    background: linear-gradient(#eeeeee, #eeeeee, #eeeeee);
    overflow: hidden;
    color: white;
  }

  /* Decorative gradient overlay */
  .conference-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('https://www.transparenttextures.com/patterns/cubes.png'); /* subtle pattern */
    opacity: 0.15;
  }

  /* Optional floating circles */
  .conference-section::after {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2), transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite alternate;
  }

  @keyframes float {
    from { transform: translateY(0px); }
    to { transform: translateY(30px); }
  }

  /* Heading styles */
  .conference-subtitle {
    font-family: "Crimson Text", serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: black;
  }

  .conference-title {
    font-family: "Georgia", sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.1;
    /*color: #3b4495;*/
    color:#ffffff;
    text-transform: uppercase;
  }

  .conference-tagline {
    font-family: "Crimson Text", serif;
    font-size: 20px;
    letter-spacing: 1px;
   /* color: black;*/
   color:#ffffff;
    margin-top: 10px;
  }
  
   /* Rotating circle container */
  .rotating-badge {
    position: fixed;
    top: 30%;
    right: 20px;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(#4a90e2, #50e3c2, #f5a623, #4a90e2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    animation: rotate360 10s linear infinite;
  }

  @keyframes rotate360 {
    from { transform: translateY(-50%) rotate(0deg); }
    to { transform: translateY(-50%) rotate(360deg); }
  }
  /* MOBILE VERSION FOR ROTATING BADGE */
@media (max-width: 767px) {
  .rotating-badge {
    width: 100px;
    height: 100px;
    top: auto;
    bottom: 20px;
    right: 10px;
    font-size: 12px;
    padding: 5px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
  }
  @keyframes rotate360 {
    from { transform: translateY(0) rotate(0deg); }
    to { transform: translateY(0) rotate(360deg); }
  }
}


/* Ribbon Styling */
.ribbon {
  width: 220px;
  height: 220px;
  overflow: hidden;
  position: absolute;
  top: -10px;
  right: -10px;
}

.ribbon span {
  position: absolute;
  display: block;
  width: 345px;
  padding: 10px 0;
  background: linear-gradient(45deg, #42A5F5, #2e41b1);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 16px;
  transform: rotate(45deg);
  top: 72px;
  right: -70px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite;
}

.btn-sponsor {
  display: inline-block;
  background: linear-gradient(45deg, #42A5F5, #2e41b1);
  color: #fff;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.btn-sponsor:hover {
  background: linear-gradient(45deg, #42A5F5, #2e41b1);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}


/* Animation Effect */
@keyframes pulse {
  0% { transform: rotate(45deg) scale(1); }
  50% { transform: rotate(45deg) scale(1.05); }
  100% { transform: rotate(45deg) scale(1); }
}

/* Pills & tabs responsive */
@media (max-width: 576px) {
    .conference-title { font-size: 32px; }
    .conference-subtitle { font-size: 14px; }
    .pill-wrap .nav-link { padding: 8px 12px; font-size: 0.9rem; }
    .tab { padding: 12px; font-size: 0.9rem; }
}

html {
  scroll-behavior: smooth;
}

/* Section Title underline */
.bg-white-custom {
    background-color: white;
}
.agenda-title {
  font-size: 28px;
  color: #0D3B66;
  font-weight: 500;
}
.underline {
  width: 60px;
  height: 4px;
  background: #f2a23b;
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

.event-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 30px;
}
.circle-date {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    min-width: 150px;
    min-height: 150px;
    background-color: #d78f2a;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
    flex-shrink: 0;
    margin-bottom: 15px;
    padding: 10px;
}
.circle-date {
    border: 2px solid red;
}

.arrow {
    font-size: 60px; /* Reduced for better scaling */
    margin: 0 30px;
    color: #333;
}
.content-box {
    background-color: lightblue;
    border: 1px solid #ddd;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    height:250;
    width: 800px;
    margin-top: 5px;
}
.event-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 18px;
}
/* Content boxes responsive */
@media screen and (max-width: 768px) {
    .event-row {
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .arrow {
        font-size: 50px;
        margin: 10px 0;
    }

    .circle-date {
        width: 120px;
        height: 120px;
        font-size: 12px;
        padding: 8px;
        min-width: 120px;
        min-height: 120px;
        margin-bottom: 15px;
        flex-shrink: 0;
    }

    .content-box {
        width: 90%;
        margin-top: 10px;
        box-sizing: border-box;
    }
}



/* Flip Boxes */
.flip-box {
  background: transparent;
  width: 250px;
  min-width: 250px;
  perspective: 1000px;
  flex-shrink: 0;
}

.flip-box-inner {
  position: relative;
  width: 100%;
  height: 300px;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.flip-box:hover .flip-box-inner {
  transform: rotateY(180deg);
}

/* Front and Back */
.flip-box-front, .flip-box-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 15px;
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 6px solid #0D3B66;
}

.flip-box-front {
  background: #fff;
}

.flip-box-back {
  background: #0D3B66;
  color: #fff;
  transform: rotateY(180deg);
  border-bottom: 6px solid #f2a23b; /* Thick line matching the section's accent color */
}
/* Flip boxes responsive */
@media screen and (max-width: 768px) {
    .flip-container {
        display: flex;
        gap: 15px;
        padding-bottom: 10px;
    }

    .flip-box {
        width: 80%;
        min-width: 220px;
        flex-shrink: 0;
    }

    .flip-box-inner {
        height: 280px;
    }
}


/* Card Icon and Text */
.card-icon {
  font-size: 50px;
  color: #0D3B66;
}
.flip-box-back .card-icon {
  color: #fff;
}
.flip-box-front h5, .flip-box-back h5 {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 600;
}
.flip-box-back p {
  font-size: 14px;
  margin: 15px 0;
  color:#fff;
}

/* Learn More Button */
.btn-learn {
  background-color: #f2a23b;
  border: none;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-learn:hover {
  background-color: #d18d30;
}

/* Horizontal Scroll */
.overflow-x:hidden {
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.feature {
  background: linear-gradient(135deg, #f3f4fa 0%, #e9ecf9 100%);
  position: relative;
}
.feature::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59,63,98,0.1);
  border-radius: 50%;
  top: -80px; 
  right: -80px;
}
.feature::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(59,63,98,0.05);
  border-radius: 50%;
  bottom: -60px; 
  left: -60px;
}

    
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 80px 10%;
  position: relative;
  background: #ffffff; /* <-- change this to match the above section */
}

/* Feature card styling */
.feature-card {
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Different background colors */
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #fecd2d, #fbd451); /* purple */
}

.feature-card:nth-child(2) {
  background: linear-gradient(135deg, #ff8a65, #ff7043); /* orange */
}

.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #4dabf7, #339af0); /* blue */
}

/* Icon + Title */
.feature-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: #fff; /* White icons on colored cards */
  flex-shrink: 0;
  animation: float 3s ease-in-out infinite;
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff; /* White text */
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9); /* softer white */
}


/* Float animation (only for icons now) */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


.agenda-section {
  background: linear-gradient(180deg, #eeeeee 0%, #eeeeee 100%);
  padding: 60px 10%;
  font-family: 'Segoe UI', sans-serif;
}

/* Header Row */
.agenda-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 50px;
}

.agenda-title {
  font-size: 3rem;
  font-weight: 800;
  color: #a13d91;
  line-height: 1.1;
  animation: fadeInUp 0.8s ease forwards;
}

.agenda-date {
  font-weight: bold;
  color: #333;
  font-size: 1rem;
}

.agenda-date span {
  margin-left: 10px;
}

.agenda-desc {
  margin-top: 10px;
  max-width: 400px;
  line-height: 1.5;
  color: #444;
  animation: fadeIn 1.2s ease forwards;
}

/* Cards */

.agenda-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; /* spacing between cards */
}
.agenda-card {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 30px;
  background: #fff;
  transition: background 0.3s ease, transform 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.agenda-card:hover {
  background: #f5f2ff;
  transform: translateY(-5px);
}

.agenda-day {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #555;
}

.agenda-number {
  font-size: 2rem;
  font-weight: bold;
  color: #2d7f3f;
}

.agenda-card h3 {
  margin: 15px 0;
  font-size: 1.2rem;
  color: #111;
}

.agenda-card ul {
  padding-left: 18px;
  color: #333;
  line-height: 1.6;
}

/* Agenda cards responsive */
@media (max-width: 768px) {
    .agenda-cards {
        grid-template-columns: 1fr; /* stack cards vertically */
    }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


    
    /* Section base */
  .skills-hero {
    background: #eeeeee; /* soft grey-lavender */
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  }
  .skills-hero h2 {
    font-family: "Merriweather", serif;
    font-weight: 800;
    color: #a13d91; /* deep purple */
    line-height: 1.15;
  }
  .skills-hero .accent {
    color: #00c8ff; /* cyan accent like the screenshot */
  }

  /* Pills container (rounded group) */
  .pill-wrap {
    display: inline-flex;
    gap: 6px;
    background: #e9edf7;
    padding: 6px;
    border-radius: 999px;
  }
  .pill-wrap .nav-link {
    border-radius: 999px !important;
    padding: 10px 18px;
    font-weight: 700;
    letter-spacing: .3px;
    color: #6b6f7b;
    background: transparent;
  }
  .pill-wrap .nav-link.active {
    background: #f2a23b !important;
    color: #fff !important;
    box-shadow: 0 8px 18px rgba(0, 200, 255, .25);
  }

  /* Bullet list with green ticks */
  .features li {
    list-style: none;
    padding-left: 28px;
    color: #2b2f3a;
  padding: 0;
  margin: 0;
   margin-bottom: 10px;
  font-size: 18px;
  position: relative;
  }
  .features li::before {
    content: "";
    color: #28c76f;
    margin-right: 10px;
    position: absolute;
    left: 0; top: .5rem;
    width: 10px; height: 6px;
    border: 3px solid #27c07d; /* green */
    border-top: 0; border-left: 0;
    transform: rotate(45deg);
    border-radius: 1px;
  }

  /* CTA */
  .cta-primary {
    background: #ffa600;
    color: #fff;
    font-weight: 800;
    border: 0;
    padding: 14px 26px;
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(255, 166, 0, .3);
  }
  .cta-primary:hover { filter: brightness(1.05); color: #fff; }

  /* Right-side stat circles */
  .stats-stage {
    position: relative;
    min-height: 520px; /* space for circles */
  }
  .stat-circle {
    position: absolute;
    border-radius: 50%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 18px;
    background: transparent;
  }
  .stat-circle .value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #2e1a55;
    line-height: 1;
  }
  .stat-circle .value span { font-weight: 700; font-size: 1.8rem; }
  .stat-circle p {
    margin: 6px 0 0;
    color: #4a4f60;
    max-width: 220px;
    font-size: .95rem;
  }

  /* individual sizes/positions & ring colors (match screenshot vibe) */
  .stat-lg { width: 245px; height: 220px; border: 6px solid #bdeeff; }
  .stat-md { width: 180px; height: 180px; border: 5px solid #bdb8f2; }
  .stat-md2{ width: 220px; height: 220px; border: 5px solid #ffe2ad; }
  .stat-sm { width: 160px; height: 160px; border: 4px solid #cbd3ff; }

  /* positions (tweak as needed for your layout) */
  .stat-85  { top: 25px;  left: 35px; }     /* big cyan ring */
  .stat-18  { top: -10px; right: 40px; }    /* small purple ring */
  .stat-68  { top: 270px; left: 10px; }     /* small lilac ring */
  .stat-76  { top: 198px; right: 23px; }   /* gold ring */

  /* Responsive adjustments */
  /* Stats circles responsive */
@media (max-width: 992px) {
    .stats-stage { 
        min-height: auto; 
        padding-top: 20px; 
    }
    .stat-circle { 
        position: static; 
        margin: 18px auto; 
    }
}
  
  .tabs {
    display: flex;
    margin-top: 20px;
    cursor: pointer;
  }
  .tab {
    flex: 1;
    padding: 20px;
    border: 1px solid #ccc;
    text-align: center;
    font-weight: bold;
    color: #2e7d32; /* green number */
    background: #f9f9f9;
    transition: background 0.3s;
  }
  .tab:hover {
    background: #e0e0e0;
  }
  .tab.active {
    background: #d1c4e9;
    border-bottom: none;
  }
  .content {
    border: 1px solid #ccc;
    padding: 20px;
    margin-top: -1px;
  }
  .content > div {
    display: none;
  }
  .content > div.active {
    display: block;
  }
    .contacts-container {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2rem auto;
  max-width: 1200px;
}

.contact-card {
  flex: 1 1 45%; /* Grow/Shrink but max ~45% width */
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  min-width: 300px;
}

.contact-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info {
  flex: 1;
}

.contact-info h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin: 0.3rem 0;
}

/* Responsive: stack cards vertically on smaller screens */
@media (max-width: 768px) {
  .contacts-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .features {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
  }

  .features li::before {
    display: block;
    margin: 0 auto 5px;
  }

}
