*{padding: 0;margin: 0; box-sizing:border-box;}
html, body {
    font-family: Arial, sans-serif;
    overflow-x: hidden !important;
}


/*=========Vertical Scroller CSS==========*/
::-webkit-scrollbar {
    width: 6px; // to adjust width
}

::-webkit-scrollbar-track {
    background: #034569;
    border: rgba(0, 0, 0, 0.87);
}

::-webkit-scrollbar-thumb {
    background: #0FD8FD;
}

::-webkit-scrollbar-thumb:hover {
    background: #03b8d9;
}

::-webkit-scrollbar-thumb:active {
    background: #0FD8FD;
}


/*=============Margin Layout=============*/
.mar-lg-20 {
    margin: 0px 20px;
}

.mar-lg-30 {
    margin: 0px 26px;
}

.mar-lg-40 {
    margin: 0px 40px;
}

.mar-lg-50 {
    margin: 0px 50px;
}

.mar-lg-60 {
    margin: 0px 60px;
}

.mar-lg-70 {
    margin: 0px 70px;
}

.mar-lg-80 {
    margin: 0px 80px;
}

.mar-lg-l-0 {
    margin-left: 0px !important;
}
/*=============Margin Layout=============*/

/*=======Header Section===========*/

.rawmec-header{
    background:#fff;
    padding:5px 0;
}
.rawmec-box{
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.rawmec-logo img{
    max-width:100%;
    height:auto;
}

.event-date{
    font-size:28px;
    font-weight:800;
    line-height:1.3;
    background: linear-gradient(
        90deg,
        #555,
        #1fae4b,
        #0d6efd,
        #555
    );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: gradientMove 5s linear infinite alternate;
}

@keyframes gradientMove{
    0%{
        background-position: 0% center;
    }

    100%{
        background-position: 100% center;
    }
}
.event-location{
    font-size:22px;
    font-weight:500;
    color:#686868;
    line-height:1.3;
}

.inaugurated-text{
    font-size:13px;
    font-weight:600;
    color:#686868;
    line-height:1.5;
}

.inaugurated-text strong{
    font-size:15px;
    font-weight:700;
    color:#686868;
    line-height:1.5;
}

.partner-logo img{
    max-width:100px;
    width:100%;
}

@media(max-width:991px){

    .rawmec-header{
        text-align:center;
    }

    .rawmec-box{
        margin-bottom:10px;

    }

    .event-date{
        font-size:40px;
    }

    .event-location{
        font-size:24px;
    }

    .inaugurated-text{
        font-size:18px;
    }
}

@media(max-width:576px){

    .event-date{
        font-size:20px;
    }

    .event-location{
        font-size:12px;
    }

    .inaugurated-text{
        font-size:15px;
    }

    .partner-logo img{
        max-width:70px;
    }
    .inaugurated-text {font-size:11px;font-weight: 500}
    .inaugurated-text strong{font-size: 12px;}
}

/*=======Header Section end===========*/




/*================Menu Section===================*/
/* overlay */
.overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:998;
    backdrop-filter:blur(2px);
}

.overlay.show{
    opacity:1;
    visibility:visible;
}

/* menu_rw */

.menu_sec{background:#666;}
.menu_rw{
    position:relative;
    z-index:999;
}

.navbar{
    max-width:100%;
    padding: 0px;
}

/* desktop menu */
.menu{
    list-style:none;
    display:flex;
    padding:0;
    margin:0;
}

.menu li{
    position:relative;
    border-bottom: 1px solid #24962b;
}

.menu li a{
    color:#fff;
    text-decoration:none;
    display:block;
    padding:12px 25px;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    transition:all .35s ease;
    border-right:1px solid rgba(255,255,255,.15);
}

.menu li:hover > a{
    background:#42b549;
}


/* dropdown */
ul.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    list-style:none;
    background:#42b549;
    margin:0;
    padding-left:0;
    border-radius:0 0 8px 8px;
    box-shadow:
    0 8px 20px rgba(0,0,0,.10),
    0 18px 40px rgba(0,0,0,.12);
    opacity:0;
    visibility:hidden;
    transform:translateY(25px) scale(.97);

    transform-origin:top center;

    transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.23,1,.32,1),
    visibility .35s;
}


/* show dropdown */
.menu li:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0) scale(1);
}


/* dropdown items */
.dropdown li a{
    border:none;
    text-transform:none;
    padding:12px 25px;
    font-size:15px;
    font-weight:500;
    transition:all .35s cubic-bezier(.23,1,.32,1);
}


/* item hover animation */
.dropdown li a:hover{
    background:#15476f;
    padding-left:38px;
}
.dropdown li a.active{background: #15476f;border: 1px solid #118244; border-radius:0 0 8px 8px;}

/* hamburger */
.hamburger{
    display:none;

    width:34px;

    cursor:pointer;

    position:absolute;

    top:18px;
    right:20px;

    z-index:1001;

    background:#000;

    padding:5px;
}


.hamburger span{
    display:block;
    height:2px;
    margin:6px 0;
    background:#fff;
    border-radius:10px;
    transition:.35s;
}



/* mobile */
@media(max-width:991px){

    .hamburger{
        display:block;
        position:fixed;
        top:15px;
        right: 15px;
        border-radius: 3px;
        width: 42px;
        background: #085da8;
    }



    .menu{
        position:fixed;

        top:0;
        left:-326px;

        width:320px;
        height:100vh;

        overflow:auto;

        background:#4f4f4f;

        display:block;

        transition:.45s cubic-bezier(.23,1,.32,1);

        box-shadow:8px 0 40px rgba(0,0,0,.25);

        z-index:999;
    }


    .menu.show{
        left:0;
    }


    .menu li a{
        border:none;

        border-bottom:1px solid rgba(255,255,255,.08);

        padding:18px 25px;

        font-size:15px;
    }


    .dropdown{
        position:static;

        opacity:1;
        visibility:visible;

        transform:none;

        display:none;

        min-width:100%;

        border-radius:0;

        box-shadow:none;

        background:#42b549;
    }


    .menu li.mobile-open .dropdown{
        display:block;
        animation:slideDown .35s ease;
        z-index: 99;
    }


    .menu li.has-dropdown > a{
        position:relative;
    }


    .menu li.has-dropdown > a:after{
        content:"+";

        position:absolute;

        right:25px;

        font-size:20px;
    }

}


/* mobile dropdown animation */
@keyframes slideDown{

    from{
        opacity:0;
        transform:translateY(-15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*================Menu Section End===================*/

/*=================slider section ===================*/

.slider-wrap{position:relative;width:100%;height:420px;overflow:hidden;background:#111}

.slide{position:absolute;inset:0;opacity:0;transition:opacity 0.9s ease;z-index:1}
.slide.active{opacity:1;z-index:2}

.slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform 6s ease;transform:scale(1.08)}
.slide.active .slide-bg{transform:scale(1)}

.slide-overlay{position:absolute;inset:0;background:linear-gradient(to right,rgba(0,0,0,0.2) 38%,rgba(0,0,0,0.1))}

.slide-content{position:absolute;top:50%;left:64px;transform:translateY(-50%);max-width:550px;z-index:3}

.slide-tag{background:#61ac46;color:#fff;font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;padding:5px 14px;border-radius:3px;margin-bottom:16px;opacity:0;transform:translateY(18px);transition:opacity 0.5s ease 0.1s,transform 0.5s ease 0.1s; }
.slide-content h2.blue{display:inline-block;background:rgba(9,72,129, 0.5);color:#fff;font-size:28px;font-weight:700;line-height:1.25;margin-bottom:14px;opacity:0;transform:translateY(22px);transition:opacity 0.55s ease 0.25s,transform 0.55s ease 0.25s;padding:12px 15px;border-radius: 3px;}
.slide-content h2.green{display:inline-block;background:rgba(97,172,70, 0.5);color:#fff;font-size:28px;font-weight:700;line-height:1.25;margin-bottom:14px;opacity:0;transform:translateY(22px);transition:opacity 0.55s ease 0.25s,transform 0.55s ease 0.25s;padding:12px 15px;border-radius: 3px;}
.slide-content h2.skyblue{display:inline-block;background:rgba(30,165,222, 0.5);color:#fff;font-size:28px;font-weight:700;line-height:1.25;margin-bottom:14px;opacity:0;transform:translateY(22px);transition:opacity 0.55s ease 0.25s,transform 0.55s ease 0.25s;padding:12px 15px;border-radius: 3px;}
.slide-content h2.alternate{display:inline-block;background:rgba(17,130,68, 0.5);color:#fff;font-size:28px;font-weight:700;line-height:1.25;margin-bottom:14px;opacity:0;transform:translateY(22px);transition:opacity 0.55s ease 0.25s,transform 0.55s ease 0.25s;padding:12px 15px;border-radius: 3px;}


.slide-content p{color:rgba(255,255,255, 1);font-size:24px;line-height:1.3;margin-bottom:24px;opacity:0;transform:translateY(22px);transition:opacity 0.55s ease 0.4s,transform 0.55s ease 0.4s}
/* BUTTON */
.btn-read{
    position:relative;
    overflow:hidden;
    padding:12px 15px;
    border:none;
    border-radius:4px;
    cursor:pointer;
    color:#fff;
    font-weight:700;
    font-size:.82rem;
    letter-spacing:.08em;
    text-transform:uppercase;

    display:inline-block;
    text-decoration:none;

    transition:.35s ease;
}


/* GREEN */
.btn-read.drakgreen{
    background:#61ac46;
}

.btn-read.drakgreen:hover{
    background:#1f8b39;
}


/* BLUE */
.btn-read.blue{
    background:#094881;
}

.btn-read.blue:hover{
    background:#0b5fa8;
}


/* ORANGE */
.btn-read.skyblue{
    background:#1ea5de;
}

.btn-read.skyblue:hover{
    background:#25b6e8;
}


/* RED */
.btn-read.alternate{
    background:#118244;
}

.btn-read.alternate:hover{
    background:#1a914d;
}


/* LIGHT SWEEP */
.btn-read::before{
    content:'';
    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-25deg);
}


/* HOVER EFFECT */
.btn-read:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.btn-read:hover::before{
    animation:sweep .7s ease;
}


/* ANIMATION */
@keyframes sweep{
    from{
        left:-120%;
    }
    to{
        left:180%;
    }
}

.slide.active .slide-tag,
.slide.active h2,
.slide.active p,
.slide.active .btn-read{opacity:1;transform:translateY(0)}

.chevron-btn{position:absolute;top:50%;transform:translateY(-50%);z-index:10;width:50px;height:50px;background:rgba(255,255,255,0.1);border:1.5px solid rgba(255,255,255,0.35);border-radius:6px;display:flex;align-items:center;justify-content:center;cursor:pointer;transition:background 0.2s,border-color 0.2s,transform 0.15s}
.chevron-btn:hover{background:rgba(255,255,255,0.22);border-color:rgba(255,255,255,0.7);transform:translateY(-50%) scale(1.06)}
.chevron-btn svg{width:24px;height:24px;stroke:#fff;stroke-width:2.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
.chevron-left{left:-10px}
.chevron-right{right:-10px}

.dots{position:absolute;bottom:20px;left:50%;transform:translateX(-50%);display:flex;gap:8px;z-index:10}
.dot{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,0.35);border:none;cursor:pointer;padding:0;transition:background 0.3s,width 0.3s,border-radius 0.3s}
.dot.active{background:#61ac46;width:24px;border-radius:4px}

.progress-bar{position:absolute;bottom:0;left:0;height:3px;background:#61ac46;z-index:10;width:0;transition:none}
.progress-bar.running{transition:width 4.5s linear;width:100%}

/*=================Quicktab section ===================*/

.quicktab{}

.quicktab ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #1d6834;
}

.quicktab li {
  float: left;
  padding:0px;
}

.quicktab li a {
    text-decoration: none;
    font-size:16px;
    font-weight: 400;
    padding: 15px 26px;
    text-align: left;
    display: block;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff!important;
}
.quicktab  ul a span {
    font-size: 18px;
    display: block;
    font-weight: 600;
}

.quicktab li a:hover {
  color:#d4e7f6 !important;
}

.rawmectab{background:#3ba649 url(../img/rwm.svg) center right no-repeat;
    width: 40%;position: relative;}
.rawmectab:before{
   content: "";
    position: absolute;
    right: -14px;
    top: 40%;
    margin-top: -7px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #3ba649;
    z-index: 9; 
}

.liwtab{background:#1fa6df url(../img/liwp.svg) center right no-repeat;;
    width: 29.33333%;position: relative;} 
.liwtab:before{
   content: "";
    position: absolute;
    right: -14px;
    top: 40%;
    margin-top: -7px;
    border-top: 14px solid transparent;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #1fa6df;
    z-index: 9; 
}

.laetab{background:#1d6834 url(../img/laep.svg) center right no-repeat;;
    width: 29.33333%;} 


/*=======about us=======================*/
.about{padding: 80px 0px;}
.about_cont{}
.about_cont h2{color: #686868;font-size: 26px;font-weight: 600;margin-bottom: 25px;}
.about_cont p{}   
.about .aboutimg{}
.about .aboutimg img{border-radius: 20px;box-shadow:0 15px 40px rgba(0,0,0,0.55);}


.video-thumb{
    width:460px;
    border-radius:12px;
    cursor:pointer;
    box-shadow:0 10px 26px rgba(0,0,0,0.2);
    transition:0.3s;
}
.video-thumb:hover{
    transform:scale(1.05);
}

/* Overlay */
.lightbox{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999;
}

/* Video box */
.lightbox-content{
    position:relative;
    width:90%;
    max-width:800px;
    aspect-ratio:16/9;
    background:#000;
    border-radius:12px;
    overflow:hidden;
}

/* iframe */
.lightbox-content iframe{
    width:100%;
    height:100%;
}

/* Close button */
.close-btn{
    position:absolute;
    top:10px;
    right:10px;
    font-size:32px;
    color:#fff;
    border:none;
    background:none;
    cursor:pointer;
}

/* scroll freeze class */
.no-scroll{
    overflow:hidden !important;
}


/*========lazy loads=======*/

/*.lazy-blur {
  width: 100%;
  height: auto;
  filter: blur(20px);
  transition: filter 0.6s ease;
}


.lazy-blur.loaded {
  filter: blur(0);
}*/


/*============business section============*/

.business_section .heading{}
.business_section .heading h3{font-size: 26px;color: #fff;font-weight: 600;margin-bottom: 35px;text-transform: uppercase;}
.business_section {
      background: #094881;
      padding: 80px 0px 80px;
      display: flex;
      align-items: center;
      width: 100%;
      text-align: center;
    }

    /* Heading */
    .business_section h1 {
      
      color: #fff;
      letter-spacing: -1px;
    }

    .business_section .section-label {
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #f0c060;
      font-weight: 600;
    }

    /* Card Wrapper */
    .business_section .img-card {
      position: relative;
      border-radius: 10px;
      overflow: hidden;
      cursor: pointer;
      width: 100%;
      height: 320px;
      box-shadow: 0 8px 40px rgba(0,0,0,0.5);
      background: #111;
      transition: box-shadow 0.45s ease;
    }

    .business_section .img-card:hover {
      box-shadow: 0 24px 60px rgba(0,0,0,0.7);
    }

    /* Image */
    .business_section .img-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transform: scale(1);
      transform-origin: center center;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1), filter 0.6s ease;
      filter: brightness(0.88) saturate(1.1);
    }

    .business_section .img-card:hover img {
      transform: scale(1.1);
      filter: brightness(1) saturate(1.25);
    }

    /* Gradient Overlay */
    .business_section .img-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,5,30,0.92) 0%, rgba(10,5,30,0.55) 40%, rgba(10,5,30,0) 70%);
      transition: background 0.45s ease;
    }

    .business_section .img-card:hover .img-overlay {
      background: linear-gradient(to top, rgba(10,5,30,0.97) 0%, rgba(10,5,30,0.6) 50%, rgba(10,5,30,0) 75%);
    }

    /* Text Block */
    .business_section .img-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 28px 28px 32px;
      transform: translateY(0);
      transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .business_section .img-card:hover .img-text {
      transform: translateY(-8px);
    }

    /* Badge Tag */
    .business_section .img-text .badge-tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #f0c060;
      background: rgba(240,192,96,0.12);
      border: 1px solid rgba(240,192,96,0.35);
      border-radius: 40px;
      padding: 3px 12px;
      margin-bottom: 10px;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
    }

    .business_section .img-card:hover .badge-tag {
      opacity: 1;
      transform: translateY(0);
    }

    /* Title */
    .business_section .img-text h3 {
      font-size: 1.3rem;
      color: #fff;
      margin: 0 0 8px;
      line-height: 1.25;
      text-shadow: 0 2px 12px rgba(0,0,0,0.6);
      transform: translateY(4px);
      transition: transform 0.4s ease;
    }

    .business_section .img-card:hover h3 {
      transform: translateY(0);
    }

    /* Description */
    .business_section .img-text p {
      font-size: 0.875rem;
      color: rgba(255,255,255,0.75);
      margin: 0 0 16px;
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.4s ease 0.05s;
    }

    .business_section .img-card:hover p {
      max-height: 80px;
      opacity: 1;
    }

    /* CTA Button */
    .business_section .img-text .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #0c0c14;
      background: #f0c060;
      border: none;
      border-radius: 50px;
      padding: 8px 20px;
      opacity: 0;
      transform: translateY(14px);
      transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s, background 0.2s;
    }

    .business_section .img-text .btn-cta:hover {
      background: #ffd070;
    }

    .business_section .img-card:hover .btn-cta {
      opacity: 1;
      transform: translateY(0);
    }

    /* Arrow Icon */
    .business_section .btn-cta svg {
      transition: transform 0.3s ease;
    }

    .business_section .btn-cta:hover svg {
      transform: translateX(4px);
    }

    /* Card Number */
    .business_section .card-num {
      position: absolute;
      top: 20px;
      right: 20px;
      
      font-size: 1.6rem;
      color: rgba(255,255,255,0.15);
      line-height: 1;
      transition: color 0.3s ease;
    }

    .business_section .img-card:hover .card-num {
      color: rgba(240,192,96,0.35);
    }

    /* Shimmer Effect */
    .business_section .img-card::after {
      content: '';
      position: absolute;
      top: -60%;
      left: -60%;
      width: 50%;
      height: 220%;
      background: linear-gradient(105deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 60%);
      transform: rotate(15deg) translateX(-100%);
      transition: transform 0.6s ease;
      pointer-events: none;
    }

    .business_section .img-card:hover::after {
      transform: rotate(15deg) translateX(500%);
    }



/*============testimonials section============*/
.testimonials {background: url(../img/co_located_bg.webp) no-repeat;background-attachment: fixed;background-size: cover;background-position: center;padding: 80px 0px;}
.testimonials .heading{text-align: center;}
.testimonials .heading h4{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 25px;text-transform: uppercase;}
.testimonials .testi-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #e0e0e0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  display: flex; flex-direction: column; height: 100%
}
.testimonials .testi-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
  transform: translateY(-6px) scale(1.02);
  border-color: #61ab45;
}
.testimonials .testi-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #222;
}
.testimonials .testi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.75);
}
.testimonials .testi-card:hover .testi-thumb img {
  transform: scale(1.08);
  filter: brightness(0.55);
}
.testimonials .yt-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 45px;
  height: 45px;
  background: #ff0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(255,0,0,0.4);
  z-index: 2;
}
.testimonials .testi-card:hover .yt-btn {
  transform: translate(-50%, -50%) scale(1.2);
  background: #cc0000;
  box-shadow: 0 4px 20px rgba(255,0,0,0.6);
}
.testimonials .yt-btn svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  margin-left: 3px;
}
.testimonials .testi-label {
  padding: 10px 12px;
  font-size: 13.5px;
  font-weight: 600;
  color: #222;
  text-align: center;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  transition: color 0.3s ease;
  flex-grow: 1; display: flex; align-items: center; justify-content: center
}
.testimonials .testi-card:hover .testi-label {
  color: #103c61;
}
.testimonials .overlay-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 8px 10px 6px;
  background: linear-gradient(transparent, rgba(0,0,0,0.55));
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2;
}
.testimonials .testi-card:hover .overlay-text {
  opacity: 1;
  transform: translateY(0);
}



/*============voices section============*/
.voices {padding: 80px 0px;position: relative;overflow: visible;}
.voices .heading{text-align: center;}
.voices .heading h4{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 15px;text-transform: uppercase;}
.voices .heading h4 span{color: #61ab45}
.voices p{color: #686868;font-size: 17px;font-weight: 600;margin-bottom: 25px;}
.voices .heading2 h4{font-size: 22px;color: #103c61;font-weight: 600;margin-bottom: 15px;text-transform: uppercase;text-align: center;}
.voices .heading2 h4 span{color: #61ab45}
/* ── Owl wrapper ── */
    .voices-owl-wrap {
      position: relative;
      padding: 12px 0 20px;
    }

    /* ── Equal height fix for Owl Carousel ── */
    .owl-carousel .owl-stage {
      display: flex !important;
      align-items: stretch !important;
    }
    .owl-carousel .owl-item {
      display: flex !important;
      flex-direction: column;
    }
    .owl-carousel .owl-item > * {
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    /* ── Card ── */
    .voice-card {
      background: #ffffff;
      border: 1.5px solid #e0ecf5;
      border-radius: 18px;
      padding: 28px 22px 26px;
      box-shadow: 0 8px 32px rgba(26,92,138,0.10);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      transition: box-shadow 0.35s, border-color 0.35s, transform 0.35s;
      margin: 8px 10px 20px;
      animation: cardRise 0.55s ease both;
    }
    .voice-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(26,92,138,0.03) 0%, transparent 60%);
      border-radius: inherit;
      pointer-events: none;
    }
    .voice-card::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%;
      height: 3px;
      background: linear-gradient(90deg, transparent, #c9a84c, transparent);
      border-radius: 0 0 4px 4px;
      transition: left 0.55s ease;
    }
    .voice-card:hover::after { left: 130%; }
    .voice-card:hover {
      box-shadow: 0 20px 56px rgba(26,92,138,0.22);
      border-color: #61ab45;
      transform: translateY(-6px) scale(1.018);
    }

    /* ── Avatar ── */
    .voice-img-wrap {
      width: 100%;
      height: 220px;
      border-radius: 15px;
      border: 3px solid #e0ecf5;
      overflow: hidden;
      margin-bottom: 18px;
      position: relative;
      transition: border-color 0.35s, box-shadow 0.35s;
      flex-shrink: 0;
    }
    .voice-card:hover .voice-img-wrap {
      border-color: #c9a84c;
      box-shadow: 0 0 0 5px rgba(201,168,76,0.18);
    }
    .voice-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .voice-card:hover .voice-img-wrap img { transform: scale(1.08); }
    .voice-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle, rgba(26,92,138,0.12) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.35s;
      border-radius: 50%;
    }
    .voice-card:hover .voice-img-wrap::after { opacity: 1; }

    /* ── Text ── */
    .voice-body {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      width: 100%;
    }
    .voice-name {
      
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a5c8a;
      margin-bottom: 6px;
      line-height: 1.25;
      transition: color 0.3s;
      word-break: break-word;
    }
    .voice-card:hover .voice-name { color: #2980b9; }
    .voice-role {
      font-size: 0.78rem;
      font-weight: 500;
      color: #0d1b2a;
      margin-bottom: 4px;
      letter-spacing: 0.6px;
    }
    .voice-org {
      font-size: 0.75rem;
      color: #6b8ba4;
      font-weight: 300;
    }
    .voice-tag {
      display: inline-block;
      margin-top: 12px;
      padding: 3px 12px;
      background: linear-gradient(90deg, #f5e9cc, #f0d98a);
      border-radius: 20px;
      font-size: 0.68rem;
      font-weight: 600;
      color: #7a5c10;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(6px);
      transition: opacity 0.35s 0.05s, transform 0.35s 0.05s;
    }
    .voice-card:hover .voice-tag {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Owl Nav Buttons ── */
    .owl-theme .owl-nav [class*='owl-'] {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      margin: 0;
      width: 44px;
      height: 44px;
      border-radius: 50% !important;
      background: #61ab45 !important;
      color: #fff !important;
      font-size: 1.2rem !important;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(26,92,138,0.25);
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      line-height: 1;
    }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: #103c61 !important;
      color: #fff !important;
      box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    }
    .owl-theme .owl-nav .owl-prev {
      left: -54px;
    }
    .owl-theme .owl-nav .owl-next {
      right: -54px;
    }

    /* Owl Dots */
    .owl-theme .owl-dots {
      margin-top: 22px !important;
    }
    .owl-theme .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      background: #c9d9e8;
      border-radius: 50%;
      transition: background 0.3s, width 0.3s;
      margin: 0 4px;
    }
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
      background: #1a5c8a;
      width: 24px;
      border-radius: 4px;
    }

    /* Outer wrapper to show nav */
    .voices-carousel-outer {
      padding: 0 60px;
    }

    @keyframes cardRise {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 575px) {
      .voices-carousel-outer { padding: 0 40px; }
      .owl-theme .owl-nav .owl-prev { left: -38px; }
      .owl-theme .owl-nav .owl-next { right: -38px; }
    }



    /*================Key Topic===========*/
    .key_topics{background: url(../img/testiminial_bg.webp) no-repeat;background-attachment: fixed;background-size: cover;background-position: center;padding: 80px 0px;}
    .key_topics .heading h4{font-size: 26px;color: #fff;font-weight: 600;margin-bottom: 15px;text-transform: uppercase;text-align: center;}
.key_topics .heading h4 span{color: #61ab45}
    .key_topics .topic-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 18px;
    }
    .key_topics .topic-icon img{min-width: 100px;}
    .key_topics .topic-icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: #fff;
      stroke-width: 1.5;
    }

    .key_topics .topic-label {
      color: #fff;
      font-size: 0.95rem;
      font-weight: 700;
      text-align: center;
      line-height: 1.45;
      margin: 0;
    }

    .key_topics .topic-card {
      padding: 20px 10px;
      text-align: center;
    }

    /* Owl dots */
    .key_topics .owl-dots {
      margin-top: 24px;
      text-align: center;
    }

    .key_topics .owl-dots .owl-dot span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(97, 171, 69,0.4);
      margin: 0px 5px;
      transition: all 0.35s ease;
    }

    .key_topics .owl-dots .owl-dot.active span,
    .key_topics .owl-dots .owl-dot:hover span {
      background: #61ab45;
      width: 28px;
      border-radius: 6px;
    }

    /* Hide nav arrows */
    .key_topics .owl-nav {
      display: none;
    }

    /* Smooth item animation */
    .key_topics .owl-item .topic-card {
      animation: fadeUp 0.6s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }


  /*============Sponsor================*/ 
  
   .sponsors-section {
      background: #ffffff;
      padding: 50px 0px;
    }
    .sponsors-section .heading h4{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 25px;text-transform: uppercase;text-align: center;}
    .sponsors-section .heading h4 span{color: #61ab45}
    .sponsors-section .sponsor-card {
      background: #fff;
      border: 1px solid #e0e6ef;
      border-radius: 12px;
      padding: 20px 20px 30px;
      text-align: center;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      height: 100%;
    }
    .sponsors-section .sponsor-card.low_padding{padding: 30px 10px 30px;}
    .sponsors-section .sponsor-card:hover {
      box-shadow: 0 8px 28px rgba(26, 111, 186, 0.15);
      transform: translateY(-4px);
    }


    .sponsors-section .sponsor-label {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #1a6fba;
      margin-bottom:15px;
      display: block;
    }

    /* Different accent colors per tier */
    .sponsors-section .sponsor-card.platinum .sponsor-label { color: #9b7d2f; }
    .sponsors-section .sponsor-card.lanyard  .sponsor-label { color: #c0392b; }
    .sponsors-section .sponsor-card.gold     .sponsor-label { color: #d4a017; }
    .sponsors-section .sponsor-card.main     .sponsor-label { color: #1a6fba; }

    .sponsors-section .sponsor-card.platinum { border-top: 3px solid #9b7d2f; }
    .sponsors-section .sponsor-card.lanyard  { border-top: 3px solid #c0392b; }
    .sponsors-section .sponsor-card.gold     { border-top: 3px solid #d4a017; }
    .sponsors-section .sponsor-card.main     { border-top: 3px solid #1a6fba; }

    .sponsors-section .logo-wrapper {
      height: 110px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .sponsors-section .logo-wrapper img {
      max-width: 100%;
      object-fit: contain;
      filter: grayscale(0%);
      transition: filter 0.3s;
    }

    .sponsors-section .sponsor-card:hover .logo-wrapper img {
      filter: grayscale(0%) saturate(1.2);
    }

    .sponsors-section .section-title {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #444;
      position: relative;
      display: inline-block;
    }

    .sponsors-section .section-title::after {
      content: '';
      display: block;
      height: 3px;
      width: 60px;
      background: #1a6fba;
      margin: 8px auto 0;
      border-radius: 2px;
    } 



/*============Sponsor================*/ 
  
   .supporter-section {
      background: #ffffff;
      padding: 0px 0px;
    }
    .supporter-section .heading h4{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 25px;text-transform: uppercase;text-align: center;}
    .supporter-section .heading h4 span{color: #61ab45}
    .supporter-section .sponsor-card {
      background: #fff;
      border: 1px solid #e0e6ef;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      height: 100%;
    }

    .supporter-section .sponsor-card:hover {
      box-shadow: 0 8px 28px rgba(26, 111, 186, 0.15);
      transform: translateY(-4px);
    }


    .supporter-section .sponsor-label {
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: #1a6fba;
      margin-bottom: 22px;
      display: block;
    }

    /* Different accent colors per tier */
    .supporter-section .sponsor-card.main     .sponsor-label { color: #1a6fba; }

    .supporter-section .sponsor-card.main     { border-top: 2px solid #ccc; }

    .supporter-section .logo-wrapper {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .supporter-section .logo-wrapper img {
      max-height: 100px;
      max-width: 100%;
      min-width: 150px;
      object-fit: contain;
      filter: grayscale(0%);
      transition: filter 0.3s;
    }

    .supporter-section .sponsor-card:hover .logo-wrapper img {
      filter: grayscale(0%) saturate(1.2);
    }

    .supporter-section .section-title {
      font-size: 1.1rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #444;
      position: relative;
      display: inline-block;
    }

    .supporter-section .section-title::after {
      content: '';
      display: block;
      height: 3px;
      width: 60px;
      background: #1a6fba;
      margin: 8px auto 0;
      border-radius: 2px;
    }     



    /*========Exhibitor=========*/

    .exhibitors-section {
      background: #ffffff;
      padding: 50px 0px 50px;
    }
    .exhibitors-section .heading h4{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 25px;text-transform: uppercase;text-align: center;}
    .exhibitors-section .heading h4 span{color: #61ab45}
    

    /* 5-column layout for large screens */
    @media (min-width: 992px) {
      .col-lg-fifth {
        flex: 0 0 auto;
        width: 20%;
      }
    }

    .exhibitors-section .exhibitor-card {
      background: #fff;
      border: 1px solid #ccc;
      border-top: 1px solid #ccc;
      border-radius: 12px;
      padding: 24px 16px 18px;
      text-align: center;
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      height: 100%;
    }

    .exhibitors-section .exhibitor-card:hover {
      box-shadow: 0 8px 28px rgba(26, 111, 186, 0.15);
      transform: translateY(-4px);
    }

    .exhibitors-section .exhibitor-number {
      font-size: 0.68rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #1a6fba;
      margin-bottom: 14px;
      display: block;
    }

    .exhibitors-section .logo-wrapper {
      height: 100px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
    }

    .exhibitors-section .logo-wrapper img {
      max-height: 90px;
      max-width: 100%;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .exhibitors-section .exhibitor-card:hover .logo-wrapper img {
      transform: scale(1.05);
    }

    .exhibitors-section .exhibitor-name {
      font-size: 0.82rem;
      font-weight: 700;
      color: #333;
      margin: 0;
      line-height: 1.4;
    }

    .exhibitors-section .exhibitor-sub {
      font-size: 0.72rem;
      font-weight: 400;
      color: #888;
      margin-top: 4px;
    }



    /* ── Main Footer ── */
    .site-footer {
      background: linear-gradient(135deg, #ddeef8 0%, #eaf6fc 40%, #f0f8ff 100%);
      padding: 50px 0 30px;
      border-top: 3px solid #1a9bbd;
    }

    /* Section headings */
    .footer-heading {
      color: #0e3e63;
      font-size: 1.1rem;
      font-weight: 600;
      letter-spacing: 0.03em;
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .footer-heading i { font-size: 1.15rem; }

    /* Dotted divider under heading */
    .footer-divider {
      border: none;
      border-top: 1px dashed #0e3e63;
      margin: 0 0 20px;
      opacity: 1;
    }

    /* Logo column */
    .footer-logo-wrap img {
      max-width: 190px;
      height: auto;
    }
    /* Fallback text logo if image not available */
    .logo-text {
      display: inline-block;
    }
    .logo-text span { color: #1a9bbd; }

    /* Quick Links */
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 10px;
    }
    .footer-links a {
      color: #0d2b55;
      text-decoration: none;
      font-size: 0.97rem;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s, gap 0.2s;
    }
    .footer-links a i {
      color: #0e3e63;
      font-size: 1rem;
    }
    .footer-links a:hover {
      color: #1a9bbd;
      gap: 12px;
    }

    /* Head Office */
    .footer-contact p {
      font-size: 0.95rem;
      color: #0d2b55;
      margin-bottom: 10px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
      line-height: 1.5;
    }
    .footer-contact p i {
      color: #0e3e63;
      font-size: 1rem;
      margin-top: 2px;
      flex-shrink: 0;
    }
    .footer-contact a {
      color: #0d2b55;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-contact a:hover { color: #1a9bbd; }

    /* SEO tag strip */
    .footer-tags {
      font-size: 0.82rem;
      color: #4a6080;
      padding: 12px 0;
      border-top: 1px solid #c8dff0;
      border-bottom: 1px solid #c8dff0;
      margin-top: 30px;
      line-height: 1.7;
    }
    .footer-tags a {
      color: #4a6080;
      text-decoration: none;
    }
    .footer-tags a:hover { color: #1a9bbd; }

    /* ── Bottom Bar ── */
    .footer-bottom {
      background: #fff;
      padding: 14px 0;
    }
    .footer-bottom p {
      font-size: 0.85rem;
      color: #555;
      margin: 0;
    }
    .footer-bottom a {
      color: #555;
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-bottom a:hover { color: #1a9bbd; }

    /* Social icons */
    .social-icons a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 5px;
      color: #fff;
      font-size: 0.9rem;
      text-decoration: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .social-icons a:hover { opacity: 0.85; transform: translateY(-2px); }
    .social-fb  { background: #1877f2; }
    .social-tw  { background: #1da1f2; }
    .social-li  { background: #0a66c2; }

    /* Responsive tweaks */
    @media (max-width: 767px) {
      .footer-col { margin-bottom: 30px; }
      .footer-tags { text-align: center; }
      .footer-bottom .d-flex { flex-direction: column; gap: 12px; align-items: center !important; text-align: center; }
    }


/* ══════════════════════════════════
       PROGRESS BAR — top fixed line
    ══════════════════════════════════ */
    #scroll-progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      width: 0%;
      background: #61ab45;
      z-index: 9999;
      transition: width 0.1s linear;
      border-radius: 0 2px 2px 0;
    }

    /* ══════════════════════════════════
       BACK TO TOP BUTTON
    ══════════════════════════════════ */
    #back-to-top {
      position: fixed;
      bottom: 5px;
      right: 5px;
      width: 45px;
      height: 45px;
      background: #61ab45;
      border-radius: 3px;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2px;

      /* hidden by default */
      opacity: 0;
      pointer-events: none;
      transform: translateY(14px) scale(0.92);
      transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
      z-index: 9998;
    }

    #back-to-top.visible {
      opacity: 1;
      pointer-events: all;
      transform: translateY(0) scale(1);
    }

    #back-to-top:hover {
      background: #0C447C;
    }

    #back-to-top:active {
      transform: scale(0.93);
    }

    #back-to-top .bi {
      color: #ffffff;
      font-size: 20px;
      line-height: 1;
    }

    #back-to-top .btt-pct {
      color: #B5D4F4;
      font-size: 10px;
      font-weight: 600;
      line-height: 1;
      letter-spacing: 0.4px;
    }    




.slider-wrap-inner{position:relative;width:100%;height:300px;overflow:hidden;background:#111}

.slider-wrap-inner .slide{position:absolute;inset:0;opacity:0;transition:opacity 0.9s ease;z-index:1}
.slider-wrap-inner .slide.active{opacity:1;z-index:2}

.slider-wrap-inner .slide-bg{position:absolute;inset:0;background-size:cover;background-position:center;transition:transform 6s ease;transform:scale(1.08)}
.slider-wrap-inner .slide.active .slide-bg{transform:scale(1)}

.slider-wrap-inner .slide-overlay{position:absolute;inset:0;background:rgba(0,0,0,0.3)}

.slider-wrap-inner .slide-content{position:absolute;top:80%;left:60px;transform:translateY(-50%);max-width:550px;z-index:3}

.slider-wrap-inner .slide-tag{background:#61ac46;color:#fff;font-size:0.72rem;font-weight:700;letter-spacing:0.12em;text-transform:uppercase;padding:5px 14px;border-radius:3px;margin-bottom:16px;opacity:0;transform:translateY(18px);transition:opacity 0.5s ease 0.1s,transform 0.5s ease 0.1s; }
.slider-wrap-inner .slide-content h1{display:inline-block;color:#fff;font-size:28px;font-weight:700;line-height:1;padding:12px 0px 0px;}


/*===========breadcrum=========*/

.breadcrm .breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-family: sans-serif;
  padding: 10px 10px;
  border-radius: 5px;
  background: linear-gradient(to right, rgba(255, 255, 255, .2) 0%, transparent 100%);
}

.breadcrm .breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.breadcrm .breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.breadcrm .breadcrumb .sep {
  color: #fff;
}

.breadcrm .breadcrumb .current {
  color: #fff;
  font-weight: 500;
}



/*=======inner us=======================*/
.inner{padding: 80px 0px;}
.inner_cont{}
.inner_cont h2{color:#0e3e63!important;font-size: 26px;font-weight: 600;margin-bottom: 25px;}
.inner_cont p{}   
.iconlist {
    padding-left: 0;
    margin-left: 0
}
.iconlist ol{}
.iconlist ol li a,
.iconlist ol li a:hover {
    text-decoration: none;
    font-size: 16px;
}

.iconlist li:before {
    content: "";
    position: absolute;
    left: -2em;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background: url(../img/rawmec.svg) center center no-repeat;
    background-size: contain;
    transform-origin: center center;
    transition: .3s;
}

li.blue {
    border-right: 3px solid #0d4a71 !important;
}

.iconlist li {
    position: relative;
    text-align: left;
    background: #f7f7f7;
    border: none;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(142, 187, 64, .2);
    border-right: 3px solid #7aa332;
    list-style: none;
    margin-bottom: 8px;
    transition: all .4s ease;
}

/* Main hover effect */
.iconlist li:hover {
    cursor: pointer;
    background: #7aa332;
    color: #fff;
    transform: translateX(1px);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

/* Icon self rotation */
.iconlist li:hover:before {
    animation: rotateSelf 1s linear infinite;
}

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

/* Text animation */
.iconlist li a {
    text-align: left !important;
    display: inline-block;
    color: #000;
    transition: all .4s ease;
}

.iconlist li:hover a {
    color: #fff;
    transform: translateX(6px);
    letter-spacing: .5px;
    text-shadow: 0 2px 8px rgba(122,163,50,.2);
}

.iconlist > li [class*="fa-"],
.iconlist > li [class^="fa-"] {
    position: absolute;
    left: -1.75em;
    top: 15px;
    width: 14px;
    border-radius: 50%;
}

/*========Icon List 2======*/
.iconlist2 {
    padding-left: 0;
    margin-left: 0
}
.iconlist2 ol{}
.iconlist2 ol li a,
.iconlist2 ol li a:hover {
    text-decoration: none;
    font-size: 16px;
}

.iconlist2 li:before {
    content: "";
    position: absolute;
    left: -2em;
    top: 50%;
    width: 28px;
    height: 28px;
    margin-top: -14px;
    background: url(../img/rawmec.svg) center center no-repeat;
    background-size: contain;
    transform-origin: center center;
    transition: .3s;
}

li.blue {
    border-right: 3px solid #0d4a71 !important;
}

.iconlist2 li {
    font-size: 13px;
    position: relative;
    text-align: left;
    background: #f7f7f7;
    border: none;
    padding: 15px 10px;
    border-bottom: 1px solid rgba(142, 187, 64, .2);
    border-right: 3px solid #7aa332;
    list-style: none;
    margin-bottom: 8px;
    transition: all .4s ease;
}
.iconlist2 li span {
    display: inline;
    float: right;
    color: #1d6834;
    font-weight: 600;
}
/* Main hover effect */
.iconlist2 li:hover {
    cursor: pointer;
    background: #7aa332;
    color: #fff;
    transform: translateX(1px);
    box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

/* Icon self rotation */
.iconlist2 li:hover:before {
    animation: rotateSelf 1s linear infinite;
}

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

/* Text animation */
.iconlist2 li a {
    text-align: left !important;
    display: inline-block;
    color: #000;
    transition: all .4s ease;
}

.iconlist2 li:hover a {
    color: #fff;
    transform: translateX(6px);
    letter-spacing: .5px;
    text-shadow: 0 2px 8px rgba(122,163,50,.2);
}

.iconlist2 > li [class*="fa-"],
.iconlist2 > li [class^="fa-"] {
    position: absolute;
    left: -1.75em;
    top: 15px;
    width: 14px;
    border-radius: 50%;
}

/*========sponsor logo =======*/
.sp_img { width: 100%; border: 1px solid #bbb; border-radius: 8px; overflow: hidden; background: #fff;box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); }
.sp_img.mb_20{margin-bottom: 20px;}
.sp_img .sp_header { background: #c8d87a; padding: 11px 0; text-align: center; font-size: 17px; font-weight: bold; color: #222; }
.sp_img .sp_wrap { position: relative; height: 160px; }
.sp_img .sp_slide { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; opacity: 0; transition: opacity 0.8s ease; }
.sp_img .sp_slide.active { opacity: 1; }
.sp_img .sp_type { font-size: 12px; color: #666; }
.sp_img .sp_logo { width: 200px;object-fit: contain; background: #fff}
.sp_img .sp_ph { width: 160px; height: 65px; border: 1.5px dashed #ccc; border-radius: 5px; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #bbb; }


/*=========Crads================*/

.cards-wrapper {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    flex-wrap: wrap;
  }
  .category-card {
    flex: 1;
    min-width: 200px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
    background: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }
  .category-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-4px);
  }
  .card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }
  .card-header img{max-width:35px;}
  .card-header.green { background: #4caf50;font-size: 16px;}
  .card-header.blue  { background: #29b6f6;font-size: 16px;}
  .card-header.dark  { background: #2e7d32;font-size: 16px;}
  .card-header i {
    font-size: 20px;
    flex-shrink: 0;
  }
  .card-body {
    padding: 8px 0 8px 0;
    background: #fff;
  }
  .card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, padding-left 0.25s ease;
    position: relative;
  }
  .card-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #aaa;
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
  }
  .card-item:hover {
    background: #f1f8e9;
    border-color: #4caf50;
    padding-left: 20px;
  }
  .card-item:hover::before {
    background: #4caf50;
    transform: scale(1.4);
  }
  .card-header.blue ~ .card-body .card-item:hover {
    background: #e1f5fe;
    border-color: #29b6f6;
  }
  .card-header.blue ~ .card-body .card-item:hover::before {
    background: #29b6f6;
  }
  .card-header.dark ~ .card-body .card-item:hover {
    background: #e8f5e9;
    border-color: #2e7d32;
  }
  .card-header.dark ~ .card-body .card-item:hover::before {
    background: #2e7d32;
  }
  .line-connector {
    position: absolute;
    left: -12px;
    top: 50%;
    width: 12px;
    height: 1px;
    background: #ccc;
    transform: translateY(-50%);
  }


  /*Conference*/

.conf-head h3{background:#085da8;color:#fff;padding:15px 14px;font-size:18px;font-weight:500;margin:0;text-align: center;}
.nav-tabs{display:flex;list-style:none;border-bottom:1px solid #1e6f9f;margin:0;padding:0}
.nav-tabs li a{display:block;padding:9px 18px;font-size:16px;font-weight:600;color:#333;background:#e8e8e8;border:1px solid #ccc;border-bottom:none;cursor:pointer;text-decoration:none}
.nav-tabs li.active a{background:#61ac46;color:#fff;border-color:#61ac46}
.tab-content .tab-pane{display:none}
.tab-content .tab-pane.active{display:block}
.tbl-cnt table,.tbl-cnt2 table{width:100%;border-collapse:collapse;margin-bottom:0}
.tbl-cnt table tr td,.tbl-cnt2 table tr td{padding:7px 10px;border:1px solid #dee2e6;vertical-align:middle;font-size:13px}
.tbl-cnt table tr:nth-child(odd) td:not([bgcolor]){background:#fff}
.tbl-cnt table tr:nth-child(even) td:not([bgcolor]){background:#f9f9f9}
td[bgcolor="#e8e8e8"]{background:#e8e8e8!important;width:80px;text-align:center;font-weight:700;font-size:12px;vertical-align:middle;padding:15px 5px!important}
.tbl-cnt2 table tr td{background:#3a9e68;color:#fff;font-weight:700;font-size:13px;text-align:center;padding:15px 10px;border:1px solid #2e8055}
.tbl-cnt2.s2 table tr td{background:#1e6f9f;border-color:#1a5f8a}
.tbl-cnt2.s3 table tr td{background:#2e8b57;border-color:#256b43}
.tbl-cnt2.s4 table tr td{background:#5e35b1;border-color:#4a2990}
.tbl-cnt2.s5 table tr td{background:#d84315;border-color:#b53610}
.tbl-cnt2.s6 table tr td{background:#00838f;border-color:#006773}
.tbl-cnt2.s7 table tr td{background:#5d4037;border-color:#4a3029}
/* table-borderless2: photo left, text right */
table.table-borderless2{width:100%;border-collapse:collapse;margin-bottom:6px}
table.table-borderless2 td{border:none!important;padding:3px 6px;vertical-align:middle;background:transparent!important}
table.table-borderless2 td.conf_img:first-child{width:64px}
table.table-borderless2 img{width:58px;height:58px;object-fit:cover;border-radius:3px;border:1px solid #ccc;display:block}
/* table-borderless: photo + name centered (for chairman/moderator and multi-speaker grid) */
table.table-borderless{width:100%;border-collapse:collapse;margin-bottom:6px}
table.table-borderless td{border:none!important;padding:4px 8px;vertical-align:top;background:transparent!important;text-align:center}
table.table-borderless td.conf_img{text-align:center}
table.table-borderless td.conf_img.width{text-align:center;width: 33.33%}
table.table-borderless img{width:70px;height:70px;object-fit:cover;border-radius:3px;border:1px solid #ccc;display:block;margin:0 auto}
.name{font-size:13px;font-weight:700;color:#222;margin:3px 0 1px;line-height:1.3}
.topic{font-size:12px;color:#444;margin:2px 0;line-height:1.4}
.name2{font-size:13px;font-weight:700;color:#222;margin:4px 0 1px;text-align:center;line-height:1.3}
.topic2{font-size:12px;color:#444;margin:0;text-align:center}
.lft{font-size:12px;font-weight:700;color:#333}
.rm8{padding:12px 0 6px;display:flex;gap:10px;flex-wrap:wrap}
.trans{display:inline-block;padding:7px 16px;border:2px solid #1e6f9f;color:#1e6f9f;font-size:12px;font-weight:700;text-decoration:none;border-radius:3px}
.trans:hover{background:#1e6f9f;color:#fff}
@media(max-width:500px){
  td[bgcolor="#e8e8e8"]{width:52px;font-size:10px;padding:5px 3px}
  table.table-borderless2 img{width:46px;height:46px}
  table.table-borderless img{width:56px;height:56px}
  .name,.name2{font-size:12px}
  .topic,.topic2{font-size:11px}
  table.table-borderless td{padding:3px 4px}
  .nav-tabs li a{padding:15px 10px;font-size:11px}
}
.sidebar{
    position: sticky;
    top: 20px;
}

.inner .heading{margin-top: 40px;}
.inner .heading h2{font-size: 26px;color: #103c61;font-weight: 600;margin-bottom: 15px;text-transform: uppercase;}
.inner .heading h2 span{color: #61ab45}

/* ===== STYLE 1: Classic Disc Bullet ===== */
.style-1{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    overflow: hidden;
}

.style-1 .col-xs-6:first-of-type .m-cnt4 {
    border-right: 1px solid #e8e8e8;
  }
  .style-1 .list4 ul li {
    position: relative;
    padding-left: 22px;
  }
  .style-1 .list4 ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: #7aa332;
    border-radius: 50%;
  }
  .m-cnt4 {
    padding: 35px 25px;
  }
   .list4 ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
  }
  .list4 ul li {
    margin-bottom: 16px;
    line-height: 1.9;
    font-size: 15px;
  }
  .list4 a {
    color: #000;
    text-decoration: none;
    position: relative;
    display: block;
    transition: color 0.1s ease, transform 0.1s ease;
}

.list4 a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background: #7aa332;
    transition: width 0.4s ease;
}

.list4 a:hover {
    color: #103c61;
    transform: translateX(5px);
}

.list4 a:hover::after {
    width: 100%;
}


.table-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    background: #fff;
    overflow: hidden;
}

.table-wrapper table {
    width: 100%;
    border-collapse: collapse;
}

.table-wrapper thead th {
    background: #7aa332;
    color: #fff;
    text-align: left;
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 600;
}

.table-wrapper thead th:first-child {
    border-radius: 10px 0 0 0;
}

.table-wrapper thead th:last-child {
    border-radius: 0 10px 0 0;
}

.table-wrapper tbody td {
    padding: 16px;
    font-size: 14.5px;
    color: #333;
    border-bottom: 1px solid #e8e8e8;
    vertical-align: middle;
}

.table-wrapper tbody td:first-child {
    font-weight: 500;
    color: #000;
}

.table-wrapper tbody tr:nth-child(even) {
    background: #eef1f4;
}

.table-wrapper tbody tr:nth-child(odd) {
    background: #f9fafb;
}

.table-wrapper tbody tr {
    transition: all 0.3s ease;
}

.table-wrapper tbody tr:hover {
    background: #e3ecf7;
}

.table-wrapper .check {
    color: #7aa332;
    font-weight: bold;
    font-size: 17px;
}

.table-wrapper .sup {
    font-size: 11px;
    vertical-align: super;
}

.table-wrapper .empty-dash {
    color: #c3c8cd;
}

/* Mobile Card Layout */
@media (max-width:768px){

    .table-wrapper{
        box-shadow:none;
        background:transparent;
        border-radius:0;
    }

    .table-wrapper table,
    .table-wrapper thead,
    .table-wrapper tbody,
    .table-wrapper th,
    .table-wrapper td,
    .table-wrapper tr{
        display:block;
        width:100%;
    }

    .table-wrapper thead{
        display:none;
    }

    .table-wrapper tbody tr{
        background:#fff !important;
        margin-bottom:16px;
        border-radius:10px;
        box-shadow:0 2px 8px rgba(0,0,0,.08);
        overflow:hidden;
    }

    .table-wrapper tbody td{
        display:flex;
        justify-content:space-between;
        align-items:center;
        gap:10px;
        padding:10px 16px;
        border-bottom:1px solid #eef0f2;
        text-align:right;
    }

    .table-wrapper tbody td::before{
        content:attr(data-label);
        font-weight:600;
        color:#2c3e50;
        text-align:left;
        flex:1;
    }

    .table-wrapper tbody td:first-child{
        background:#7aa332;
        color:#fff;
        font-size:14.5px;
        justify-content:flex-start;
        text-align:left;
    }

    .table-wrapper tbody td:first-child::before{
        display:none;
    }

    .table-wrapper tbody td:last-child{
        border-bottom:none;
    }
}


/*===Venue===*/

/* Left panel */
    .panel-left {
      border-right: 1px solid #e2ddd4;
      padding: 40px 36px;
    }

    .section-label {
      font-size: 0.68rem;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: #2e6b47;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 1.25rem;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: #e2ddd4;
    }

    .venue-name {
      
      font-size: 1.75rem;
      color: #1a3d2b;
      line-height: 1.25;
    }

    .venue-address {
      font-size: 0.88rem;
      color: #6b7280;
    }

    .badge-custom {
      background-color: #4caf7d;
      color: #ffffff;
      font-size: 0.65rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 4px;
      font-weight: 600;
    }

    .venue-desc {
      font-size: 0.91rem;
      line-height: 1.85;
      color: #444;
      border-bottom: 1px solid #e2ddd4;
      padding-bottom: 1.5rem;
    }

    /* Info rows */
    .info-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 0.7rem 0;
      border-bottom: 1px solid #e2ddd4;
      font-size: 0.88rem;
    }
    .info-row:last-of-type { border-bottom: none; }
    .info-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
    .info-label {
      font-size: 0.65rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #6b7280;
      margin-bottom: 2px;
    }
    .info-value { color: #1c1c1c; font-weight: 500; }

    /* Contact pills */
    .contact-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #1a3d2b;
      color: #ffffff;
      font-size: 0.78rem;
      padding: 8px 18px;
      border-radius: 50px;
      text-decoration: none;
      transition: background 0.2s;
    }
    .contact-pill:hover { background: #2e6b47; color: #fff; }

    /* Social buttons */
    .social-btn {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1.5px solid #e2ddd4;
      border-radius: 50px;
      padding: 7px 16px;
      font-size: 0.76rem;
      color: #1a3d2b;
      text-decoration: none;
      font-weight: 500;
      transition: border-color 0.2s, background 0.2s;
    }
    .social-btn:hover { border-color: #4caf7d; background: #edf7f1; color: #1a3d2b; }

    /* Right panel */
    .panel-right {
      padding: 0;
      display: flex;
      flex-direction: column;
    }
    .map-header {
      padding: 28px 36px 18px;
      background: #ffffff;
      border-bottom: 1px solid #e2ddd4;
    }
    .map-header h3 {
      font-size: 1.2rem;
      color: #1a3d2b;
    }
    .map-header p { font-size: 0.82rem; color: #6b7280; margin: 0; }

    .map-wrap { flex: 1; min-height: 280px; }
    .map-wrap iframe { width: 100%; height: 100%; min-height: 280px; border: none; display: block; }

    @media (max-width: 767px) {
      .panel-left { border-right: none; border-bottom: 1px solid #e2ddd4; padding: 28px 20px; }
      .map-wrap, .map-wrap iframe { min-height: 320px; }
    }



    .wrap {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    justify-content: center;
/*    max-width: 800px;*/
  }
.wrap  a{text-decoration: none;}
  .card {
    width: 420px;
    max-width: 92vw;
    border-radius: 6px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

  .card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 18px 34px rgba(0,0,0,0.28);
  }

  .media {
    position: relative;
    height: 300px;
    overflow: hidden;
  }

  .media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .card:hover .media img {
    transform: scale(1.08);
  }

  /* ---------- Footer bar ---------- */

  .footer-bar {
    background: #5a8f3c;
    color: #ffffff;
    text-align: center;
    padding: 18px 10px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    transition: background 0.35s ease;
  }

  .card:hover .footer-bar {
    background: #4c7a32;
  }

  .footer-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.7s ease;
  }

  .card:hover .footer-bar::before {
    left: 130%;
  }

  .footer-bar span {
    position: relative;
    z-index: 1;
  }


.ig-page-wrap {
    background: #f4f6f5;
    padding: 40px 20px;
    font-family: 'Segoe UI', Arial, sans-serif;
  }

  .ig-heading {
    margin-bottom: 25px;
    font-weight: 700;
  }

  /* ---- Gallery grid thumbnails ---- */
  .ig-thumb {
    cursor: pointer;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  }

  .ig-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .ig-thumb:hover img {
    transform: scale(1.08);
  }

  /* ===================== MODAL ===================== */

  #igModal1 .modal-dialog {
    max-width: 600px;
  }

  #igModal1 .modal-content {
    background-color: #14161a;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  }

   #igModal2 .modal-dialog {
    max-width: 600px;
  }

  #igModal2 .modal-content {
    background-color: #14161a;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5);
  }

  /* Close button, drawn as a plain circle + × so it never depends
     on Bootstrap's background-image icon (which some setups strip out) */
  .ig-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 30;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
  }

  .ig-close-btn:hover {
    background-color: rgba(0,0,0,0.85);
    transform: rotate(90deg);
  }

  /* Image stage - fixed aspect ratio box, no vh, so it renders the
     same regardless of the host page's own layout/CSS */
  .ig-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #000;
    overflow: hidden;
  }

  .ig-stage .carousel,
  .ig-stage .carousel-inner,
  .ig-stage .carousel-item {
    width: 100%;
    height: 100%;
  }

  .ig-stage .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .ig-counter {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 20;
    background-color: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 999px;
    letter-spacing: 0.3px;
  }

  /* Prev / next arrows */
  .ig-stage .carousel-control-prev,
  .ig-stage .carousel-control-next {
    width: 56px;
    z-index: 20;
    opacity: 0.85;
  }

  .ig-stage .carousel-control-prev-icon,
  .ig-stage .carousel-control-next-icon {
    background-color: rgba(0,0,0,0.45);
    border-radius: 50%;
    padding: 18px;
    background-size: 45%;
  }

  /* Caption block */
  .ig-caption {
    background-color: #1c1f24;
    padding: 16px 22px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .ig-caption h6 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
  }

  .ig-caption p {
    margin: 0;
    font-size: 13.5px;
    color: rgba(255,255,255,0.65);
    line-height: 1.4;
  }

  /* Thumbnail strip inside modal */
  .ig-thumb-strip {
    display: flex;
    gap: 10px;
    padding: 14px 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    background-color: #0e1013;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .ig-thumb-strip img {
    width: 74px;
    height: 58px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    flex: 0 0 auto;
    display: block;
  }

  .ig-thumb-strip img:hover {
    opacity: 0.85;
  }

  .ig-thumb-strip img.ig-thumb-active {
    opacity: 1;
    border-color: #6fbf3e;
  }



/*=========SWM==========*/
   .waste-section {
            width: auto;
            min-height: 465px;
            display: flex;
            margin-bottom: 90px;
            overflow: hidden;
        }

        /* LEFT SIDE */
        .waste-left {
            width: auto;
            padding: 0px 40px 0 0px;
            display: flex;
            gap: 55px;
            background: #ffffff;
            align-items: flex-end;
        }

        .chart-box {
            flex: 1;
        }

        .chart-title {
            font-size: 18px;
            font-weight: 600;
            color: #555;
            margin: 12px 0 40px;
            white-space: nowrap;
        }

        /* PIE CHART */
        .pie-chart {
            width: 295px;
            height: 295px;
            border-radius: 50%;
            background: conic-gradient(
                #4f81bd 0deg 185deg,
                #c0504d 185deg 255deg,
                #7aa83d 255deg 322deg,
                #8064a2 322deg 360deg
            );
            position: relative;
        }

        .pie-chart::after {
            content: "";
            position: absolute;
            width: 18px;
            height: 18px;
            background: #ffffff;
            border-radius: 50%;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        .pie-number {
            position: absolute;
            color: #ffffff;
            font-size: 20px;
            font-weight: bold;
        }

        .number-3700 {
            right: 35px;
            top: 155px;
        }

        .number-1400 {
            left: 85px;
            bottom: 55px;
        }

        .number-1050-one {
            left: 65px;
            top: 130px;
        }

        .number-1050-two {
            left: 80px;
            top: 35px;
        }

        /* LEGEND */
        .legend {
            margin-top: 18px;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 0px;
            font-size: 12px;
            color: #555;
            white-space: nowrap;
        }

        .legend-color {
            width: 14px;
            height: 14px;
            display: inline-block;
        }

        .blue {
            background: #4f81bd;
        }

        .red {
            background: #c0504d;
        }

        .green {
            background: #7aa83d;
        }

        .purple {
            background: #8064a2;
        }

        .fig {
            color: #ff3f62;
            font-size: 14px;
            font-weight: 600;
            margin-top: 14px;
        }

        /* BAR CHART */
        .bar-area {
            display: flex;
            align-items: flex-end;
            gap: 25px;
        }

        .bar-chart {
            width: 145px;
            height: 315px;
            border-left: 2px solid #ddd;
            border-bottom: 2px solid #ddd;
            position: relative;
            display: flex;
            align-items: flex-end;
            justify-content: center;
        }

        .bar {
            width: 95px;
            height: 315px;
            display: flex;
            flex-direction: column;
        }

        .bar-part {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ffffff;
            font-size: 16px;
        }

        .bar-organic {
            height: 52.5%;
            background: #4f81bd;
        }

        .bar-paper {
            height: 16%;
            background: #c0504d;
        }

        .bar-plastic {
            height: 12%;
            background: #7aa83d;
        }

        .bar-metal {
            height: 6.2%;
            background: #8064a2;
        }

        .bar-glass {
            height: 4%;
            background: #4298ad;
        }

        .bar-other {
            height: 10%;
            background: #e77e2f;
        }

        .percentage {
            position: absolute;
            left: -78px;
            color: #666;
            font-size: 15px;
        }

        .p100 {
            top: 0;
        }

        .p80 {
            top: 20%;
        }

        .p60 {
            top: 40%;
        }

        .p40 {
            top: 60%;
        }

        .p20 {
            top: 80%;
        }

        .p0 {
            bottom: -27px;
        }

        .bar-label {
            position: absolute;
            bottom: -42px;
            right: 0px;
            font-size: 18px;
            color: #555;
        }

        /* RIGHT SIDE */
        .waste-right {
            width: 40%;
            padding: 135px 35px 30px 25px;
            color: #ffffff;
            position: relative;
            overflow: hidden;
            border-radius:6px;
            background:
                linear-gradient(
                    145deg,
                    rgba(79, 174, 64, 0.95),
                    rgba(117, 190, 55, 0.88)
                );
        }

        .waste-right::before {
            content: "";
            position: absolute;
            width: 600px;
            height: 250px;
            background: rgba(255, 255, 255, 0.10);
            transform: rotate(-18deg);
            right: -150px;
            top: -90px;
        }

        .waste-right::after {
            content: "";
            position: absolute;
            width: 650px;
            height: 230px;
            background: rgba(255, 255, 255, 0.18);
            transform: rotate(8deg);
            right: -170px;
            bottom: -115px;
        }

        .waste-content {
            position: relative;
            z-index: 2;
        }

        .waste-content h2 {
            font-size: 18px;
            line-height: 1.2;
            margin: 0 0 18px;
            font-weight: bold;
        }

        .waste-content p {
            font-size: 14px;
            line-height: 1.6;
            margin: 0;
            text-align: left;
        }

        /* RESPONSIVE */
        @media (max-width: 1200px) {

            .waste-section {
                flex-direction: column;
            }

            .waste-left,
            .waste-right {
                width: 100%;
            }

            .waste-left {
                padding-bottom: 50px;
            }

            .waste-right {
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {

            .waste-left {
                flex-direction: column;
                gap: 50px;
                padding: 30px 20px 50px;
            }

            .chart-title {
                font-size: 21px;
                white-space: normal;
            }

            .pie-chart {
                width: 260px;
                height: 260px;
            }

            .bar-area {
                justify-content: center;
            }

            .waste-content h2 {
                font-size: 25px;
            }

            .waste-content p {
                font-size: 17px;
            }
        }


/*========IWM========*/
.i_waste_management {
            padding: 15px 0;
            overflow: hidden;
            margin-bottom: 90px;
        }

        .i_waste_management .waste-wrapper {
            position: relative;
            min-height: 470px;
        }

        .i_waste_management .waste-content {
            position: relative;
            z-index: 2;
            width: 60%;
            min-height: 470px;
            padding: 28px 45px 0px 25px;
            color: #ffffff;
            background: #1fa4d4;
            overflow: hidden;
        }

        .i_waste_management .waste-content::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -100px;
            width: 100%;
            height: 250px;
            background: rgba(0, 125, 190, 0.35);
            clip-path: polygon(
                0 55%,
                55% 0,
                100% 35%,
                55% 100%,
                0 70%
            );
            z-index: -1;
        }

        .i_waste_management .waste-content h2 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .i_waste_management .waste-content p {
            font-size: 16px;
            line-height: 1.65;
            font-weight: 500;
            text-align: justify;
            margin-bottom: 16px;
        }

        .i_waste_management .waste-image {
            position: absolute;
            top: 0;
            right: 0;
            width: 42%;
            height: 100%;
            z-index: 3;
        }

        .i_waste_management .waste-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        /* Tablet */
        @media (max-width: 991px) {

            .i_waste_management .waste-wrapper {
                min-height: auto;
            }

            .i_waste_management .waste-content {
                width: 100%;
                min-height: auto;
                padding: 30px;
            }

            .i_waste_management .waste-image {
                position: relative;
                width: 100%;
                height: 350px;
            }

            .i_waste_management .waste-content h2 {
                font-size: 26px;
            }

            .i_waste_management .waste-content p {
                font-size: 18px;
            }
        }


        /* Mobile */
        @media (max-width: 575px) {

            .i_waste_management {
                padding: 10px;
            }

            .i_waste_management .waste-content {
                padding: 25px 20px;
            }

            .i_waste_management .waste-content h2 {
                font-size: 23px;
                line-height: 1.3;
            }

            .i_waste_management .waste-content p {
                font-size: 16px;
                line-height: 1.6;
                text-align: left;
            }

            .i_waste_management .waste-image {
                height: 280px;
            }
        }

/*======AEP=============*/
.i_renewable_energy {
            background: #fff;
            overflow: hidden;
            margin-bottom: 70px;
        }

        .i_renewable_energy .energy-image {
            height: 100%;
            min-height: 520px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }

        .i_renewable_energy .energy-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .i_renewable_energy .energy-content {
            min-height: 420px;
            padding: 35px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background:
                linear-gradient(145deg,
                    rgba(18, 102, 65, 0.98),
                    rgba(17, 91, 58, 0.98));
            position: relative;
            overflow: hidden;
        }

        .i_renewable_energy .energy-content::after {
            content: "";
            position: absolute;
            right: -100px;
            bottom: -130px;
            width: 600px;
            height: 500px;
            background: rgba(0, 0, 0, 0.12);
            transform: rotate(-35deg);
            pointer-events: none;
        }

        .i_renewable_energy .energy-text {
            position: relative;
            z-index: 1;
        }

        .i_renewable_energy p {
            color: #fff;
            font-size: 16px;
            line-height: 1.65;
            font-weight: 500;
            margin-bottom: 28px;
        }

        .i_renewable_energy p:last-child {
            margin-bottom: 0;
        }

        /* Tablet */
        @media (max-width: 991px) {
            .i_renewable_energy .energy-image,
            .i_renewable_energy .energy-content {
                min-height: auto;
            }

            .i_renewable_energy .energy-image {
                padding: 20px;
            }

            .i_renewable_energy .energy-content {
                padding: 35px 30px;
            }

            .i_renewable_energy p {
                font-size: 18px;
            }
        }

        /* Mobile */
        @media (max-width: 575px) {
            .i_renewable_energy .energy-image {
                padding: 15px;
            }

            .i_renewable_energy .energy-content {
                padding: 30px 20px;
            }

            .i_renewable_energy p {
                font-size: 16px;
                line-height: 1.6;
                margin-bottom: 22px;
            }
        }


/*=======contact form===========*/

.contact_details {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 30px -20px rgba(0,0,0,0.7);

  /* Left info panel */
  .info-panel {
    position: relative;
    background: linear-gradient(160deg, #61ab45, #1fa6df);
    padding: 48px 38px;
    color: #16171f;
    overflow: hidden;
    min-height: 100%;
  }

  .info-panel::before {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
  }

  .info-panel h2 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .info-panel p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    
  }

  .info-panel ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
  }

  .info-panel .icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(22,23,31,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .socials a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(22,23,31,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.25s ease;
  }

  .socials a:hover { background: rgba(22,23,31,0.25); }

  /* Right form panel */
  



