/* ================= ECONOMIC HERO SECTION ================= */

.eco-hero-section{
    position:relative;
  
    width:100%;
    overflow:hidden;
  
    padding:70px 5% 70px;
  
    background:#eef7ff;
  
    text-align:center;
  }
  
  /* GRID EFFECT */
  
  .eco-hero-section::before{
    content:"";
  
    position:absolute;
    inset:0;
  
    background-size:70px 70px;
  
    opacity:0.45;
  }
  
  /* ================= BLUR EFFECTS ================= */
  
  .eco-hero-blur{
    position:absolute;
  
    border-radius:50%;
  
    filter:blur(100px);
  
    z-index:1;
  }
  
  .blur-1{
    width:280px;
    height:280px;
  
    background:rgba(72,184,233,0.16);
  
    top:-100px;
    left:-80px;
  }
  
  .blur-2{
    width:320px;
    height:320px;
  
    background:rgba(52,120,255,0.12);
  
    bottom:-140px;
    right:-100px;
  }
  
  /* ================= CONTAINER ================= */
  
  .eco-hero-container{
    position:relative;
    z-index:5;
  
    max-width:860px;
  
    margin:auto;
  }

  .tl-breadcrumb{
    align-items:center;
    gap:6px;
  
    margin-bottom:20px;
  
    color:#5f6470;
  
    font-size:15px;
    font-weight:600;
  }
  
  /* ================= BADGE ================= */
  
  .eco-hero-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  
    padding:10px 18px;
  
    border-radius:100px;
  
    background:#dff1ff;
  
    border:1px solid #cde9ff;
  
    color:#0a84ff;
  
    font-size:11px;
    font-weight:700;
    letter-spacing:1.3px;
  
    margin-bottom:20px;
  }
  
  .eco-hero-badge i{
    font-size:15px;
  }
  
  /* ================= TITLE ================= */
  
  .eco-hero-container h1{
    font-size:60px;
    line-height:1.08;
    font-weight:800;
  
    letter-spacing:-2px;
  
    color:#07152f;
  
    margin-bottom:22px;
  }
  
  .eco-hero-container h1 span{
    color:#0a84ff;
  }
  
  /* ================= TEXT ================= */
  
  .eco-hero-container p{
    max-width:720px;
  
    margin:auto auto 36px;
  
    font-size:15px;
    line-height:1.9;
  
    color:#617089;
  }
  
  /* ================= BUTTONS ================= */
  
  .eco-hero-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
  
    gap:14px;
  
    margin-bottom:42px;
  }
  
  /* PRIMARY BUTTON */
  
  .eco-btn-primary{
    position:relative;
  
    height:52px;
  
    padding:0 28px;
  
    border-radius:14px;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
  
    background:linear-gradient(
      135deg,
      #48b8e9,
      #3478ff
    );
  
    color:#fff;
    text-decoration:none;
  
    font-size:14px;
    font-weight:700;
  
    overflow:hidden;
  
    transition:0.35s ease;
  
    box-shadow:
    0 14px 34px rgba(72,184,233,0.20);
  }
  
  .eco-btn-primary::before{
    content:"";
  
    position:absolute;
  
    top:0;
    left:-120px;
  
    width:80px;
    height:100%;
  
    background:rgba(255,255,255,0.25);
  
    transform:skewX(-20deg);
  
    transition:0.5s ease;
  }
  
  .eco-btn-primary:hover::before{
    left:130%;
  }
  
  .eco-btn-primary:hover{
    transform:translateY(-4px);
  
    box-shadow:
    0 18px 40px rgba(72,184,233,0.26);
  }
  
  .eco-btn-primary i{
    font-size:17px;
  
    transition:0.3s ease;
  }
  
  .eco-btn-primary:hover i{
    transform:translateX(4px);
  }
  
  /* SECONDARY BUTTON */
  
  .eco-btn-secondary{
    height:52px;
  
    padding:0 26px;
  
    border-radius:14px;
  
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    background:#ffffff;
  
    border:1px solid #dcecff;
  
    color:#07152f;
    text-decoration:none;
  
    font-size:14px;
    font-weight:700;
  
    transition:0.35s ease;
  
    box-shadow:
    0 8px 22px rgba(0,0,0,0.04);
  }
  
  .eco-btn-secondary:hover{
    transform:translateY(-4px);
  
    border-color:#0a84ff;
  
    color:#0a84ff;
  }
  
  /* ================= STATS ================= */
  
  .eco-hero-stats{
    display:flex;
    align-items:center;
    justify-content:center;
  
    gap:18px;
  
    flex-wrap:wrap;
  }
  
  .eco-stat-box{
    min-width:150px;
  
    padding:20px 22px;
  
    border-radius:22px;
  
    background:#dff1ff;
  
    border:1px solid #cce9ff;
  
    transition:0.35s ease;
  }
  
  .eco-stat-box:hover{
    transform:translateY(-5px);
  
    background:#ffffff;
  
    border-color:#8fcfff;
  
    box-shadow:
    0 16px 35px rgba(10,132,255,0.10);
  }
  
  .eco-stat-box h4{
    font-size:28px;
    font-weight:800;
  
    color:#07152f;
  
    margin-bottom:8px;
  }
  
  .eco-stat-box span{
    font-size:13px;
  
    color:#617089;
  }
  
  /* ================= RESPONSIVE ================= */
  
  @media(max-width:768px){
  
    .eco-hero-section{
      padding:90px 20px 70px;
    }
  
    .eco-hero-container h1{
      font-size:38px;
      line-height:1.15;
    }
  
    .eco-hero-container p{
      font-size:13px;
    }
  
    .eco-hero-buttons{
      flex-direction:column;
    }
  
    .eco-btn-primary,
    .eco-btn-secondary{
      width:100%;
    }
  
    .eco-stat-box{
      width:100%;
    }
  
  }

  .ec-section {
    padding: 80px 16px;
    overflow: hidden;
  }
  
  /* Container */
  .ec-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Text alignment */
  .ec-text-center {
    text-align: center;
    margin-bottom: 48px;
  }
  
  /* Heading */
  .ec-heading {
    font-size: 45px;
    font-weight: 800;
    color: #252554;
    margin-bottom: 24px;
    line-height: 1.2;
  }
  
  .ec-heading span {
    color: #0a84ff;
  }
  
  /* Description */
  .ec-description {
    max-width: 720px;
    margin: 0 auto;
    font-size: 16px;
    color: #252554;
    line-height: 1.6;
  }
  
  /* Calendar Box */
  .ec-calendar-box {
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid #0a84ff;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  }
  
  /* Iframe */
  .ec-iframe {
    width: 100%;
    height: 600px;
    border: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .ec-heading {
      font-size: 36px;
    }
  
    .ec-description {
      font-size: 16px;
    }
  
    .ec-iframe {
      height: 520px;
    }
  }

  .mr-section {
    padding: 80px 20px;
    margin-top: 20px;
    overflow: hidden;
    font-family: "Mulish", sans-serif;
  }
  
  .mr-container {
    max-width: 1150px;
    margin: 0 auto 32px;
  }
  
  .mr-text-center {
    text-align: center;
  }
  
  .mr-heading {
    font-size: 48px;
    font-weight: 700;
    color: #252554;
    margin-bottom: 16px;
  }
  
  .mr-highlight {
    color: #0a84ff;
  }
  
  .mr-description {
    font-size: 18px;
    color: #252554;
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .mr-iframe-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
  }
  
  .mr-iframe {
    width: 100%;
    height: 600px;
    border: none;
  }

  .pr-iframe-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 500px;
  }
  
  .pr-iframe {
    width: 100%;
    height: 600px;
    border: none;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .mr-heading {
      font-size: 36px;
    }
  
    .mr-description {
      font-size: 16px;
    }
  
    .mr-iframe-wrapper {
      height: auto;
    }
  
    .mr-iframe {
      height: 520px;
    }

    .pr-iframe-wrapper {
        height: auto;
      }
    
    .pr-iframe {
        height: 520px;
    }
  }