/* BANNER SECTION */

.banner{
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

/* IMAGE */

.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(45%);
}

/* TEXT CONTENT */

.banner h2{
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: #ffffff;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 2px;
}

.banner p{
    position: absolute;
    top: 58%;
    left: 50%;
    transform: translateX(-50%);
    color: #e0e0e0;
    font-size: 16px;
    text-align: center;
    width: 60%;
    line-height: 1.6;
}


/* SECTION */

.creative-section{
    background:#000;
    padding:80px 10%;
    color:#fff;
}

/* TITLE */

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:600;
    margin-bottom:70px;
}

.section-title span{
    font-style:italic;
    color:#c8a45c;
}

/* CONTAINER */

.creative-container{
    display:flex;
    align-items:center;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE */

.creative-image{
    flex:1;
}

.creative-image img{
    width:100%;
    border-radius:6px;
    border:3px solid #c8a45c;
}

/*=======================================================================
= CONTENT ================================================================*/

.creative-content{
    flex:1;
}

.creative-content h3{
    font-size:32px;
    margin-bottom:20px;
}

.creative-content h3 span{
    color:#c8a45c;
}

.creative-content p{
    margin-bottom:20px;
    line-height:1.7;
    color:#d2d2d2;
}

/*======================================================
================== FEATURES======================================= */

.features{
    display:flex;
    gap:20px;
    margin-top:30px;
    align-items: center;
}

.feature-box{
    background:#0c1220;
    padding:10px 20px;
    border-radius:8px;
    text-align:center;
    flex:1;
    border:1px solid #1c2235;
    transition:0.3s;
}

.feature-box i{
    font-size:22px;
    color:#c8a45c;
}

.feature-box p{
    color:#fff;
}

.feature-box:hover{
    transform:translateY(-5px);
    border-color:#c8a45c;
}

/*=========================================================
= EXPERTISE SECTION=========================================================== */

.expertise{
    background:#000;
    padding:40px 8%;
    color:white;
}

/* HEADER */

.expertise-header{
    text-align:center;
    margin-bottom:70px;
}

.expertise-header h2{
    font-size:48px;
    font-weight:500;
}
.line{
    border: 2px dotted #f0a020;
}

.expertise-header span{
    font-style:italic;
    color:#c9c9c9;
}

.expertise-header p{
    color:#9aa6b8;
    margin-top:10px;
}

/* GRID */

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* CARD */

.expert-card{
    background:linear-gradient(145deg,#08152b,#02060f);
    border:1px solid #1c2a40;
    padding:25px 30px;
    border-radius:10px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

/* yellow bottom line */

.expert-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:0%;
    height:2px;
    background:#f0a020;
    transition:0.4s ease;
}

/* hover effect */

.expert-card:hover{
    transform:translateY(-8px);
    border-color:#c68a1e;
    background:linear-gradient(145deg,#0c1c36,#3a2a05);
}

/* line animation */

.expert-card:hover::after{
    width:100%;
}
/* ICON */

.icon{
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid #c68a1e;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}
.icon i{
    color:#f0a020;
    font-size:20px;
}

/* TITLE */

.expert-card h3{
    font-size:22px;
    margin-bottom:15px;
}

/* TEXT */

.expert-card p{
    color:#9aa6b8;
    line-height:1.7;
}

/* HOVER */

.expert-card:hover{
    transform:translateY(-8px);
    border-color:#c68a1e;
}
/*=================================Vision SECTION
================================================= */

.vision-section{
    background:#000;
    padding:80px 10%;
    display:flex;
    justify-content:center;
}

/* CARD */

.vision-box{
    background:linear-gradient(90deg,#0c1a32,#000000);
    padding:35px 70px;
    border-radius:8px;
    position:relative;
    max-width:1100px;
    border-left:5px solid #d39c2f;
}

/* SMALL TITLE */

.vision-tag{
    color:#d39c2f;
    letter-spacing:4px;
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:20px;
    display:block;
}

/* MAIN HEADING */

.vision-box h2{
    color:#ffffff;
    font-size:38px;
    line-height:1.4;
    font-weight:500;
    margin-bottom:25px;
}

/* GOLD WORDS */

.highlight{
    color:#f3a21b;
    font-weight:600;
}

/* PARAGRAPH */

.vision-box p{
    color:#9fa9bb;
    font-size:15px;
    line-height:1.7;
    max-width:800px;
}