/* Classic Color Scheme */
:root {
  --navy: #0a1f5c;
  --gold: #b8860b;
  --ivory: #fffff0;
  --teal: #008080;
  --slate: #708090;
  --metro-blue: #1a5f7a;
  --water-teal: #1dd3b0;
  --spice-gold: #ffd166;
  --platform-white: #f8f3e6;
  --contactus-red: #c0392b;
--contactus-text: #000;
--contactus-border: #dcdcdc;
}

/* Base Styles */
body {
 
  background-color: var(--ivory);
  color: #333;
  line-height: 1.6;
  font-family: "Comfortaa", sans-serif;
}
h1,h2,h3,h4,h5,p,a,li,div,span{
  font-family: "Comfortaa", sans-serif;
}
/* Header Section */
.header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}


.about-conclave h1 {
  font-size: 2.8rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-align: left;
}

.subtitle {
  font-size: 1rem;
  color: black;
  /* max-width: 700px; */
  margin: 0 auto;
  text-align: left;
  line-height: 31px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Point Cards */
.point-card {
  background: white;
  padding: 40px 30px;
  border-radius: 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--gold);
  position: relative;
  transition: all 0.3s ease;
}

.point-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.point-number {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 3rem;
  color: rgba(10, 31, 92, 0.05);
  font-weight: 700;
}

/* h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
} */

/* h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
} */

.point-content {
  color: var(--slate);
  font-size: 1rem;
}

/* Divider */
.divider {
  text-align: center;
  /* margin: 60px 0; */
  position: relative;
}

.divider:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #ddd;
  z-index: 1;
}

.divider-content {
  display: inline-block;
  background: var(--ivory);
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.divider-icon {
  font-size: 1.8rem;
  color: var(--gold);
}

/* Footer CTA */
.footer-cta {
  text-align: center;
  background: var(--navy);
  padding: 60px 40px;
  border-radius: 2px;
}

.footer-cta h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 20px;
}

.footer-cta p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
}

.hashtags {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.hashtag {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.hashtag:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* Kerala Decorative Elements */
.decorative-element {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.boat-element {
  top: 50px;
  right: 50px;
  font-size: 5rem;
}

.metro-element {
  bottom: 50px;
  left: 50px;
  font-size: 5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .footer-cta h2 {
    font-size: 1.6rem;
  }

  .decorative-element {
    display: none;
  }
}
:root {
  --kochi-sunset: #ff6b6b;
  --backwater-teal: #1dd3b0;
  --spice-gold: #ffd166;
  --kathakali-purple: #8338ec;
  --coconut-cream: #f8f3e6;
}
/* === Section Title === */
.kochi-theme-title {
  text-align: center;
  color: var(--coconut-cream);
  margin-bottom: 40px;
}
/* .kochi-theme-title h2 {
      font-size: 2.4rem;
      font-weight: 700;
      color:var(--navy);
      text-shadow: 0 0 8px rgba(255, 209, 102, 0.5);
    } */
.kochi-theme-title span {
  display: inline-block;
  width: 140px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--backwater-teal),
    var(--kochi-sunset)
  );
  border-radius: 3px;
  margin-top: 10px;
}

/* === Theme List Item === */
.kochi-theme-card {
  background: rgb(255 255 240);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 20px;
    color: #343331;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex
;
    align-items: center;
    box-shadow: 0 8px 25px rgb(185 185 185 / 53%);
    border-left: 6px solid #33365447;
    transition: all 0.3s ease;
}

.kochi-theme-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--kochi-sunset);
  box-shadow: 0 12px 35px rgba(255, 209, 102, 0.4);
}

.kochi-theme-icon {
  font-size: 1.4rem;
  color: var(--backwater-teal);
  margin-right: 12px;
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
:root {
  --kochi-sunset: #ff6b6b;
  --backwater-teal: #1dd3b0;
  --spice-gold: #ffd166;
  --kathakali-purple: #8338ec;
  --coconut-cream: #f9f6f0;
  --text-dark: #333;
}

/* === Section Title === */
.kochi-section-title {
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 50px;
}
/* .kochi-section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
        } */
.kochi-section-title span {
  display: inline-block;
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, var(--spice-gold), var(--kochi-sunset));
  border-radius: 3px;
  margin-top: 10px;
}

/* === Highlight Card === */
.kochi-highlight-card {
background: #fffff0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.kochi-highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* === Circular Icon Badge === */
.kochi-highlight-icon {
     width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #fffff0;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 0 32px rgb(255 255 240);
}
.kochi-highlight-icon img{
        border-radius: 50%;
    padding: 5px;
}

.kochi-highlight-title {
  color: var(--text-dark);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.kochi-highlight-text {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
/* === Kerala-Kochi Metro Theme === */
.kochi-banner {
  background: linear-gradient(145deg, #f0fbffb5 0%, #f0ffff66 100%);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* === Metro Train + Kathakali Mask === */
.metro-train {
  position: absolute;
  top: -30px;
  right: 50px;
  width: 180px;
  height: 180px;
  background: url("metro-train-3d.png") no-repeat;
  transform: rotate(-15deg);
  filter: drop-shadow(0 0 15px rgba(26, 95, 122, 0.7));
  transition: all 0.5s ease;
  z-index: 2;
}
#why-kochi {
  margin-bottom: 40px;
}
.kochi-banner p {
  text-align: center;
  font-size: 1rem;
  line-height: 31px;
  color: white;
}
#why-kochi .list-header{
    color: White;
}
.metro-train:hover {
  filter: drop-shadow(0 0 25px #4dffdf);
  transform: rotate(-10deg) translateY(-10px);
}

/* === Water Ripple Effect === */
.water-ripple {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("water-ripple.svg") repeat-x;
  animation: ripple 15s linear infinite;
  opacity: 0.6;
}

@keyframes ripple {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 1000px;
  }
}

/* === Headline Styling === */
.banner-headline {
  font-size: 2.4rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-bottom: 30px;
  width: 60%;
  line-height: 1.2;
}

.banner-headline::after {
  content: "Why Kochi?";
  position: absolute;
  left: 5px;
  top: 5px;
  color: transparent;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  z-index: -1;
}

/* === Spice Route Decorations === */
.spice-icon {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0;
  transition: all 1s ease;
}

.pepper {
  background: url("pepper-icon.svg");
  bottom: 20px;
  left: 30px;
}
.cardamom {
  background: url("cardamom-icon.svg");
  top: 40px;
  right: 100px;
}

.kochi-banner:hover .spice-icon {
  opacity: 0.8;
  transform: translateY(-20px);
}
/* Vertical List Container */
.kochi-vertical-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List Items with Different Categories */
.metro-leadership-item {
  border-left: 5px solid var(--metro-blue);
  background: linear-gradient(to right, rgba(26, 95, 122, 0.1), transparent);
  margin-bottom: 8px;
  padding: 15px 20px;
  position: relative;
}

.government-item {
  border-left: 5px solid var(--water-teal);
  background: linear-gradient(to right, rgba(29, 211, 176, 0.1), transparent);
  margin-bottom: 8px;
  padding: 15px 20px;
  position: relative;
}

.tech-item {
  border-left: 5px solid var(--spice-gold);
  background: linear-gradient(to right, rgba(255, 209, 102, 0.1), transparent);
  margin-bottom: 8px;
  padding: 15px 20px;
  position: relative;
}

/* Metro Station Marker */
.metro-leadership-item::before,
.government-item::before,
.tech-item::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.metro-leadership-item::before {
  background-color: var(--metro-blue);
  border: 3px solid var(--platform-white);
}

.government-item::before {
  background-color: var(--water-teal);
  border: 3px solid var(--platform-white);
}

.tech-item::before {
  background-color: var(--spice-gold);
  border: 3px solid var(--platform-white);
}

/* List Text */
.participant-text {
  margin: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
}

/* Header */
.list-header {
  color: var(--metro-blue);
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.list-header::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--metro-blue),
    var(--water-teal),
    var(--spice-gold)
  );
  margin: 10px auto 0;
}

/* Responsive */
@media (max-width: 600px) {
  .participant-text {
    font-size: 0.9rem;
  }
}
.kochi-highlight-text span{
      font-weight: 600;
    font-size: 18px;
}
/* Stats Grid Container */
        .kochi-stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1200px;
            padding: 40px;
        }

        /* Individual Stat Cards */
        .metro-stat-card {
            background: white;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s;
        }

        .metro-stat-card:hover {
            transform: translateY(-10px);
        }

        /* Kerala-Themed Accents */
        .metro-stat-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }

        /* .stat-days::before { background: linear-gradient(to right, var(--metro-blue), var(--water-teal)); }
        .stat-sessions::before { background: linear-gradient(to right, var(--spice-gold), var(--kathakali-red)); }
        .stat-speakers::before { background: linear-gradient(to right, var(--water-teal), var(--metro-blue)); }
        .stat-delegates::before { background: linear-gradient(to right, var(--kathakali-red), var(--spice-gold)); } */

        /* Stat Number Styling */
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 10px 0;
            position: relative;
            display: inline-block;
        }

        .stat-days .stat-number { color: var(--metro-blue); }
        .stat-sessions .stat-number { color: var(--spice-gold); }
        .stat-speakers .stat-number { color: var(--water-teal); }
        .stat-delegates .stat-number { color: var(--kathakali-red); }

        /* Plus Sign Styling */
        .stat-number::after {
            content: "+";
            position: absolute;
            top: 0.5rem;
            right: -1.2rem;
            font-size: 1.8rem;
            opacity: 0.8;
        }

        /* Stat Label */
        .stat-label {
            color: #555;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            /* margin-top: 10px; */
            font-weight: 600;
        }

        /* Kerala Decorative Elements */
        .metro-stat-card::after {
            content: "";
            position: absolute;
            bottom: -20px;
            right: -20px;
            width: 80px;
            height: 80px;
            opacity: 0.1;
            background-size: contain;
            background-repeat: no-repeat;
        }

        .stat-days::after { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231A5F7A"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V9h14v10z"/></svg>'); }
        .stat-sessions::after { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD166"><path d="M11 17h2v-6h-2v6zm1-15C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zM11 9h2V7h-2v2z"/></svg>'); }
        .stat-speakers::after { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%231DD3B0"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>'); }
        .stat-delegates::after { background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E34234"><path d="M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5c-1.66 0-3 1.34-3 3s1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5C6.34 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z"/></svg>'); }

        /* Responsive Design */
        @media (max-width: 900px) {
            .kochi-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 500px) {
            .kochi-stats-grid {
                grid-template-columns: 1fr;
            }
        }
        /* === Contact Title === */
        .contactus-main-title {
            text-align: center;
            font-size: 5rem;
            font-weight: 700;
            background: linear-gradient(180deg, rgba(255,255,255,0.6), #e8d9b9);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: 40px;
        }

        /* === Section Titles === */
        .contactus-subtitle {
            text-align: center;
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--contactus-text);
            margin: 30px 0 20px;
        }

        /* === Contact Cards === */
        .contactus-card {
            border: 1px solid var(--contactus-border);
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            background: #fff;
        }

        .contactus-name {
            font-size: 1rem;
            font-weight: 600;
            color: var(--contactus-red);
            margin-bottom: 5px;
        }

        .contactus-email {
            font-size: 0.9rem;
            color: var(--contactus-text);
            display: block;
            margin-bottom: 3px;
        }

        .contactus-phone {
            font-size: 0.9rem;
            color: var(--contactus-text);
        }
        #contact-us{
            padding-top: 40px;
            padding-bottom: 40px;
               background: url(images/banner/con-.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
        }
        #contact-us img{
                width: 31%;
        }
        @media (max-width:768px){
            .contactus-main-title {
                font-size: 3.5rem;
            }
        }
        /* === Title === */
    .vo-section-title {
      text-align: center;
      margin-bottom: 40px;
    }
 
    .vo-section-title span {
      display: inline-block;
      width: 120px;
      height: 4px;
      background: linear-gradient(90deg, var(--vo-primary), var(--vo-accent));
      border-radius: 3px;
      margin-top: 10px;
    }

    /* === Card List === */
    .vo-card {
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
      padding: 25px 20px;
      margin-bottom: 20px;
      position: relative;
      transition: all 0.3s ease;
    }

    .vo-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .vo-icon {
      font-size: 1.8rem;
      color: var(--vo-primary);
      background: rgba(4,106,56,0.1);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 20px;
      left: 20px;
    }

    .vo-text {
      margin-left: 70px;
      font-size: 1rem;
      color: var(--vo-text);
      line-height: 1.6;
    }

    @media(max-width:768px){
      .vo-section-title h2 {
        font-size: 2rem;
      }
    }
    .kochi-banner{
        /*background: url(images/banner/kochi-bg.jpg);*/
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
    .kochi-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgb(77 130 38 / 83%); /* black overlay with 50% opacity */
    z-index: 1;
}

.kochi-banner > * {
    position: relative;
    z-index: 2;
}
#header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.apac-logo {
  max-height: 55px;
  transition: transform 0.3s ease;
}

.apac-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background-color: #0073e6;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #0073e6;
}

.nav-links a:hover::after {
  width: 100%;
}

.register-btn {
  padding: 8px 15px;
  background: #4d9904;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.register-btn:hover {
  background: #005bb5;
}

.menu-icon {
  display: none!important;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}
/* Basic Navbar Links */
.nav-links a {
      text-decoration: none;
    color: #333;
    padding: 10px 2px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button Style */
.dropbtn {
  cursor: pointer;
  color: #333;
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
     min-width: 234px;
    margin-left: -36px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  z-index: 1000;
}

.dropdown-content a {
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background-color: #f6ffea;
  color: #00704A; /* Metro Green */
}

/* Hover Effect */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Hide mobile button by default */
.mobile-btn {
  display: none!important;
}
 .d-desk{
    display: block;
  }
  .d-mob{
    display: none;
  }
  #key-participent{
    background: url(images/banner/about-a.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
  #summit-theme{
    background: url(images/banner/bg-2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 680px;
    padding-top: 60px;
    /* background-position: bottom; */
    background-repeat: no-repeat;
    background-attachment: fixed;
  }
  #vision{
       background: url(images/banner/vision-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
           min-height: 690px;
    padding-top: 88px;
    background-position: top;
     background-attachment: fixed;
    background-repeat: no-repeat; 
  }
  /*  #glimpses{*/
  /*     background: url(images/banner/glimpe.png);*/
  /*  background-repeat: no-repeat;*/
  /*  background-position: center;*/
  /*  background-size: cover;*/
  /*         min-height: 690px;*/
  /*  padding-top: 88px;*/
  /*  background-position: top;*/
  /*   background-attachment: fixed;*/
  /*  background-repeat: no-repeat; */
  /*}*/
  #speakers{
        /*background: url(images/banner/metro-kochi.png);*/
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
        min-height: 680px;
    padding-top: 60px;
    background-position: bottom;
    background-repeat: no-repeat;
    background: #f6ffea;
  }
  #summit-highlights{
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #key-participent{
     padding-top: 40px;
    padding-bottom: 40px;
  }
  #about{
    background: url(images/banner/about-bg-1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }
/* Responsive */
@media (max-width: 768px) {
  .menu-icon {
    display: block!important;
    
  }
  .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 355px;
    margin-bottom: 14px;
}
.mobile-btn {
  display: block!important;
}
.kochi-banner {
    padding: 14px;
}
.team-item .info-text h3 a{
    font-size:13px;
}
.team-item .info-text p {
    font-size: 12px;
    line-height: 17px;
    color: black;
}
  .nav-links {
    position: absolute;
    top: 70px;
    right: -100%;
    flex-direction: column;
    background: #fff;
    width: 220px;
    padding: 20px 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display:none;
  }

  .nav-links.active {
    right: 0;
    display:block;
  }

  .nav-links a {
    padding: 10px 0;
    display: block;
    text-transform: uppercase;
    font-size: 14px;
  }

  .desktop-btn {
    display: none; /* Hide top-right register button in mobile */
  }

  .mobile-btn {
    display: inline-block; /* Show register button inside menu */
    margin-top: 10px;
  }
  .d-desk{
    display: none;
  }
  .d-mob{
    display: block;
  }
}
.metro-line {
  background: linear-gradient(90deg, #00796b 25%, #004d40 50%, #00796b 75%);
  background-size: 200% 100%;
  animation: metroMove 3s linear infinite;
}

@keyframes metroMove {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.speakers-1 {
    display: block;
    max-width: 100%;
    background-image: url(../apac-image/green-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 40px;
    padding-bottom: 40px;
}
.team-item {
    margin: 15px 0;
    padding: 5px;
    border-radius: 8px;
    /* height: 380px; */
    /*border: 10px solid #073fce;*/
    position: relative;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.17);
    transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    background:#f6ffea;
}
.team-item .team-img {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
.team-item .info-text {
    padding: 10px 5px;
    text-align: center;
    height:130px;
}
.team-item .info-text h3 a {
    font-size: 16px;
    /* text-transform: uppercase; */
    font-weight: 700;
    margin-bottom: 5px;
    color:black;
}
.team-item .info-text p {
    margin: 0;
    color: #000;
    font-size: 13px;
    line-height: 17px;
    color:black;
}
.team-img {
    background:white;
}
#footer {
    padding: 0 0 25px 0;
    color: black;
    font-size: 17px;
}
#footer .footer-top {
    background:#fffff0;
    padding: 60px 0 30px 0;
    border-bottom: 1px solid #fff;
}
#footer .footer-top .footer-info {
    margin-bottom: 30px;
}
#footer .footer-top .footer-links {
    margin-bottom: 30px;
}
#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}
#footer .footer-top .footer-info img {
    height: 100px;
    margin-bottom: 10px;
}
#footer .copyright {
    text-align: center;
    padding-top: 30px;
}
#footer .footer-top h4 {
    font-size: 20px;
    font-weight: bold;
    color: black;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
    border-bottom: 1px dotted #fff;
}
#footer .footer-top .social-links a {
    display: inline-block;
    background: black;
    color: #fff!important;
    line-height: 1;
    margin-right: 4px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .team-item .info-text h3 a {
        font-size: 12px;
    }
    .team-item .info-text p {
    margin: 0;
    color: #000;
    font-size: 11px;
    line-height: 14px;
    color: black;
}
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;         /* Distance from bottom */
  right: 20px;          /* Distance from right */
  background-color: #25D366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}
.card {
  border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 279px;
    margin-bottom: 14px;
}
#speakers .card {
  border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: auto!important;
    margin-bottom: 14px;
}



.card-text {
  font-size: 14px;
  font-weight: 500;
}

.card-text span {
  color: #007bff;
  font-weight: 600;
}
.glimpses-title {
  font-size: 28px;
  font-weight: bold;
  color: #222;
  position: relative;
  display: inline-block;
}

.glimpses-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #ff9800;
  left: 20%;
  bottom: -5px;
  border-radius: 3px;
}

.glimpse-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glimpse-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.glimpse-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.glimpse-card:hover img {
  transform: scale(1.1);
}


.team-carousel-title {
  text-align: center;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.team-carousel {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  margin: auto;
  perspective: 2000px;
}

.team-track {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.team-card {
  position: absolute;
  width: 250px;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: #1e293b;
  cursor: pointer;
  transition: all 0.8s ease;
}

.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

/* Card positions */
.team-card.center {
  z-index: 5;
  transform: scale(1.15);
}

.team-card.left-1 {
  transform: translateX(-200px) scale(0.9) rotateY(10deg);
  opacity: 0.8;
}

.team-card.left-2 {
  transform: translateX(-400px) scale(0.8) rotateY(15deg);
  opacity: 0.6;
}

.team-card.right-1 {
  transform: translateX(200px) scale(0.9) rotateY(-10deg);
  opacity: 0.8;
}

.team-card.right-2 {
  transform: translateX(400px) scale(0.8) rotateY(-15deg);
  opacity: 0.6;
}

.team-card.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Hover brings card to center */
.team-card:hover {
  z-index: 10;
  transform: scale(1.2) translateZ(50px) !important;
}

/* Arrows */
.team-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: linear-gradient(135deg, #60a5fa, #e879f9);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(96,165,250,0.4);
  transition: 0.3s ease;
  z-index: 20;
}

.team-arrow:hover {
  transform: translateY(-50%) scale(1.1);
}

.team-arrow.left { left: 20px; }
.team-arrow.right { right: 20px; }

/* ✅ Responsive */
@media (max-width: 1024px) {
  .team-card {
    width: 200px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .team-card {
    width: 180px;
    height: 250px;
  }
  .team-card.left-2, .team-card.right-2 { display: none; }
  .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 355px;
    margin-bottom: 14px;
}
}

@media (max-width: 480px) {
  .team-card {
    width: 150px;
    height: 220px;
  }
  .team-card.left-1, .team-card.right-1 {
    transform: translateX(0) scale(0.9) !important;
  }
}
.themes-container-alt {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.themes-title-alt {
  text-align: center;
  font-size: 36px;
  color: #fff;
  margin-bottom: 40px;
}
.themes-title-alt span {
  color: #ff8c42;
}

.themes-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(444px, 1fr));
  gap: 25px;
}
.prr{
    margin-top:20px;
}
.theme-card-alt {
 display: flex
;
    flex-direction: row;
        background: #2d6a03d6;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    align-items: center;
}

.theme-card-alt:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.theme-icon img {
 width: 228px;
    /* height: 160px; */
    object-fit: cover;
    height: 147px;
}

.theme-content {
  padding: 15px;
}

.theme-number-alt {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 8px;
  opacity: 0.9;
}

.theme-card-alt p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight:bolder;
}

.theme-orange-alt {
  border-top: 5px solid #ff8c42;
}
.theme-purple-alt {
  border-top: 5px solid #7c65e0;
}
.venue-section {
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 500px;
}

.venue-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgb(241 255 228);
  color: #000;
  border-radius: 10px;
  overflow: hidden;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.venue-title {
color: #0073e6;
    border: 2px solid #0073e6;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.venue-title p{
  color: black;
}
.venue-card img {
  object-fit: cover;
}
.last-card{
        position: relative;
    left: 344px;
}
@media (max-width: 768px) {
  .venue-card {
    position: relative;
    transform: none;
    left: auto;
    top: auto;
    margin-top: -60px;
  }
  #contact-us img {
      width:72%;
  }
  .last-card{
        position: relative;
    left: 0px;
}
}
 .lbp-container {
      /*max-width: 1000px;*/
      margin: 50px auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      /*padding:30px;*/
    }
.lbp-content-section p{
    text-align:justify;
}
    .lbp-photo-section {
      flex: 1 1 300px;
      background: #d9e9f3;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 30px;
    }

    .lbp-photo-section img {
      width: 100%;
      max-width: 250px;
      border-radius: 50%;
      border: 5px solid #fff;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .lbp-content-section {
      flex: 2 1 400px;
      padding: 40px;
    }

    .lbp-content-section h1 {
      font-size: 2rem;
      color: #003a66;
      margin-bottom: 8px;
    }

    .lbp-content-section h2 {
      font-size: 1.2rem;
      font-weight: 400;
      color: #666;
      margin-bottom: 25px;
    }

    .lbp-content-section p {
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 18px;
    }
 .lbp-about-section ul {
      padding-left: 20px;
      list-style-type: disc;
    }

    .lbp-about-section li {
      margin-bottom: 10px;
      line-height: 1.6;
    }
    @media screen and (max-width: 768px) {
      .lbp-container {
        flex-direction: column;
      }

      .lbp-content-section {
        padding: 30px 20px;
      }

      .lbp-photo-section {
        padding: 20px;
      }
    }
    .lbp-profile-container {
      max-width: 1000px;
      margin: 40px auto;
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
    }

    .lbp-profile-image {
      flex: 1 1 300px;
      background: #e1eaf0;
      /*display: flex;*/
      justify-content: center;
      align-items: center;
      padding: 30px;
    }

    .lbp-profile-image img {
      width: 100%;
      max-width: 280px;
      border-radius: 50%;
      border: 6px solid #fff;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .lbp-profile-content {
      flex: 2 1 400px;
      padding: 30px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .lbp-profile-content h1 {
      font-size: 2rem;
      color: #004b7c;
      margin: 0;
    }

    .lbp-profile-content h2 {
      font-size: 1.2rem;
      font-weight: normal;
      margin-top: 8px;
      color: #666;
    }

    .lbp-about-section {
      margin-top: 25px;
    }

    .lbp-about-section h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #004d7a;
    }

    .lbp-about-section ul {
      padding-left: 20px;
      list-style-type: disc;
    }

    .lbp-about-section li {
      margin-bottom: 10px;
      line-height: 1.6;
    }
.ratio{
        background: #4d99048a;
    /*padding: -32px;*/
    border-radius: 10px;
}
.ratio iframe{
        padding: 10px;
}
    @media screen and (max-width: 768px) {
      .lbp-profile-container {
        flex-direction: column;
      }

      .lbp-profile-content {
        padding: 20px;
      }

      .lbp-profile-image {
        padding: 20px;
      }
      .cre{
          margin-top:20px;
      }
    }
.support_wrapper {
    padding: 25px 0 45px;
    /* background: #f3f3f3; */
}
.support_wrapper p {
    text-align: center;
    font-size: 13px;
    line-height: 28px;
    font-weight: 700;
    color: #327001;
    position: relative;
    margin: 7px 0 6px;
}
.partner__inner img {
    background: #fff;
    width: 100%;
    height: 100px;
    aspect-ratio: 2 / 3;
    object-fit: contain;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    border: 1px solid #83701d4a;
    border-radius: 10px;
    padding: 10px;
    margin: 0 10px;
}
.bootx-highlights {
      background: #fffff0;
      padding: 60px 20px;
      /*font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;*/
    }

    .bootx-highlights h2 {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 40px;
      color: #0a3d62;
      text-transform: uppercase;
    }

    .bootx-card {
      background: #fff;
      border-radius: 12px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0,0,0,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      height: 100%;
    }

    .bootx-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 22px rgba(0,0,0,0.12);
    }

    .bootx-icon {
      font-size: 2rem;
      color: #1e90ff;
      margin-bottom: 12px;
    }

    .bootx-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #0a3d62;
      margin-bottom: 8px;
    }

    .bootx-card p {
      font-size: 0.95rem;
      color: #555;
      margin: 0;
    }
    .navbar p{
        margin:auto;
    }
    @media (max-width: 768px) {
    .navbar p {
    margin: 0;
}
}
