body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f8f9fa;
}

.container-fluid {
    padding: 0 40px;
}

.main-header {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #ff3b3b, #d90000) 1;
}
.blink-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    border-radius: 25px;
    color: #fff;
    background: linear-gradient(135deg, #ff3b3b, #d90000);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
    animation: phoneBlink 2s infinite;
    transition: all 0.3s ease;
}

.blink-phone:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.55);
}

@keyframes phoneBlink {
    0%, 25% {
        opacity: 1;
        background: linear-gradient(135deg, #ff3b3b, #d90000);
        box-shadow: 0 4px 15px rgba(255, 0, 0, 0.35);
    }

    25%, 50% {
        opacity: 0.65;
        background: linear-gradient(135deg, #ff7777, #e44);
        box-shadow: 0 2px 8px rgba(255, 0, 0, 0.15);
    }

    51%, 100% {
        opacity: 1;
        background: linear-gradient(135deg, #ff3b3b, #d90000);
        box-shadow: 0 4px 18px rgba(255, 0, 0, 0.5);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }

    10%, 30% {
        transform: rotate(-15deg);
    }

    20%, 40% {
        transform: rotate(15deg);
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(212, 166, 70, .15), rgba(212, 166, 70, .05));
    border: 1px solid rgba(212, 166, 70, .4);
    color: #b5872f;
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: 1.2px;
    font-weight: 700;
    text-transform: uppercase;
}
.hero-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #D4A646;
    border-radius: 50%;
}
.hero-tag.tag-light {
    background: linear-gradient(135deg, rgba(212, 166, 70, .25), rgba(212, 166, 70, .08));
    border: 1px solid rgba(212, 166, 70, .45);
    color: #f1c45b;
}

.hero-tag.tag-light::before {
    box-shadow: 0 0 10px #f1c45b;
}
.custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
    position: relative;
}

.logo-box img {
    height: 75px;
}

.header-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
  .read-text {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .read-text.show-more {
        display: block;
    }

    .read-more {
        border: none;
        background: none;
        color: #d90000;
        font-weight: 600;
        cursor: pointer;
        padding: 5px 0;
    }
.menu-list {
    display: flex;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    gap: 35px;
    align-items: center;
}

.menu-list li a {
    text-decoration: none;
    color: #222;
    font-weight: 600;
    transition: .3s;
}

.menu-list li a:hover {
    color: #e21616;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f2ae5a, #7e4c1f);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(217, 4, 41, 0.3);
}
.consult-btn:hover {
    background: linear-gradient(135deg, #d90429, #b00020);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(217, 4, 41, 0.45);
    color: #fff;
}
.consult-btn i {
    font-size: 16px;
}

.container-fluid {
    padding: 0px 45px !important;
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: #e21616;
    color: #fff;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}
.hero-section {
    position: relative;
    width: 100%;
    height: 520px;
}
.hero-section .container{
    display: flex;
    align-items: center;
    height: 100%;
    width: 100%;
}

.heroSwiper,
.heroSwiper .swiper-wrapper,
.heroSwiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(10, 10, 10, .92) 0%,
            rgba(10, 10, 10, .70) 42%,
            rgba(10, 10, 10, .25) 75%,
            rgba(10, 10, 10, .1) 100%);
}
.hero-content {
    max-width: 620px;
    color: #fff;
}
.swiper-slide-active .hero-content .hero-tag {
    animation: fadeUp 0s ease 0s both;
}
.swiper-slide-active .hero-content h1 {
    animation: fadeUp 0s ease 0s both;
}
.swiper-slide-active .hero-content p {
    animation: fadeUp 0s ease 0s both;
}
.swiper-slide-active .hero-content .hero-btns {
    animation: fadeUp 0s ease 0s both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes pulse {
    0%, 100% { opacity: 1; }
}
.hero-tag:hover {
    background: rgba(212, 166, 70, .3);
    transform: translateY(-2px);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(90deg, #f1c45b, #D4A646);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    max-width: 520px;
    font-size: 17px;
    line-height: 1.75;
    margin-bottom: 34px;
    color: #d8d8d8;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns .btn-primary {
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    padding: 13px 28px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(212, 166, 70, .3);
}

.hero-btns .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 166, 70, .45);
}

.hero-btns .btn-outline {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding: 13px 28px;
    text-decoration: none;
    font-size: 15px;
    border: 1.5px solid rgba(255,255,255,0.5);
    font-weight: 600;
    border-radius: 6px;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}

.hero-btns .btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: #fff;
    transform: translateY(-3px);
}
.hero-section .swiper-button-prev,
.hero-section .swiper-button-next {
    background: rgba(255,255,255,0.9);
    color: #1a1a1a;
    height: 46px;
    width: 46px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-section .swiper-button-prev:hover,
.hero-section .swiper-button-next:hover {
    background: #D4A646;
    color: #fff;
}

.hero-section .swiper-button-prev::after,
.hero-section .swiper-button-next::after {
    font-size: 16px;
    font-weight: 700;
}
.services {
    position: relative;
    margin-top: -40px;
    z-index: 20;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 10px;
    overflow: hidden;
    place-items: center;
    background: #111;
    padding: 20px;
    gap: 20px;
    align-items: center;
}
.service-card {
    display: flex;
    gap: 20px;
    transition: .35s;
}
.service-card:hover .service-icon {
    background: #d4a646;
    color: #111;
}
.service-content{
    margin-top: 10px;
}
.service-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background: #fff;
    color: #d4a646;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: .35s;
}
.service-content h3 {
    font-size: 16px;
    color: #fff;
    transition: .35s;
    margin-bottom: 5px;
}
.service-content p {
    color: #fff;
    line-height: 1.8;
    font-size: 13px;
    transition: .35s;
}
.about-section{
    padding:40px 0;
    background:#fff;
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-image{
    overflow:hidden;
    border-radius:8px;
    height: 675px;
    width: 100%;
}
.about-image img{
    width:100%;
    object-fit: cover;
    height: 100%;
    border-radius:8px;
    transition:.6s;
}
.about-image:hover img{
    transform:scale(1.08);
}
.section-tag{
    display:inline-block;
    padding:7px 18px;
    background:#f7f2e8;
    color:#c99728;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:10px;
}
.about-content h2{
    font-size:30px;
    line-height:1.2;
    font-weight:700;
    color:#111;
    margin-bottom:15px;
}

.about-content h2 span{
    color:#d4a646;
}

.about-content p{
    color:#666;
    font-size:15px;
    line-height:1.9;
    margin-bottom:8px;
}

.about-btns{
    display:flex;
    gap:18px;
    margin-top:15px;
}

.about-btns .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    background: #D4A646;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    font-weight:600;
    transition:.35s ease;
}

.about-btns .btn-primary:hover{
    background: #ee2323 !important;
}
.program-section{
    padding:40px 0;
    background:#fafafa;
}

.section-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:10px;
}
.section-heading h2{
    font-size:32px;
    margin:0px 0 20px;
    line-height:1.2;
}

.section-heading h2 span{
   color:#d4a646;
}

.program-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
}
.program-card{
    background:#fff;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.program-img{
    height:190px;
    overflow:hidden;
}
.program-img img{
    width:100%;
    height:100%;
    object-fit:cover;
   transition:.6s;
}
.program-card:hover img{
    transform:scale(1.12);
}
.program-content{
   padding:10px;
}
.program-content span{
    display:inline-block;
    color:#d4a646;
    font-weight:600;
    margin-bottom:5px;
}
.program-content h3{
    font-size:20px;
    margin-bottom:6px;
    color:#111;
}
.program-content p{
    color:#666;
    line-height:1.8;
    font-size: 13px;
    margin-bottom:8px;
}
.program-content a{
    text-decoration:none;
    color:#111;
    font-weight:700;
    transition:.3s;
}
.program-card:hover a{
    color:#d4a646;
}
.why-section{
    padding:40px 0;
    background:#fff;
}
.why-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}
.why-image{
    overflow:hidden;
    border-radius:4px;
    height: auto;
}
.why-image img{
    width:100%;
    object-fit: fill;
    border-radius:4px;
    transition:.6s;
}
.why-image:hover img{
    transform:scale(1.04);
}
.why-content h2{
    font-size:25px;
    margin:0px 0 10px;
    line-height:1.2;
}
.why-content h2 span{
    color:#d4a646;
}
.why-content>p{
    color:#666;
    line-height:1.9;
    font-size: 13px;
    margin-bottom:10px;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:28px;
}
.why-box{
    display:flex;
    gap:18px;
    padding:15px;
    border-radius:8px;
    border: 1px solid #ccc;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, .08);
    transition:.35s ease;
}
.why-box:hover{
    border:1px solid #e21616;
    transform: scale(1.01);
}
.why-box .icon{
    width:60px;
    height:60px;
    min-width:60px;
    background:#D4A646;
    color:#111;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}
.why-box h4{
    margin-bottom:6px;
    font-size:18px;
}
.why-box p{
    color:#666;
    font-size: 13px;
    line-height:1.7;
    margin-bottom: 0px;
}
.btn-why{
    padding: 10px 22px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-radius: 5px;
}
.btn-why:hover{
    color: #fff;
    background: #d4a646;
}
.counter-section{
    padding:20px 0;
    
}
.counter-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    background:#111;
    padding: 20px;
    border-radius: 20px;
    place-items: center;
}
.counter-box{
    padding:10px 10px;
    transition:.4s;
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 20px;
}
.counter-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#D4A646;
    color:#111;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    transition:.4s;
}
.testimonial-description {
    line-height: 1.6;
}

.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-text.show-more {
    display: block;
}

.read-more-btn {
    border: 0;
    background: transparent;
    color: #d90000;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-left: 5px;
    white-space: nowrap;
}

.read-more-btn:hover {
    color: #ff3b3b;
}
.counter-box:hover .counter-icon{
    transform:rotateY(180deg);
}
.counter-box h2{
    font-size:32px;
    color:#fff;
    margin-bottom:6px;
    font-weight:700;
}
.counter-box p{
    color:#cfcfcf;
    font-size:13px;
    margin-bottom: 0;
    letter-spacing:.5px; 
}
.testimonial-section{
    padding:40px 0;
    background:#f8f8f8;
}
.testimonialSwiper{
    margin-top:30px;
    padding-bottom:30px;
}
.testimonial-card{
    position:relative;
    background:#fff;
    padding:10px 15px 15px;
    border-radius:6px;
    overflow:hidden;
    border:1px solid #ccc ;
    transition:.4s;
    
    box-shadow:0 15px 45px rgba(0,0,0,.2);
}
.testimonial-card:hover{
    border-color: #e21616;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}
.quote-icon{
    position:absolute;
    top:0px;
    right:15px;
    width:65px;
    height:65px;
    color:#222;
    opacity: 0.08;
    font-size:65px;
    z-index: 0;
}
.stars{
    margin-top:25px;
    color:#f5b301;
    display:flex;
    gap:6px;
    font-size:18px;
}
.testimonial-card p{
    margin:10px 0 15px;
    color:#666;
    line-height:1.9;
    font-size:16px;
}
.client{
    display:flex;
    align-items:center;
    gap:15px;
    border-top:1px solid #eee;
    padding-top:10px;
}
.client img{
    width:80px;
    height:80px;
    border-radius:50%;
    object-fit:cover;
}
.client h4{
    font-size:18px;
    margin-bottom:0px;
}
.client span{
    color:#888;
    font-size: 15px;
}
.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#bbb;
    opacity:1;
    margin-top: 20px;
}
.swiper-pagination-bullet-active{
    width:35px;
    border-radius:20px;
    background:#d4a646;
}
.cta-section{
    padding:0px 0 40px;
    background:#f8f8f8;
}
.cta-wrapper{
    background:#111;
    border-radius:15px;
    overflow:hidden;
    display:grid;
    grid-template-columns:480px 1fr;
    align-items:center;
    position:relative;
}
.cta-wrapper::before{
    content:"";
    position:absolute;
    width:350px;
    height:210px;
    right:-120px;
    top:-120px;
    border-radius:50%;
    background:rgba(212,166,70,.12);
}
.cta-image{
    height:100%;
    height: 300px;
}
.cta-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}
.cta-content{
    position:relative;
    z-index:2;
    padding: 32px 24px;
}
.cta-content h2{
    color:#fff;
    font-size:30px;
    line-height:1.2;
    margin:12px 0;
}
.cta-content h2 span{
    color:#d4a646;
}
.cta-content p{
    color:#d6d6d6;
    font-size:14px;
    line-height:1.9;
    margin-bottom:10px;
    max-width:620px;
}
.cta-btns{
    display:flex;
    gap:20px;
}
.cta-btns .btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 20px;
    color:#fff;
    background: #D4A646;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    white-space: nowrap;
    transition:.35s;
}
.cta-btns .btn-primary:hover{
background: #D4A646 !important;
}
.btn-light{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:6px 20px;
    white-space: nowrap;
    border:2px solid #fff;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}
.btn-light:hover{
    background:#fff;
    color:#111;
}
.footer{
    position:relative;
    background:url("../images/footer.png") center repeat;
    padding:40px 0 0;
    overflow:hidden;
    z-index: 99;
}
.footer-overlay{
    position:absolute;
    inset:0;
    background:#000000;
}
.footer-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.3fr;
     position:relative;
    z-index:2;
    gap:60px;
    padding-bottom:20px;
}
.footer-logo{
    display:inline-block;
    margin-bottom:15px;
}

.footer-logo img{
    width:180px;
}
.footer-box p{
    color:#d4d4d4;
    line-height:1.9;
    margin-bottom:10px;
    font-size: 15px;
}
.footer-box h3{
    color:#fff;
    font-size:24px;
    margin-bottom:10px;
    position:relative;
}
.footer-box h3::after{
    content:"";
    width:55px;
    height:3px;
    background:#d4a646;
    position:absolute;
    left:0;
    bottom:-10px;
}
.footer-box ul{
    list-style:none;
    padding: 0px;
    margin-top: 27px;
}

.footer-box ul li{
    margin-bottom:18px;
}
.footer-box ul li a{
    color:#d4d4d4;
    text-decoration:none;
    transition:.3s;
}
.footer-box ul li a:hover{
    color:#d4a646;
    padding-left:4px;
}
.footer-social{
    display:flex;
    gap:10px;
}
.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.08);
    color:#fff;
    text-decoration: none;
    transition:.35s;
}
.footer-social a:hover{
    background:#d4a646;
    color:#111;
    transform:translateY(-5px);
}
.contact-info li{
    display:flex;
    gap:8px;
    align-items:flex-start;
    color:#fff;
}

.contact-info i{
    color:#D4A646;
    margin-top:5px;
    font-size:18px;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:8px 0;
    text-align:center;
    position: relative;
    z-index: 2;
}
.footer-bottom p{
    color:#fff;
    font-size:15px;
}
.about-hero {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(10, 10, 10, .90) 0%,
        rgba(10, 10, 10, .70) 50%,
        rgba(10, 10, 10, .0) 75%,
        rgba(10, 10, 10, .0) 100%);
}

.about-hero-content {
    color: #fff;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.about-hero-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 20px;
    max-width: 480px;
}
.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.about-breadcrumb a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.about-breadcrumb a:hover {
    color: #D4A646;
}
.about-breadcrumb i {
    font-size: 10px;
    color: #888;
}
.about-breadcrumb span {
    color: #D4A646;
    font-weight: 600;
}
.about-intro {
    padding: 40px 0;
    background: #fff;
}
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-intro-content h2 {
    font-size: 25px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.about-intro-content p {
    font-size: 14.5px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 10px;
}
.about-intro-content .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    padding: 10px 22px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    margin-top: 12px;
    box-shadow: 0 8px 20px rgba(212, 166, 70, .3);
    transition: all 0.3s ease;
}
.about-intro-content .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 166, 70, .45);
}
.about-intro-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.about-intro-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.about-intro-image:hover img {
    transform: scale(1.05);
}
.about-intro-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 166, 70, 0.25);
    border-radius: 16px;
    pointer-events: none;
}
.mv-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}
.mv-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(10,10,10,.88) 0%,
        rgba(10,10,10,.75) 50%,
        rgba(10,10,10,.88) 100%);
}
.mv-header {
    text-align: center;
    max-width: 500px;
    position: relative;
    z-index: 2;
    margin: 0 auto 20px;
}
.mv-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}
.mv-card {
    position: relative;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    padding: 26px 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.mv-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 166, 70, 0.5);
    box-shadow: 0 25px 50px rgba(0,0,0,0.35);
}
.mv-number {
    position: absolute;
    top: 10px;
    right: 24px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: -1;
}
.mv-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(212, 166, 70, .25), rgba(212, 166, 70, .08));
    border: 1px solid rgba(212, 166, 70, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #f1c45b;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}
.mv-card:hover .mv-icon {
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    transform: rotate(-8deg) scale(1.05);
}
.mv-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #D4A646;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.3;
}
.mv-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
}
.mv-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D4A646, #f1c45b);
    transition: width 0.5s ease;
}
.mv-card:hover::after {
    width: 100%;
} 
.commitment-section {
    padding: 40px 0;
    background: #faf9f7;
}
.commitment-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}
.commitment-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}
.commitment-header p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #777;
}
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.commitment-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px 20px;
    text-align: left;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.commitment-icon {
    width: 62px;
    height: 62px;
    border-radius: 7px;
    background: linear-gradient(135deg, rgba(212, 166, 70, .15), rgba(212, 166, 70, .05));
    border: 1px solid rgba(212, 166, 70, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D4A646;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}
.commitment-card:hover .commitment-icon {
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    transform: scale(1.08) rotate(-6deg);
}
.commitment-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.35;
    text-align: center;
}
.commitment-card p {
    font-size: 14px;
    line-height: 1.75;
    color: #777;
    text-align: center;
}
.certification-section {
    padding: 40px 0;
    background: #fff;
}
.certification-header {
    text-align: center;
    margin: 0 auto 35px;
}
.certification-header h2 {
    font-size: 30px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.certification-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    place-items: center;
}
.cert-card {
    gap: 14px;
    position: relative;
    overflow: hidden;
}
.cert-card img {
    width: 100%;
    height: 240px;
    object-fit: contain;
    filter: grayscale(35%);
    opacity: 0.85;
    transition: all 0.4s ease;
    border-radius: 8px;
    padding: 4px;
    border: 1px solid #ddd;
}
.cert-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.02);
    border-color: rgba(212, 166, 70, .3);
}
.gallery-section{
    padding:40px 0;
    background:#f8f9fb;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
}
.gallery-item{
    position:relative;
    overflow:hidden;
    cursor:pointer;
    height:420px;
}
.gallery-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}
.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.4s;
    margin: 10px;
}
.gallery-overlay i{
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:35px;
}
.gallery-item:hover img{
    transform:scale(1.02);
}
.gallery-item:hover .gallery-overlay{
    opacity:1;
}
.image-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.85);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}
.image-popup img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;
}
.close-btn{
    position:absolute;
    top:25px;
    right:35px;
    color:#fff;
    font-size:45px;
    cursor:pointer;
}
.programs-section {
    padding: 40px 0;
    background: #faf9f7;
}
.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.program-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}
.program-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}
.program-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.program-card:hover .program-img img {
    transform: scale(1.03);
}
.program-content {
    padding: 12px 15px 10px;
}
.program-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0px;
    line-height: 1.35;
    text-align: center;
}
.program-content p {
    font-size: 14px;
    line-height: 1.75;
    font-weight: 400;
    color: #3f2d2d;
    margin: 0px;
}
.importance-section {
    padding: 60px 0;
    background: #fff;
}
.importance-section .container-fluid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.importance-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.importance-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.importance-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.importance-image:hover img {
    transform: scale(1.05);
}
.importance-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}
.importance-content > p {
    font-size: 15.5px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 6px;
}
.training-points {
    list-style: none;
    padding: 0;
    margin-top: 28px;
}
.training-points li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    color: #444;
    font-size: 15.5px;
    font-weight: 500;
}
.training-points li:last-child {
    margin-bottom: 0;
}
.training-points li i {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    background: #ff7b29;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform 0.3s ease;
}
.training-points li:hover i {
    transform: scale(1.15) rotate(-8deg);
}
.contact-section {
    padding: 40px 0;
    background: #fff;
}
.contact-header h2 {
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    text-align: center;
    letter-spacing: -0.5px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #faf9f7;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px 10px;
    transition: all 0.35s ease;
}
.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 15px 35px rgba(212, 166, 70, .12);
    border-color: rgba(212, 166, 70, .3);
    transform: translateX(4px);
}
.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(212, 166, 70, .15), rgba(212, 166, 70, .05));
    border: 1px solid rgba(212, 166, 70, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #D4A646;
}
.contact-icon-whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, .15), rgba(37, 211, 102, .05));
    border-color: rgba(37, 211, 102, .3);
    color: #25D366;
}
.contact-info-text span {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 6px;
}
.contact-info-text a {
    display: block;
    font-size: 15.5px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.3s ease;
}
.contact-info-text a:hover {
    color: #D4A646;
}
.contact-address {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    font-weight: 400;
}
.contact-form-box {
    background: #1a1a1a;
    border-radius: 6px;
    padding: 22px 18px;
    position: relative;
    overflow: hidden;
}
.contact-form-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    position: relative;
}
.contact-form-box > p {
    font-size: 14.5px;
    color: #aaa;
    margin-bottom: 10px;
    position: relative;
}
.contact-intro {
    margin-bottom: 10px;
}

.contact-subtitle {
    display: inline-block;
    color: #d90000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.contact-intro h2 {
    margin: 0 0 10px;
    font-size: 20px;
    font-weight: 700;
    color: #222;
}

.contact-intro p {
    margin: 0;
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
}
.form-row {
    display: flex;
    gap: 18px;
    margin-bottom: 12px;
    position: relative;
}
.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-group.full {
    flex: 1 1 100%;
}
.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 14.5px;
    color: #fff;
    outline: none;
    font-family: inherit;
    resize: none;
    width: 100%;
    transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #777;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #D4A646;
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(212, 166, 70, 0.12);
}
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 6px;
    box-shadow: 0 8px 20px rgba(212, 166, 70, .3);
    transition: all 0.3s ease;
    position: relative;
}
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(212, 166, 70, .45);
}
.services-section {
    padding: 40px 0;
    background: #faf9f7;
}


.section-heading h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.75;
    color: #777;
}

.training-programs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tp-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 340px 1fr;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

/* Image side */
.tp-img {
    position: relative;
    height: 100%;
    min-height: 100%;
}

.tp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tp-duration {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(212, 166, 70, .4);
}

/* Content side */
.tp-content {
    padding: 36px 40px;
}

.tp-content h3 {
    font-size: 25px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tp-intro {
    font-size: 14.5px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 26px;
}

/* Category blocks */
.tp-category {
    margin-bottom: 24px;
}

.tp-category:last-child {
    margin-bottom: 0;
}

.tp-category h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.tp-category h4 i {
    width: 30px;
    height: 30px;
    background: rgba(212, 166, 70, .12);
    color: #D4A646;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Tag pills */
.tp-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tp-tags span {
    background: #faf9f7;
    border: 1px solid #eee;
    color: #555;
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tp-tags span:hover {
    background: #D4A646;
    border-color: #D4A646;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Note */
.tp-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: #999;
    font-style: italic;
    margin-top: 14px;
    line-height: 1.6;
}

.tp-note i {
    margin-top: 2px;
    color: #D4A646;
}

@media (max-width: 991px) {
    .tp-card {
        grid-template-columns: 1fr;
    }
    .tp-img {
        height: 240px;
    }
    .tp-content {
        padding: 30px 26px;
    }
}

@media (max-width: 600px) {
    .section-heading h2 {
        font-size: 26px;
    }
    .tp-content h3 {
        font-size: 21px;
    }
    .tp-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }
}
.mode-section {
    padding: 40px 0;
    background: #fff;
}

.mode-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 30px;
}

.mode-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px 18px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mode-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #D4A646, #f1c45b);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.mode-card:hover {
    background: #fff;
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    border-color: transparent;
}

.mode-card:hover::before {
    transform: scaleY(1);
}

.mode-icon {
    width: 62px;
    height: 62px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(212, 166, 70, .15), rgba(212, 166, 70, .05));
    border: 1px solid rgba(212, 166, 70, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #D4A646;
    margin-bottom: 22px;
    transition: all 0.4s ease;
}

.mode-card:hover .mode-icon {
    background: linear-gradient(135deg, #D4A646, #f1c45b);
    color: #1a1a1a;
    transform: scale(1.08) rotate(-6deg);
}

.mode-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.mode-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mode-details li {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.mode-details li:last-child {
    border-bottom: none;
}

.mode-details li strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Training Services */
.mode-services {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 44px 40px;
    text-align: center;
}

.mode-services h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}

.mode-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.mode-service-tags span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: #eee;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mode-service-tags span i {
    width: 18px;
    height: 18px;
    background: #D4A646;
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    flex-shrink: 0;
}

.mode-service-tags span:hover {
    background: rgba(212, 166, 70, .15);
    border-color: rgba(212, 166, 70, .4);
    transform: translateY(-3px);
}
@media (max-width: 991px) {
    .mode-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .section-heading h2 {
        font-size: 28px;
    }
    .mode-services {
        padding: 34px 24px;
    }
}

@media (max-width: 600px) {
    .section-heading h2 {
        font-size: 24px;
    }
    .mode-service-tags span {
        font-size: 13px;
        padding: 8px 16px;
    }
}
.policy-section {
    padding: 50px 0;
    background: #fff;
}
.policy-updated {
    font-size: 13.5px;
    font-weight: 600;
    color: #b5872f;
    background: rgba(212, 166, 70, .08);
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 10px;
}

.policy-block {
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ccc;
}

.policy-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-block h2 {
    font-size: 21px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.policy-block p {
    font-size: 15px;
    line-height: 1.85;
    color: #666;
    margin-bottom: 6px;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}
.policy-list li:last-child {
    margin-bottom: 0;
}
.policy-list li i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #D4A646;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-top: 2px;
}
.policy-contact {
    background: #faf9f7;
    border-radius: 8px;
    padding: 14px;
    border: 1px solid #ccc;
}

.policy-contact-list {
    list-style: none;
    padding: 0;
    margin-top: 16px;
}

.policy-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: #444;
    font-weight: 500;
    margin-bottom: 12px;
}

.policy-contact-list li:last-child {
    margin-bottom: 0;
}

.policy-contact-list li i {
    width: 30px;
    height: 30px;
    background: rgba(212, 166, 70, .12);
    color: #D4A646;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .policy-hero {
        height: 220px;
    }
    .policy-section {
        padding: 55px 0;
    }
    .policy-section .container-fluid {
        padding: 0 20px;
    }
    .policy-block h2 {
        font-size: 18px;
    }
    .policy-block p,
    .policy-list li {
        font-size: 14px;
    }
}
.dropdown {
    position: relative;
}

.dropdown-menu1 {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 190px;
    padding: 10px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 999;
}

.dropdown-menu1 li {
    list-style: none;
    border-bottom: none !important;
}

.dropdown-menu1 li a {
    display: block;
    padding: 12px 20px;
    color: #222;
    text-decoration: none;
}

.dropdown-menu1 li a:hover {
    background: #e21616;
    color: #fff;
}

.dropdown.active .dropdown-menu1 {
    display: block;
}
.pricing-section {
    padding: 40px 0;
    background: #faf9f7;
}

.pricing-section .container-fluid {
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-block {
    margin-bottom: 20px;
}

.pricing-block:last-child {
    margin-bottom: 0;
}

.pricing-block h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 18px;
}

.pricing-block h3 i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, rgba(212, 166, 70, .15), rgba(212, 166, 70, .05));
    border: 1px solid rgba(212, 166, 70, .3);
    color: #D4A646;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.pb-note {
    font-size: 13px;
    font-weight: 500;
    color: #999;
}
.pricing-table-wrap {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    overflow-x: auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pricing-table thead th {
    background: #1a1a1a;
    color: #f1c45b;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    padding: 16px 20px;
}

.pricing-table tbody td {
    padding: 16px 20px;
    font-size: 14.5px;
    color: #444;
    border-bottom: 1px solid #f2f2f2;
    font-weight: 500;
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table tbody tr:hover td {
    background: #faf9f7;
}

.price-highlight {
    color: #b5872f;
    font-weight: 800;
    font-size: 15.5px;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .pricing-section {
        padding: 65px 0;
    }
    .pricing-section .container-fluid {
        padding: 0 20px;
    }
    .section-heading h2 {
        font-size: 26px;
    }
    .pricing-block h3 {
        font-size: 17px;
    }
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 12px 14px;
        font-size: 13px;
    }
}