.exclusive-offer {
  text-align: center;
  font-family: Arial, sans-serif;
  color: #222;
  margin: 40px auto;
  max-width: 900px;
}

.exhibitor-profile{
    background-image: url(../../assets/images/Constro-Web-Banner-03.09.2025.webp);
}

.exclusive-offer h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #d4a017; /* gold-like */
}

.exclusive-offer .left-align {
  float: left;
}

.offer-table {
  width: 100%;
  border-collapse: collapse; /* grid-like look */
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
}

.offer-table th,
.offer-table td {
  padding: 12px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #ffcc00; /* grid borders */
  color: black;
}

.offer-table thead th {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
}

.offer-table thead .sub-header td {
  background-color: #ffe066; /* lighter yellow for sub-header */
  font-weight: 600;
}

.offer-table tbody td {
  background-color: #fff9db; /* very light yellow for body */
}


.cta-btn {
  background: #f2cb5a;           /* yellow background */
  color: #03451f;                /* dark green text */
  font-size: 16px;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

.cta-btn .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #8a6b18;           /* dark golden circle */
  border-radius: 50%;
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
  top: 0;
}

.cta-btn .arrow svg {
  transform: rotate(45deg);      /* diagonal arrow */
  transition: transform 0.3s ease;
}

.cta-btn:hover {
  background: #eabf47;           /* slightly darker yellow */
  color: #fff;
}

.features .ci-card {
  opacity: 0;
  transform: translateY(40px);   /* start slightly down */
  transition: all 2.0s ease-out;
}

.features .ci-card.show {
  opacity: 1;
  transform: translateY(0);      /* back to normal */
}

.features .ci-card.left {
  transform: translateX(-100px); /* slide in from left */
}
.features .ci-card.left.show {
  transform: translateX(0);
  opacity: 1;
}

.features .ci-card.right {
  transform: translateX(100px);  /* slide in from right */
}
.features .ci-card.right.show {
  transform: translateX(0);
  opacity: 1;
}


.cta-btn:hover .arrow svg {
  transform: rotate(0deg);       /* straight arrow → */
}

.note-section {
    color: black; /* White text */
  font-size: 16px;
  line-height: 1.8;
  justify-items: left;
}

.note-section h4 {
  margin-bottom: 10px;
  font-weight: normal;
}

.note-section ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: disc; /* Bullet points */
}

.note-section ul li {
  margin-bottom: 8px;
  justify-self: left;
  font-size: 14px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background-color: #e6c44b; /* Yellow background */
  padding: 12px 20px;
  border-radius: 40px;       /* Rounded button */
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #004d25;            /* Dark green text */
  gap: 12px;                 /* space between text and circle */
  transition: background 0.3s ease;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 50px;
}

.cta-btn:hover {
  background-color: #f0d55c; /* lighter on hover */
}

.cta-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-text {
  transform: translateX(5px); /* moves slightly right */
}

.circle-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #8c7320;  /* Brownish inner circle */
  border-radius: 50%;
  position: relative;
}

.arrow {
  color: white;
  font-size: 30px;
  font-weight: bold;
  display: inline-block;
  transform: rotate(-45deg);  /* ↗ default */
  transition: transform 0.3s ease;
}

.cta-btn:hover .arrow {
  transform: rotate(0deg);    /* → on hover */
}

@media only screen and (max-width: 767px) {
    .exclusive-offer {
        margin: 40px 20px;
        max-width: 100%;
    }
    
    .heading {
        font-size: 47px;
        margin-top: 50%;
    }
    
    .bird-offer-row {
        margin-top: 0% !important;
        justify-content: flex-start !important;
    }
    .exhibitor-profile{
        background-image: url(../../assets/images/Constro-early-bird-mobile-banner.png);
    }
    
    
    .note-section ul li {
        text-align: left;
    }
    
    .cta-btn {
        margin-top: 25px;
    }
}

    :root{
      --brand: #0a4fff;            /* update to your theme primary */
      --brand-dark: #093ec8;
      --ink: #0b1220;
      --muted: #5b667c;
      --bg: #f7f9fc;
      --white: #fff;
      --ok: #0aa564;
      --warn: #e57c00;
      --shadow: 0 10px 30px rgba(9,18,32,.08);
      --radius: 18px;
    }
    .ci-wrap{
        font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
        color:var(--ink);
        background:var(--bg);
        line-height:1.55
    }
    .ci-container{
        max-width: 80%;
        margin:0 auto;
        padding:56px 20px;
    }
    .ci-grid{
        display:grid;
        gap:20px;
    }
    .ci-btn{
        display:inline-flex;
        align-items:center;
        gap:10px;
        background:var(--brand);
        color:#fff;
        padding:14px 18px;
        border-radius:12px;
        text-decoration:none;
        font-weight:600;
        box-shadow:var(--shadow);
    }
    
    .ci-btn:hover{
        background:var(--brand-dark);
        color: #fff;
    }
    .ci-ghost{
        background:transparent;
        border:2px solid var(--brand);
        color:var(--brand)
    }
   .ci-card {
        background: var(--white);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 22px;
        margin-top: 10%;
        margin-bottom: 0%;
        transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
    }
    
    .ci-card:hover {
        transform: translateY(-10px); /* Move up */
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow */
    }
    
    .offer-box {
        padding: 5px 9px;
        margin-left: -21px;
        margin-top: 5px;
        transform: rotate(0deg);
    }

    
    .ci-eyebrow{
        font-size:13px;
        letter-spacing:.12em;
        text-transform:uppercase;
        color:var(--brand);
        font-weight:800;
    }
    .h1{
        font-size:clamp(28px,4vw,46px);
        line-height:1.15;
        margin:.2em 0;
    }
    h2{
        font-size:clamp(22px,3vw,32px);
        margin:.2em 0;
    }
    h3{
        font-size:20px;
        margin:.2em 0;
    }
    .hero{
        background:linear-gradient(135deg, #eaf1ff, #ffffff);
    }
    .hero .ci-grid{
        grid-template-columns: 1.2fr .8fr;
        align-items:center;
    }
    .hero-badges{
        display:flex;
        gap:12px;
        flex-wrap:wrap;
        margin-top:18px;
    }
    .pill{
        padding:8px 12px;
        border-radius:999px;
        background:#c6cbd5;
        color:#2140c9;
        font-weight:600;
        font-size:13px;
    }
    .kpis{
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:12px;
        margin-top:18px;
    }
    .kpi{
        background:#fff0b5;
        border-radius:12px;
        padding:14px;
        text-align:center;
        font-weight:700;
    }
    .features .ci-grid{
        grid-template-columns:repeat(3,1fr);
    }
    
    .features.key-feaures{
        margin-top: -5%;
    }
    
    .feat{
        display:flex;
        gap:12px;
        background: #ffe991;
    }
    .feat-icon{
        width:42px;
        height:42px;
        border-radius:12px;
        background:#eff3ff;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:20px;
    }
    .side-by{
        grid-template-columns:1fr 1fr;
    }
    
    .side-by.exibitor-card{
        margin-top: -7%;
        margin-bottom: -6%;
    }
    
    .howitworks{
        margin-top: -10%;
        margin-bottom: -10%;
    }
    
    .steps{
        counter-reset: step;
    }
    .step{
        display:flex;
        gap:14px;
        align-items:flex-start;
    }
    .step:before{
        counter-increment: step;
        content:counter(step);
        background:var(--brand);
        color:#fff;
        width:30px;
        height:30px;
        border-radius:50%;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        font-weight:700;
        margin-top:4px;
    }
    .ci-card.hl{
        background:linear-gradient(90deg,#fff, #ffcc00);
        border:1px solid #e8eefc;
    }
    .faq details{
        border:1px solid #e6e8ee;
        border-radius:14px;
        background:#fff;
        padding:16px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .faq details:hover {
      transform: translateY(-10px); /* Lift card */
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Stronger shadow */
      margin-top: 20px;
    }
    
    .faq details+details{
        margin-top:10px;
    }
    .faq summary{
        cursor:pointer;
        font-weight:700;
        color:var(--ink);
    }
    .cta-band{
        background:linear-gradient(120deg, #0a4fff 0%, #3c7bff 100%);
        color:#fff;
        border-radius:18px;
        padding:28px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        gap:16px;
        margin-top: -6%;
    }
    .cta-band a{
        background:#fff;
        color:#0a4fff;
    }
    .two-btns{
        display:flex;
        gap:10px;
        flex-wrap:wrap;
    }
    .mini{
        font-size:12px;
        color:#282828;
    }

    @media (max-width:767px){
      .hero .ci-grid,.side-by,.features .ci-grid{
          grid-template-columns:1fr;
      }
      .kpis{
          grid-template-columns:repeat(2,1fr);
      }
      .ci-grid {
          display: inline;
      }
      
      .step:before {
        width: 30px;
        height: 30px;
        padding: 15px;
      }
      
      .step{
          padding-bottom: 12px;
      }
      
      .ci-container {
            max-width: none;
            margin: 0 auto;
            padding: 23px 20px;
        }
        
        .digitalformobile{
            margin-top: 20%;
        }
        
        .faq details:hover {
            margin-top: 22px;
        }
        
        .bird-on-box {
            width: 85% !important;
            height: auto !important;
            margin-left: -109% !important;
            margin-top: 9% !important;
        }
        
        .offer-img {
            height: 90px;
            width: 79%;
            margin-left: -22px;
            margin-top: -6%;
        }
    }
    
  /* Offer Banner Layout */
  .offer-banner {
    position: relative;
    display: inline-block;
    margin-top: 15px;
  }
  
  /* Offer Box */
  .offer-text {
    background: #f8e71c;
    padding: 15px 25px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #004d26;
    line-height: 1.4;
    box-shadow: 4px 6px 0px #c6b700;
    transform: rotate(-5deg);
    position: relative;
  }

  .offer-text span {
    font-size: 22px;
  }

  /* Bird inline with heading text */
  .bird-inline {
    width: 60px;
    margin-left: 10px;
    vertical-align: middle;
    animation: float 3s ease-in-out infinite;
  }

  /* Floating Animation */
  @keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  .heading-section {
  text-align: center;
  position: relative;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.text-orange {
  color: #f7941d;
}

.heading-section {
  text-align: center;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.text-orange {
  color: #f7941d;
}


.heading-section {
  text-align: center;
  margin-top: 30px;
}

.heading {
  font-size: 48px;
  font-weight: bold;
  color: #fff;
}

.text-orange {
  color: #f7941d;
}

.bird-offer-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: -11%;
    margin-left: 56%;
}



.bird-on-box {
    width: 27%;
    height: auto;
    margin-left: 0%;
    margin-top: 1%;
}

.offer-img {
  height: 90px;
  width: auto;
  margin-left: -24px;
    margin-top: -6%;
}


.offer-box {
    background: linear-gradient(145deg, #ffeb38, #dcc133);
    color: #1b5e20;
    font-family: Arial, sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 9px;
    border-radius: 20px 30px 12px 30px;
    display: inline-block;
    /* 3D effect with dual shadows */
    box-shadow: 13px 5px 0px #c6a600, 3px 3px 12px rgba(0, 0, 0, 0.3);
    transform: rotate(0deg);
    margin-left: -26px;
    margin-top: -49px;
}

/* 3D Text Effect */
.offer-box span {
  display: inline-block;
}

.offer-box strong {
  font-size: 20px;
  color: #004d00;
}

.offer-box sup {
  font-size: 12px;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 12px;
    background: linear-gradient(135deg, #ec7b00, #ffcc00);
    color: #fff;
    border-radius: 8px;
    letter-spacing: 3px;
    user-select: none;
}

.captcha-reload {
    background: #e97901;
    border: none;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.captcha-reload:hover {
    transform: rotate(20deg);
    background: #ff4500;
}

.captcha-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.submit-btn {
    padding: 12px 28px;
    background: linear-gradient(135deg, #2c54a4, #28a745);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}






