:root {
  --drr-blue-dark: #2d348a;
  --drr-blue-light: #0f7fbf;
  --drr-green: #6fae3f;
  --drr-gold: #b9a06a;
  --drr-orange: #f29c1f;
  --drr-bg-light: #f6f9fc;



  .drr-countdown-section {
    background: linear-gradient(135deg, #0f7fbf, #2d348a);
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
  }

  /* soft abstract circles */
  .drr-countdown-section::before,
  .drr-countdown-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
  }

  .drr-countdown-section::before {
    width: 280px;
    height: 280px;
    background: #ffffff;
    top: -120px;
    left: -100px;
  }

  .drr-countdown-section::after {
    width: 350px;
    height: 350px;
    background: #6fae3f;
    bottom: -180px;
    right: -150px;
  }

  .drr-countdown-wrap {
    max-width: 1100px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
  }

  /* Heading strip */
  .drr-countdown-head span {
    display: inline-block;
    background: rgb(255 255 255 / 33%);
    color: #fff;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
  }

  /* Timer */
  .drr-countdown-timer {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
  }

  .drr-count-box {
    width: 200px;
    height: 140px;
    background: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 22px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: transform 0.3s ease;
  }

  .drr-count-box:hover {
    transform: translateY(-8px);
  }

  .drr-count-box h2 {
    color: #292929;

    font-size: 46px;
    font-weight: 800;
    margin: 0;
  }

  .drr-count-box p {
    color: #000000;
    font-size: 15px;
    margin-top: 6px;
    letter-spacing: 1px;
    opacity: 0.9;
  }

  /* Mobile */
  @media (max-width: 576px) {
    .drr-count-box {
      width: 95px;
      height: 100px;
    }

    .drr-count-box h2 {
      font-size: 30px;
    }

    .drr-count-box {
      width: 40%;
      height: 140px;

    }
  }

  .cd-clean-wrap {
    /* background: linear-gradient(135deg, #1e5fa8, #1b3f8b); */

  }

  .cd-clean-card {
    padding: 40px 15px;
    max-width: 1000px;
    margin: auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  }

  .cd-clean-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
  }

  .cd-clean-item {
    padding: 28px 10px;
    border-right: 1px solid #eee;
  }

  .cd-clean-item:last-child {
    border-right: none;
  }

  .cd-clean-value {
    font-size: 46px;
    font-weight: 800;
    color: #1b3f8b;
  }

  .cd-clean-label {
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #b07a2a;
    letter-spacing: 1px;
  }

  .cd-clean-msg {
    background: rgb(248 246 239);
    padding: 14px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
  }

  .cd-dot {
    width: 10px;
    height: 10px;
    background: #d9a441;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
  }

  @keyframes pulse {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    50% {
      transform: scale(1.5);
      opacity: 0.4;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Mobile */
  @media (max-width: 768px) {
    .cd-clean-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .drr-about-section {
    padding: 80px 0;
    /* background: #f6f9fc; */
  }

  /* Image */
  .drr-about-image img {
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  }

  /* Content */
  .drr-about-content {
    padding-left: 20px;
  }

  .drr-about-tag {
    display: inline-block;
    background: rgba(45, 52, 138, 0.1);
    color: #2d348a;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .drr-about-title {
    font-size: 36px;
    font-weight: 800;
    color: #2d348a;
    margin-bottom: 10px;
  }

  .drr-about-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
  }

  /* Button */
  .drr-about-btn {
    background: linear-gradient(135deg, #0f7fbf, #2d348a);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .drr-about-btn:hover {
    background: linear-gradient(135deg, #2d348a, #0f7fbf);
    color: #ffffff;
    text-decoration: none;
  }

  /* Mobile */
  @media (max-width: 767px) {
    .drr-about-content {
      padding-left: 0;
      text-align: center;
    }

    .drr-about-title {
      font-size: 28px;
    }
  }

  .drr-story-section {
    padding: 60px 0;
    /* background: #ffffff; */
    background: #2d348a;
  }

  /* TITLE */
  .drr-story-title {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 30px;
  }

  .drr-story-title span {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: #ffc4a9;
    /* margin-top: 6px; */
  }

  /* STORY LIST */
  .drr-story-list {
    position: relative;
    padding-left: 30px;
  }

  .drr-story-list::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 3px;
    height: 100%;
    background: #e2e6f2;
  }

  .drr-story-item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 30px;
  }

  .drr-story-dot {
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    background: #ffc4a9;
    border-radius: 50%;
  }

  .drr-story-item p {
    margin: 0;
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    font-weight: 500;
  }

  /* IMPACT PANEL */
  .drr-impact-panel {
    /* background: linear-gradient(160deg, #1f6fb8, #1b3f8b); */
    /* padding: 35px 45px;
  border-radius: 28px;
  color: #ffffff;
  box-shadow: 0 35px 80px rgba(0,0,0,0.3); */
  }

  .drr-impact-panel img {
    background: white;
    width: 90%;
    padding: 35px 45px;
    border-radius: 28px;
    color: #ffffff;
    /* box-shadow: 0 35px 80px rgba(0,0,0,0.3); */
  }

  .drr-impact-panel h3 {
    color: white;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 30px;
  }

  .drr-impact-panel ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .drr-impact-panel ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .drr-impact-panel ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #f2c97d;
  }

  /* MOBILE */
  @media (max-width: 768px) {
    .drr-story-title {
      font-size: 30px;
      text-align: center;
    }

    .drr-story-list {
      padding-left: 20px;
    }

    .drr-impact-panel {
      margin-top: 40px;
    }
  }

  .drr-vision-section {
    padding: 80px 0;
    /* background: linear-gradient(180deg, #ffffff, #f4f8fd); */
    /* background: url(../images/bg/bg-light.png);
    background-position: center;
    background-size: cover;
  position: relative; */
  }



  /* tag */
  .drr-vision-tag {
    display: inline-block;
    background: rgba(45, 52, 138, 0.1);
    color: #2d348a;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
  }

  /* main vision text */
  .drr-vision-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.6;
    color: #1f2a44;
    max-width: 900px;
    margin: auto;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .drr-vision-section {
      padding: 80px 0;
    }

    .drr-vision-title {
      font-size: 22px;
    }
  }

  .drr-objective-icon-section {
    background: url(../images/bg/bg-light.png);
    background-position: center;
    background-size: cover;
    padding: 80px 0;
    /* background: #f6f9fc; */
  }

  .drr-objective-title {
    font-size: 36px;
    font-weight: 900;
    color: #2d348a;
    margin-bottom: 12px;
  }

  .drr-objective-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 50px;
  }

  /* Card */
  .drr-objective-card {
    background: #ffffff;

    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 27%);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .drr-objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
  }

  /* Icon */
  .drr-objective-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0f7fbf, #2d348a);
    color: #ffffff;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
  }

  .drr-objective-card p {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .drr-objective-title {
      font-size: 28px;
    }
  }

  .white-sha-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 20px 1px rgb(0 0 0 / 27%);
  }

  .drr-clean-section {
    padding: 110px 0;
    background: #ffffff;
  }

  /* Titles */
  .drr-clean-title {
    font-size: 34px;
    font-weight: 800;
    color: #1f2a44;
    margin-bottom: 30px;
    position: relative;
  }

  .drr-clean-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #6fae3f;
    display: block;
    margin-top: 12px;
  }

  /* List */
  .drr-clean-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .drr-clean-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #e6eaf2;
    position: relative;
    padding-left: 22px;
  }

  .drr-clean-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #6fae3f;
    font-weight: 700;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .drr-clean-title {
      font-size: 26px;
    }

    .drr-clean-section {
      padding: 70px 0;
    }
  }

  .drr-exhi-section {
    padding: 60px 20px;
    background: url(../images/bg/bg-light.png);
    background-position: center;
    background-size: cover;
  }



  .drr-exhi-container {

    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .drr-exhi-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
  }

  .drr-exhi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  }

  .drr-exhi-img {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 18px;
  }

  .drr-exhi-img img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
  }

  .drr-exhi-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0;
    line-height: 30px;
    text-transform: capitalize;
  }

  @media (max-width: 992px) {
    .drr-exhi-container {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .drr-exhi-container {
      grid-template-columns: 1fr;
    }
  }

  .drr-exhi-benefits {
    padding: 60px 20px;
    background: #f7f9fb;
  }

  .drr-exhi-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
  }

  .drr-exhi-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .drr-exhi-benefit-item {
    background: #ffffff;
    padding: 18px 20px 18px 45px;
    border-radius: 10px;
    font-size: 18px;
    position: relative;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .drr-exhi-benefit-item::before {
    content: "✔";
    position: absolute;
    left: 18px;
    top: 18px;
    color: #00649B;
    font-weight: bold;
    font-size: 18px;
  }

  @media (max-width: 992px) {
    .drr-exhi-benefits-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .drr-exhi-benefits-grid {
      grid-template-columns: 1fr;
    }
  }

  .ass-med {
    padding: 10px;
    background: white;
  }

  .drr-conf-section {
    padding: 70px 20px;
    background: #f4f6ff;
  }

  .drr-conf-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
  }

  .drr-conf-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    position: relative;
  }

  .drr-conf-main {
    border-top: 6px solid #2D348A;
  }

  .drr-conf-badge {
    background: #2D348A;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
  }

  .drr-conf-title {
    font-size: 30px;
    font-weight: 700;
    color: #2D348A;
  }

  .drr-conf-subtitle {
    font-size: 15px;
    margin: 12px 0;
  }

  .drr-conf-theme {
    font-size: 18px;
    margin-bottom: 20px;
  }

  .drr-conf-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .drr-conf-columns h4 {
    color: #2D348A;
    margin-bottom: 10px;
  }

  .drr-conf-columns ul {
    padding-left: 18px;
  }

  .drr-conf-columns li {
    margin-bottom: 8px;
    font-size: 14px;
  }

  .drr-conf-small-title {
    font-size: 20px;
    color: #2D348A;
    margin-bottom: 15px;
  }

  .drr-conf-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .drr-conf-btn {
    display: inline-block;
    background: #2D348A;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
  }

  .drr-conf-btn-outline {
    display: inline-block;
    border: 2px solid #2D348A;
    color: #2D348A;
    padding: 10px 26px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
  }

  .drr-conf-block {
    padding: 70px 20px;
    background: url(../images/bg/bg-light.png);
    background-position: center;
    background-size: cover;
    /* background: #ffffff; */
  }

  .drr-conf-alt {
    background: #f4f6ff;
  }

  .drr-conf-wrap {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .drr-conf-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }

  .drr-conf-content h2 {
    font-size: 32px;
    color: #2D348A;
    margin-bottom: 15px;
  }

  .drr-conf-tag {
    display: inline-block;
    background: #2D348A;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }

  .drr-conf-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .drr-conf-theme {
    margin-bottom: 20px;
  }

  .drr-conf-content h4 {
    color: #2D348A;
    margin: 20px 0 10px;
  }

  .drr-conf-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
  }

  .drr-conf-content li {
    list-style: square;
    margin-bottom: 8px;
    font-size: 18px;
  }

  .drr-conf-btn {
    background: #2D348A;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }

  .drr-conf-btn-outline {
    border: 2px solid #2D348A;
    color: #2D348A;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
  }

  .drr-stats-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff, #f5f9ff);
  }

  /* Stat Box */
  .drr-stat-box {
    background: #ffffff;
    padding: 45px 20px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
  }

  .drr-stat-box:hover {
    transform: translateY(-8px);
  }

  /* Highlight middle stat */
  .drr-stat-highlight {
    background: linear-gradient(135deg, #0f7fbf, #2d348a);
    color: #ffffff;
  }

  .drr-stat-highlight p {
    color: #ffffff;
  }

  /* Number */
  .drr-stat-box h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #2d348a;
  }

  .drr-stat-highlight h2 {
    color: #ffffff;
  }

  .drr-stat-box h2 span {
    font-size: 28px;
    font-weight: 700;
  }

  /* Label */
  .drr-stat-box p {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #555;
    margin: 0;
  }

  /* Mobile */
  @media (max-width: 768px) {
    .drr-stat-box h2 {
      font-size: 40px;
    }
  }

  .drr-expo-section {
    padding: 80px 20px;
    background: #f4f6ff;
  }

  .drr-expo-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .drr-expo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    position: relative;
    border-top: 6px solid #2D348A;
  }

  .drr-expo-highlight {
    background: #2D348A;
    color: #ffffff;
  }

  .drr-expo-heading {
    font-size: 26px;
    margin-bottom: 25px;
    color: inherit;
  }

  .drr-expo-list {
    padding-left: 0;
    list-style: none;
  }

  .drr-expo-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 17px;
    line-height: 1.6;
    font-weight: 500;
  }

  .drr-expo-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    color: #2D348A;
    font-weight: bold;
  }

  .drr-expo-highlight .drr-expo-list li::before {
    color: #ffffff;
  }

  @media (max-width: 992px) {
    .drr-expo-container {
      grid-template-columns: 1fr;
    }
  }

  .drr-venu-section {
    padding: 80px 20px;
    background: #f7f9fc;
  }

  .drr-venu-container {
    max-width: 1200px;
    margin: auto;
  }

  .drr-venu-top {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
  }

  .drr-venu-title {
    font-size: 34px;
    color: #2D348A;
    margin-bottom: 15px;
  }

  .drr-venu-venue {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .drr-venu-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .drr-venu-image img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  }

  /* HOW TO REACH */
  .drr-venu-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    margin-bottom: 50px;
    /* margin-top: 50px; */
  }

  .drr-venu-subtitle {
    font-size: 24px;
    color: #2D348A;
    margin-bottom: 20px;
  }

  .drr-venu-list {
    list-style: none;
    padding-left: 0;
  }

  .drr-venu-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 14px;
    font-size: 15px;
  }

  .drr-venu-list li::before {
    content: "📍";
    position: absolute;
    left: 0;
    top: 0;
  }

  /* BOTTOM */
  .drr-venu-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 100px;
  }

  .drr-venu-logos h4,
  .drr-venu-facilities h4 {
    font-size: 22px;
    color: #2D348A;
    margin-bottom: 15px;
  }

  .drr-venu-logo-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .drr-venu-logo-row img {
    height: 50px;
    object-fit: contain;
  }

  .drr-venu-facilities ul {
    padding-left: 20px;
  }

  .drr-venu-facilities li {
    list-style: square;
    margin-bottom: 10px;
    font-size: 20px;
  }

  @media (max-width: 992px) {

    .drr-venu-top,
    .drr-venu-bottom {
      grid-template-columns: 1fr;
    }
  }

  .drr-simple {
    /* background: #ffffff; */
    padding: 70px 20px;
    font-family: Arial, sans-serif;
  }

  .drr-container {
    max-width: 1200px;
    margin: auto;
  }

  .drr-heading {
    font-size: 34px;
    color: #2D3192;
    margin-bottom: 35px;
    border-left: 6px solid #F27036;
    padding-left: 15px;
  }

  /* Cycle Strip */
  .drr-cycle-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 10px;
    margin-bottom: 60px;
  }

  .drr-strip-box {
    border: 1px solid #e2e4ff;
    padding: 20px 40px;
    background: #f8f9ff;
  }

  .drr-strip-box h3 {
    color: #2D3192;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .drr-strip-box p {
    text-align: left;
    font-size: 16px;
    color: #000000;
    margin-bottom: 12px;
  }

  .drr-strip-box ul {
    padding-left: 18px;
  }

  .drr-strip-box ul li {
    list-style: square;
    font-size: 16px;
    /* margin-bottom: 6px; */
  }

  /* DRR Info */
  .drr-info-block {
    border-top: 3px solid #2D3192;
    padding-top: 40px;
  }

  .drr-info-block h2 {
    color: #2D3192;
    font-size: 30px;
    margin-bottom: 15px;
  }

  .drr-info-block p {
    font-size: 16px;
    max-width: 900px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .drr-two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }

  .drr-two-col h4 {
    color: #F27036;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .drr-two-col ul {
    padding-left: 18px;
  }

  .drr-two-col ul li {
    list-style: square;
    font-size: 15px;
    margin-bottom: 8px;
  }

  .drr-focus {
    background: #f4f5ff;
    padding: 80px 20px;
    font-family: Arial, sans-serif;
  }

  .drr-container {
    max-width: 1100px;
    margin: auto;
  }

  /* Statement */
  .drr-statement {
    max-width: 850px;
    margin-bottom: 50px;
    border-left: 6px solid #2D3192;
    padding-left: 20px;
  }

  .drr-statement h2 {
    color: #2D3192;
    font-size: 34px;
    margin-bottom: 12px;
  }

  .drr-statement p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
  }

  /* Split Lists */
  .drr-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .drr-list h3 {
    font-size: 22px;
    color: #2D3192;
    margin-bottom: 15px;
  }

  .drr-list ul {
    list-style: none;
    padding: 0;
  }

  .drr-list ul li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
  }

  .drr-list ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2D3192;
    font-weight: bold;
  }

  /* Accent block */
  .drr-list.accent h3 {
    color: #F27036;
  }

  .drr-list.accent ul li::before {
    color: #F27036;
  }

  @media(max-width: 800px) {
    .drr-split {
      grid-template-columns: 1fr;
    }
  }

  .confe-drr-pg {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
    line-height: 1.6;
  }

  /* HERO */
  .confe-hero {
    background: linear-gradient(135deg, #2D3192, #1f236e);
    color: #fff;
    padding: 60px 20px;
    text-align: center;
  }

  .confe-hero h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
  }

  .confe-hero p {
    color: #fff;
    max-width: 900px;
    margin: auto;
    font-size: 18px;
  }

  .confe-theme {
    display: inline-block;
    margin-top: 15px;
    background: #F27036;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
  }

  /* SECTIONS */
  .confe-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
  }

  .confe-section h2 {
    color: #2D3192;
    font-size: 28px;
    margin-bottom: 25px;
    border-left: 5px solid #F27036;
    padding-left: 15px;
  }

  /* LIST */
  .confe-list {
    list-style: none;
    padding: 0;
  }

  .confe-list li {
    padding: 10px 0 10px 25px;
    position: relative;
  }

  .confe-list li::before {
    content: "✔";
    color: #F27036;
    position: absolute;
    left: 0;
  }

  /* GRID */
  .confe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 15px;
  }

  .confe-grid span {
    background: #fff;
    border-left: 4px solid #2D3192;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  /* AGENDA */
  .agenda-bg {
    background: #f7f8ff;
  }

  .agenda-day {
    margin-bottom: 40px;
  }

  .agenda-day h3 {
    color: #F27036;
    margin-bottom: 15px;
  }

  .agenda-card {
    background: #fff;
    padding: 18px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  }

  .agenda-card h4 {
    color: #2D3192;
    margin-bottom: 5px;
  }

  /* CTA */
  .confe-cta {
    text-align: center;
    padding: 50px 20px;
  }

  .confe-btn {
    background: #F27036;
    color: #fff;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
  }

  .confe-btn:hover {
    background: #d85e2f;
  }

  .agenda-timeline {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }

  .agenda-day-title {
    text-align: center;
    margin: 60px 0 30px;
  }

  .agenda-day-title h2 {
    color: #2D3192;
    font-size: 32px;
  }

  .agenda-day-title p {
    color: #555;
    font-size: 16px;
  }

  .agenda-item {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
  }

  .agenda-time {
    min-width: 120px;
    color: #2D3192;
    font-weight: 700;
    font-size: 16px;
    text-align: right;
    padding-top: 18px;
  }

  .agenda-card {
    background: #fff;
    padding: 22px 25px;
    border-radius: 10px;
    border-left: 6px solid #2D3192;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
  }

  .agenda-card h3 {
    color: #f15a24;
    margin-bottom: 8px;
  }

  .agenda-theme {
    font-weight: 600;
    margin-bottom: 10px;
  }

  .agenda-card ul {
    padding-left: 18px;
  }

  .agenda-card ul li {
    list-style-type: disc;
    margin-bottom: 6px;
  }

  @media(max-width: 768px) {
    .agenda-item {
      flex-direction: column;
    }

    .agenda-time {
      text-align: left;
      padding: 0;
    }
  }

  .objectives-blocks {
    background: #f4f8fc;
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
  }

  .section-title {
    text-align: center;
    font-size: 34px;
    color: #003b5c;
    font-weight: 700;
    margin-bottom: 50px;
  }

  .objectives-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* desktop */
  gap: 10px;
}

  .objective-card {
    background: #ffffff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid #003b5c;
  }

  .objective-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
  }

  .obj-icon {
    width: 70px;
    height: 70px;
    background: #003b5c;
    color: #ffffff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
  }

  .objective-card p {
    text-align: center;
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
  }

  .objective-card.highlight {
    border-top-color: #f15a24;
  }

  .objective-card.highlight .obj-icon {
    background: #f15a24;
  }

  @media (max-width: 768px) {
    .section-title {
      font-size: 26px;
    }
  }

  .awards-page-new {
    font-family: 'Poppins', sans-serif;
  }

  /* Common */
  .awards-panel {
    padding: 80px 0;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  .awards-panel h2 {
    font-size: 34px;
    color: #003b5c;
    font-weight: 700;
    margin-bottom: 40px;
  }

  /* PURPOSE */
  .purpose-panel {
    background: linear-gradient(135deg, #003b5c, #0a5f88);
    color: #ffffff;
  }

  .purpose-panel h2 {
    color: #ffffff;
  }

  .purpose-grid {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
    gap: 20px;
  }

  .purpose-item {
    background: rgba(255, 255, 255, 0.12);
    padding: 25px;
    border-left: 5px solid #f15a24;
    font-size: 18px;
    line-height: 1.6;
  }

  /* SCOPE */
  .scope-panel {
    background: #ffffff;
  }

  .scope-box {
    background: #f5f9fc;
    padding: 35px;
    font-size: 18px;
    line-height: 1.8;
    border-left: 6px solid #003b5c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* ELIGIBILITY */
  .eligibility-panel {
    /* background: #fdf6f2; */
  }

  .eligibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    gap: 18px;
  }

  .eligibility-grid span {
    background: #ffffff;
    padding: 16px 18px;
    font-size: 18px;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    font-weight: 500;
  }

  /* FOCUS AREAS */
  .focus-panel {
    background: #ffffff;
  }

  .focus-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20%, 1fr));
    gap: 25px;
  }

  .focus-card {
    background: #ffffff;
    padding: 30px;
    text-align: center;
    font-size: 15px;
    border-top: 6px solid #003b5c;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
  }

  .focus-card:hover {
    transform: translateY(-6px);
    color: #003b5c;
  }

  .focus-card.highlight {
    border-top-color: #f15a24;
  }

  @media (max-width: 768px) {
    .awards-panel h2 {
      font-size: 26px;
    }

  }

  .eligibility-grid span {
    background: #ffffff;
    padding: 16px 18px;
    font-size: 16px;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: 0.3s ease;
  }

  .eligibility-grid span i {
    font-size: 18px;
    color: #f15a24;
    min-width: 22px;
  }

  .eligibility-grid span:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
  }
  /* Tablet */
@media (max-width: 992px) {
  .objectives-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .objectives-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Tablet */
@media (max-width: 992px) {
  .drr-conf-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .drr-conf-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .agenda-card h3{
    font-size: 26px;
  }
}