
/* =====================================
   HERO SECTION
===================================== */
.block-30{
    position:relative;
    overflow:hidden;
    min-height:650px;
}

/* BACKGROUND IMAGE */
.hero-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;

     background:url('../../images/cctpaglingap_front2.png');
               center center no-repeat;

    background-size:cover;

   animation:heroZoom 30s ease-in-out infinite alternate;

    z-index:0;
}

/* VERY LIGHT OVERLAY */
.hero-overlay{
    position:absolute;
    inset:0;

   background:transparent;

    z-index:1;
}

/* CONTENT */
.hero-content,
.block-30 .container{
    position:relative;
    z-index:2;
}


/* Gradient overlay */

.block-30::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(
to bottom,
rgba(0,0,0,0.2),
rgba(0,0,0,0.55)
);
z-index:1;
}

.block-30 .container{
position:relative;
z-index:2;
}

/* =========================================
   HERO FIX
========================================= */
.block-30::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        to bottom,
        rgba(0,0,0,.15),
        rgba(0,0,0,.30)
    );

    z-index:1;
}
.hero-content{

position:relative;

z-index:2;
}

.hero-title{

font-size:64px;

font-weight:800;

line-height:1.1;

color:white;

text-shadow:
0 10px 25px rgba(0,0,0,0.3);
}

.hero-subtitle{

font-size:21px;

color:rgba(255,255,255,0.92);

max-width:800px;

margin:auto;
}

.hero-buttons{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-top:25px;
}

