* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial;
    font-size: 20px;
}

body {
    padding-top: 0px;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: none;
}


nav h1 {
    color: #0071C1;
    padding-left: 20px;
    padding-bottom: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    padding-bottom: 20px;
    padding-right: 20px;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* SLIDER */
.slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    width:100%;
    height:600px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.8s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* TEXT OVERLAY */
/* =========================
   HOME HERO TEXT (above slider, below navbar)
========================= */

.home-hero-text{
    background:linear-gradient(30deg,#0d4c92,#0066cc);
    padding:180px 8% 60px;
    color:#fff;
}

.home-hero-text-inner{
    
    max-width:700px;
    margin:0 auto;
    margin-left: 20px;
    text-align:left;
}

.home-hero-text h2{
    font-size:40px;
    color:#ffffff;
    margin-bottom:20px;
    margin-right: 0px;
    line-height:1.2;
}

.home-hero-text p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:30px;
    color:#eef3fa;
}

.home-hero-text .servicectc-btn{
    display:inline-block;
    padding:14px 32px;
    background:#ffffff;
    color:#0d4c92;
    text-decoration:none;
    font-weight:600;
    border-radius:8px;
    transition:.3s;
}

.home-hero-text .servicectc-btn:hover{
    background:#e6eef8;
    transform:translateY(-2px);
}

/* DOTS */
.dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 5px;
    display: inline-block;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #0071C1;
}

/* SECTIONS */
section {
    padding: 60px 50px;
    text-align: center;
}

.services {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    width: 250px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
}

footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

/* RESPONSIVE */

@media (max-width:768px) {

.slider{
        height:450px;
}

.overlay {
        top:50%;
        left:0;
        transform:translateY(-50%);
        width:100%;
        max-width:100%;
        padding:0 25px;
        box-sizing:border-box;
}

.overlay h2 {
        padding-left:0;
        text-align:left;
        font-size:26px;
        width:100%;
        max-width:100%;
}

.overlay p {
        font-size:15px;
        margin:15px 0 0;
        padding-left:0;
        width:100%;
        max-width:100%;
}

.overlay .servicectc-btn {
        margin-left:0;
        margin-top:20px;
}



}



@media (max-width:480px){

    .slider{
        height:380px;
    }

    .overlay h2{
        font-size:22px;
    }

    .overlay p{
        font-size:14px;
    }


    .index-footer p {

    font-size: 14px;
    text-align: left;
    margin-left: 100px;
    
    }
}

/* ===== PROGRAM HIGHLIGHTS ================================================== */

.highlight-card{
    width:90%;
    max-width: 800px;
    margin:50px auto;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.highlight-header{
    background:linear-gradient(90deg,#1a54d0,#efebeb);
    color:#fff;
    text-align:center;
    padding:20px;
    font-size:30px;
    font-weight:700;
    letter-spacing:1px;
}

.highlight-slider{
    width:100%;
    height:420px;
    overflow:hidden;
    position:relative;
}

.highlight-slides{
    display:flex;
    width:100%;
    height:100%;
    transition:transform .7s ease-in-out;
}

/* Each slide occupies exactly 100% of the card */
.highlight-slide{
    min-width:100%;
    height:100%;
    position:relative;
    flex:0 0 100%;
}

.highlight-slide img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    object-position:center;
}

.highlight-slide h2{
    position:absolute;
    left:30px;
    right:30px;
    bottom:25px;
    color:#ffffff;
    font-size:8px;
    font-weight:200;
    text-shadow:0 2px 10px rgba(0, 0, 0, 0);
}

.highlight-dots{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    padding:15px;
}

.highlight-dot{
    width:12px;
    height:12px;
    border-radius:50%;
    background:#bbb;
    cursor:pointer;
    transition:.3s;
}

.highlight-dot.active{
    background:#4433dd;
}

/* =========================
   Tablet
========================= */

@media (max-width:768px){

    .highlight-card{
        width:95%;
        border-radius:16px;
    }

    .highlight-header{
        font-size:24px;
        padding:16px;
    }

    .highlight-slider{
        height:300px;
    }

    .highlight-slide h2{
        left:20px;
        right:20px;
        bottom:20px;
        font-size:14px;
        color:#ffffff;
    }

    
}

/* =========================
   Mobile
========================= */

@media (max-width:480px){

    .highlight-card{
        width:100%;
    }

    .highlight-slider{
        height:250px;
    }

    .highlight-header{
        font-size:20px;
        padding:14px;
    }

    .highlight-slide h2{
        font-size:10px;
        left:15px;
        right:15px;
        bottom:15px;
    }
}
 
/* ===== part 2

/* ==================================================================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.news.body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.6;
}

.news img{
    width:100%;
    display:block;
}

.news .container{

    font-size:14px;
    width:90%;
    max-width:1200px;
    margin:auto;
}

.news-section h2 {

    
    margin: 0 0 30px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}


.news-section p {
    margin: 0 0 80px;

    font-size: 16px;
    line-height: 1.6;

    color: #222;
}

/* =========================
   HERO
========================= */

.news-hero{

    position:relative;
    height:420px;
    background:linear-gradient(30deg,#0d4c92,#0066cc);
    display:flex;
    justify-content:center;
    align-items:center;


}

.news-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.news .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.news-hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    text-align:center;
    color:linear-gradient(30deg,#0d4c92,#0066cc);
    width:90%;
    max-width:700px;
}

.hero-content h4{
    color:#ff5b5b;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:56px;
    margin-bottom:20px;
}

.hero-content p{
    position:relative;
    top: 40%;
    left: 82px;
    margin-right: 10px;
    text-align: left;
    max-width:900px;
    font-size:18px;
    color: #ffffff;
}

/* =========================
   SECTION TITLE
========================= */

.news h2,
.events h2,
.newsletter h2{

    text-align:center;
    font-size:40px;
    margin-bottom:50px;
    color:#222;

}

/* =========================
   NEWS
========================= */

.news-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

.news-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.news-card:hover{

    transform:translateY(-8px);

}

.news-card img{

    height:230px;
    object-fit:cover;

}

.news-content{

    padding:25px;

}

.news-content span{

    color:#777;
    font-size:14px;

}

.news-content h3{

    margin:15px 0;
    color:#1d3557;

}

.news-content p{

    color:#666;
    margin-bottom:20px;

}

.news-content a{

    text-decoration:none;
    color:#c0392b;
    font-weight:600;

}

/* =========================
   EVENTS
========================= */

.event-list{

    display:flex;
    flex-direction:column;
    gap:30px;

}

.event-card{

    background:#fff;
    border-radius:15px;
    overflow:hidden;
    display:flex;
    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.event-card img{

    width:300px;
    height:220px;
    object-fit:cover;

}

.event-info{

    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:center;

}

.event-info span{

    color:#777;

}

.event-info h3{

    margin:12px 0;
    color:#1d3557;

}

/* =========================
   NEWSLETTER
========================= */

.newsletter{

    background:#1d3557;
    color:#fff;
    text-align:center;

}

.newsletter p{

    margin:20px 0 35px;

}

.newsletter form{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;

}

.newsletter input{

    width:350px;
    max-width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:16px;

}

.newsletter button{

    padding:15px 35px;
    background:#e63946;
    color:#fff;
    border:none;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;

}

.newsletter button:hover{

    background:#c62828;

}

/* =========================
   FOOTER
========================= */

footer{

    background:#111;
    color:#fff;
    text-align:center;
    padding:30px;

}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

.hero{

    height:380px;

}

.hero-content h1{

    font-size:40px;

}

.hero-content p{

    font-size:16px;

}

.event-card{

    flex-direction:column;

}

.event-card img{

    width:100%;
    height:240px;

}

.index-footer{

    background:linear-gradient(170deg,#07264a,#0066cc);
    color:white;
    text-align:center;
    padding:30px;

}

.index-footer p {

    font-size: 14px;
    text-align: left;
    margin-left: 100px;
    
}

}

@media(max-width:600px){

.hero{

    height:300px;

}

.hero-content h1{

    font-size:32px;

}

.news h2,
.events h2,
.newsletter h2{

    font-size:30px;

}

.news-grid{

    grid-template-columns:1fr;

}

.newsletter form{

    flex-direction:column;
    align-items:center;

}

.newsletter input,
.newsletter button{

    width:100%;

}

}

/* ===========================
SOCIAL MEDIA SECTION
=========================== */

.social-section{

    padding:90px 8%;
    background:#f5f8fc;

}

.social-title{

    text-align:center;
    margin-bottom:60px;

}

.social-title h2{

    font-size:42px;
    color:#1c2b4a;
    margin-bottom:15px;

}

.social-title p{

    color:#666;
    font-size:18px;

}

/* Cards */

.social-container{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;

}

/* Individual Card */

.social-card{

    background:white;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.social-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

/* Header */

.social-header{

    padding:18px;

    text-align:center;

    color:white;

    font-size:22px;

    font-weight:600;

}

/* Different Colors */

.facebook{

    background:#c40333;

}

.tiktok{

    background:#111;

}

.instagram{

    background:linear-gradient(45deg,#833AB4,#E1306C,#FCAF45);

}

/* Image */

.social-card img{

    width:100%;
    height:420px;
    object-fit:cover;

}

/* Content */

.social-content{

    padding:25px;

}

.social-content h3{

    margin-bottom:12px;

    color:#1b1b1b;

}

.social-content p{

    font-size: 14px;
    color:#666;
    line-height:1;
    margin-bottom:25px;

}

/* Buttons */

.social-buttons{

    display:flex;

    justify-content:space-between;

}

.social-buttons a{

    text-decoration:none;
    padding:12px 22px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;

}

/* Button 1 */

.social-buttons a:first-child{

    border:2px solid #0d6efd;

    color:#0d6efd;

}

.social-buttons a:first-child:hover{

    background:#0d6efd;

    color:white;

}

/* Button 2 */

.watch{

    background:#d94841;

    color:white;

}

.watch:hover{

    background:#b8312c;

}

/* Mobile */

@media(max-width:768px){

.social-title h2{

    font-size:32px;

}

.social-card img{

    height:300px;

}

.social-buttons{

    flex-direction:column;
    gap:12px;

}

.social-buttons a{

    text-align:center;

}

}



/* ===========================================================================
   SERVICES INDEX PAGE
===================================== */

.services-section{

    padding:90px 8%;

    background:#f6f7fb;

}

.services-section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:50px;

    color:#163b65;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

.service-card{

    position:relative;

    min-height:500px;

    overflow:hidden;

    cursor:pointer;

    border-radius:12px;

}

.service-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.service-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(to top,
    rgba(0, 0, 0, 0),
    rgba(255, 253, 253, 0));

    z-index:1;

}

.service-overlay{

    color:white;

    z-index:5;

    transition:.4s;


    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 230px;
    
    

    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    

}



.service-overlay p{
    text-align: left;
    margin-left: 10px;
    margin-top: 5px;
    font-size:17px;
    line-height:1.2;
    opacity:0;
    transform:translateY(20px);
    transition:.4s;


}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card:hover .service-overlay p{

    opacity:1;

    transform:translateY(0);

}

.service-card:hover{

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

/* Tablet */

@media(max-width:1100px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

/* Mobile */

@media(max-width:700px){

.services-grid{

    grid-template-columns:1fr;

}

.service-card{

    height:380px;

}

.service-overlay h3{

    font-size:28px;

}

}

/*====================================================================================
                SERVICES PAGE
==================================================*/

/* Hero */

.service-hero{

    position:relative;
    height:420px;

    background:img src ("image/weldingyellow.jpg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

}



.service-hero-content{

    position:relative;
    z-index:2;

    text-align:center;
    color:#fff;

    width:90%;
    max-width:800px;

}

.service-hero-content h1{

    font-size:60px;
    margin-bottom:20px;
    font-weight:700;

}

.service-hero-content p{

    font-size:20px;
    line-height:1.7;

}


/* Sections */

.service-section{

    padding:90px 8%;

    background:#ffffff;

}

.alternate{

    background:#f7f9fc;

}


/* Container */

.service-container{

    display:flex;
    align-items:center;
    gap:50px;

    max-width:1300px;
    margin:auto;

}


/* Reverse Layout */

.service-reverse{

    flex-direction:row-reverse;

}


/* Image */

.service-image{

    flex:1;

}

.service-image img{

    width:100%;
    height:420px;

    object-fit:cover;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}


/* Text */

.service-content{

    flex:2;

    background:#fff;

    padding:40px;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.service-content h2{

    text-align: left;
    color:#163b65;
    font-size:38px;
    margin-bottom:25px;

}

.service-content p{

    text-align: left;
    color:#060606;
    line-height:1.9;
    margin-bottom:20px;
    font-size: 18px;
    max-width: 750px;
}


/* Two Column List */

.service-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:25px;

}

.service-list ul{

    padding-left:20px;

}

.service-list li{

    margin-bottom:15px;

    color:#444;

}


/* Single List */

.single-list{

    margin-top:25px;

    padding-left:22px;

}

.single-list li{

    margin-bottom:15px;

    color:#444;

}


/* CTA */

.service-cta{

    padding:90px 20px;

    background:linear-gradient(135deg,#0d4c92,#1673d1);

    text-align:center;

    color:#fff;

}

.service-cta-content{

    max-width:850px;
    margin:auto;

}

.service-cta h2{

    font-size:42px;

    margin-bottom:20px;

}

.service-cta p{

    font-size:18px;

    line-height:1.8;

    margin-bottom:35px;

}


/* Button */

.service-btn{

    display:inline-block;

    padding:10px 20px  ;

    background:#fff;

    color:#0d4c92;

    text-decoration:none;

    border-radius:15px;

    font-weight:600;

    transition:.3s;

    bottom: 20px;

}

.servicectc-btn {
    display: inline-block;
    padding: 14px 28px;

    /* Apple-style liquid glass */
    background: rgba(84, 108, 166, 0);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);

    /* Glass edge */
    border: 1px solid rgba(94, 93, 93, 0.4);
    border-radius: 16px;

    /* Text */
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;

    /* Apple-like depth */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.45),
        inset 0 -1px 2px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    margin-left: 60px;
    margin-top: 26px;
}

/* Hover */
.servicectc-btn:hover {
    background: rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.55),
        0 12px 30px rgba(0, 0, 0, 0.22);

    color: #e3e3e3;
}

/* Press effect */
.servicectc-btn:active {
    transform: translateY(0) scale(0.97);
}

.servicectc2-btn {
     display: inline-block;
    padding: 14px 28px;

    /* Glass effect */
    background:linear-gradient(30deg,#07264a,#0066cc);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* Glass border */
    border: 1px solid rgba(82, 82, 82, 0.15);

    /* Shape */
    border-radius: 13px;

    /* Text */
    color: #fff;
    text-decoration: silver;
    font-size: 15px;
    font-weight: 600;

    /* Shadow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.342);

    transition: all 0.3s ease;

    margin-left: 0px;
    margin-top: 26px;
}

.servicectc2-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);

    transform: translateY(-3px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}


.servicelm-btn{
    

    display:inline-block;
    padding: 10px 20px;
   
    /* Apple-style liquid glass */
    background: rgba(84, 108, 166, 0);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);

    /* Glass edge */
    border: 1px solid rgba(94, 93, 93, 0.4);
    border-radius: 16px;

    /* Text */
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;

    /* Apple-like depth */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.45),
        inset 0 -1px 2px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);

}


.servicelm-btn:hover{

    background:#163b65;

    color:#fff;

    bottom: 20px;

}

.servicelm-btn:active {
    transform: translateY(0) scale(0.97);
}


.service-btn:hover{

    background:#163b65;

    color:#fff;

    bottom: 20px;

}




/* Footer --------------------------------------------------------------------------*/



.index-footer{

    background:linear-gradient(170deg,#07264a,#0066cc);
    color:white;
    text-align:center;
    padding:30px;

}

.index-footer p {

    font-size: 14px;
    text-align: left;
    margin-left: 100px;
    
}

@media (max-width: 768px) {

    .index-footer p {
        text-align: center;
        margin-left: 0;
        padding: 0 20px;
    }

}


.service-footer{

    background:#16253d;

    color:#fff;

    padding:60px 8% 25px;

}

.footer-container{

    display:flex;

    justify-content:space-between;

    gap:60px;

    max-width:1200px;

    margin:auto;

}

.footer-left{

    flex:2;

}

.footer-right{

    flex:1;

}

.footer-left h3{

    margin-bottom:18px;

}

.footer-left p{

    line-height:1.8;
    text-align: left;

    color:#ddd;

}

.footer-right h4{

    margin-bottom:18px;

}

.footer-right ul{

    list-style:none;

}

.footer-right li{

    margin-bottom:12px;

}

.footer-right a{

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

.footer-right a:hover{

    color:#fff;

    padding-left:5px;

}

.service-footer hr{

    margin:40px auto 25px;

    border:none;

    height:1px;

    background:rgba(255,255,255,.2);

}

@media (max-width: 768px) {
    
}

.copyright{

    text-align:center;

    color:#bbb;

}


/* Hover Effect */

.service-image{

    overflow:hidden;

    border-radius:12px;

}

.service-image img{

    transition:.5s;

}

.service-image:hover img{

    transform:scale(1.08);

}


/* Tablet */

@media(max-width:992px){

.service-container{

    flex-direction:column;

}

.service-reverse{

    flex-direction:column;

}

.service-content{

    width:100%;

}

.service-list{

    grid-template-columns:1fr;

}

.footer-container{

    flex-direction:column;

}

}


/* Mobile ---------------------------------------------------------------------------------------------------------------------------------*/

@media(max-width:768px){

.service-hero{

    height:300px;

}

.service-hero-content h1{

    font-size:40px;

}

.service-hero-content p{

    font-size:16px;

}

.service-section{

    padding:60px 20px;

}

.service-content{

    padding:30px;

}

.service-content h2{

    font-size:30px;

}

.service-image img{

    height:280px;

}

.service-cta h2{

    font-size:32px;

}

.service-btn{

    padding:14px 30px;

}

.servicectc-btn {
    display: inline-block;
    padding: 14px 28px;

    /* Apple-style liquid glass */
    background: rgba(84, 108, 166, 0);
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);

    /* Glass edge */
    border: 1px solid rgba(94, 93, 93, 0.4);
    border-radius: 16px;

    /* Text */
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;

    /* Apple-like depth */
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.45),
        inset 0 -1px 2px rgba(0, 0, 0, 0.08),
        0 8px 25px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        box-shadow 0.25s ease;

    margin-left: 35px;
    margin-top: 26px;
}

/* Hover */
.servicectc-btn:hover {
    background: rgba(255, 255, 255, 0.25);

    transform: translateY(-2px);

    box-shadow:
        inset 0 1px 2px rgba(255, 255, 255, 0.55),
        0 12px 30px rgba(0, 0, 0, 0.22);

    color: #e3e3e3;
}

/* Press effect */
.servicectc-btn:active {
    transform: translateY(0) scale(0.97);
}

}



/* ============================================================
   OUR MARKET
============================================================ */

.market-section {
    width: 100%;
    padding: 80px 8%;
    background: #ffffff;
}

.market-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.market-container h2 {


    margin: 0 0 30px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: #163b65;
}

.market-intro {
    margin: 0 0 80px;

    font-size: 18px;
    line-height: 1.6;

    color: #222;
}

.market-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    column-gap: 60px;
    row-gap: 60px;
}

.market-item {
    display: flex;
    align-items: center;

    gap: 28px;

    min-width: 0;
}

.market-number {
    width: 31px;
    height: 31px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid #e5e5e5;
    border-radius: 50%;

    color: #666;

    font-size: 14px;
    font-weight: 400;
}

.market-item h3 {
    margin: 0;

    color: #444;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.3;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1000px) {

    .market-section {
        padding: 70px 6%;
    }

    .market-container h2 {
        font-size: 36px;
    }

    .market-intro {
        margin-bottom: 55px;
    }

    .market-grid {
        grid-template-columns: repeat(2, 1fr);

        column-gap: 40px;
        row-gap: 40px;
    }

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 600px) {

    .market-section {
        padding: 55px 20px;
    }

    .market-container h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .market-intro {
        font-size: 14px;

        margin-bottom: 40px;
    }

    .market-grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .market-item {
        gap: 18px;
    }

    .market-number {
        width: 30px;
        height: 30px;

        font-size: 13px;
    }

    .market-item h3 {
        font-size: 17px;
    }

}


/* ============================================================
   SMALL PHONE
============================================================ */

@media (max-width: 380px) {

    .market-section {
        padding: 45px 15px;
    }

    .market-container h2 {
        font-size: 27px;
    }

    .market-intro {
        font-size: 13px;
    }

    .market-item h3 {
        font-size: 16px;
    }

}

/* =========================
   SCROLL REVEAL ANIMATION
========================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Smoother footer transition */
footer.reveal {
    transform: translateY(20px);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}