:root {
    --primary-color: #4B2C71; /* লোগোর বেগুনী কালার */
    --secondary-color: #215d81; /* আপনার সাইটের নীল কালার */
    --white: #ffffff;
    --transition: all 0.4s ease;
}

/* Header Top */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-links ul { margin: 0; padding: 0; list-style: none; display: flex; gap: 20px; }
.header-links li i { color: #f39c12; margin-right: 5px; }
.header-social a { color: white; margin-left: 15px; transition: var(--transition); }
.header-social a:hover { color: #f39c12; }

/* Logo Styling */
.logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-box img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.logo-text { display: flex; flex-direction: column; }
.brand-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}
.brand-sub {
    font-size: 0.85rem;
    color: var(--secondary-color);
    letter-spacing: 1px;
    font-weight: 600;
}

/* Menu Styling */
/* আপনার মেনু এরিয়া */
.menu-area {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    z-index: 999; /* যেন মেনু সবার উপরে থাকে */
}

/* মেইন মেনু আইটেম */
.main-menu ul li {
    display: inline-block;
    position: relative; /* এটি অত্যন্ত জরুরি: যেন সাব-মেনু এটার সাপেক্ষে বসে */
    margin: 0 15px;
    padding: 10px 0; /* হোভার এরিয়া বাড়ানোর জন্য */
}

/* সাব-মেনু ফিক্স */
.main-menu ul li .sub-menu {
    position: absolute; /* মেইন মেনুর ফ্লো থেকে একে আলাদা করে ফেলবে */
    top: 100%; /* মেইন মেনু লিংকের ঠিক নিচ থেকে শুরু হবে */
    left: 0;
    min-width: 220px; /* সাব-মেনুর চওড়া */
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 15px 0;
    border-radius: 0 0 8px 8px;
    border-top: 3px solid #dfa224; /* আপনার থিম কালার */
    
    /* শুরুতে হাইড করে রাখার জন্য */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); /* হালকা নিচে স্লাইড এনিমেশন */
    transition: all 0.3s ease;
    z-index: 9999; /* যেন স্লাইডার বা অন্য কিছুর নিচে না চলে যায় */
}

/* হোভার করলে সাব-মেনু দেখাবে */
.main-menu ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* আগের জায়গায় ফিরে আসবে */
}

/* সাব-মেনু আইটেমের ভেতর আন্ডারলাইন বন্ধ করা (আপনার ওল্ড কোডের সাথে মিল রেখে) */
.main-menu ul li .sub-menu li {
    display: block;
    margin: 0;
}

.main-menu ul li .sub-menu li a {
    padding: 10px 20px;
    display: block;
    text-transform: capitalize;
    color: #333;
    font-size: 14px;
    font-weight:bold;
}

.main-menu ul li .sub-menu li a::after {
    display: none; /* সাব-মেনুর লিংকে আন্ডারলাইন হবে না */
}

.main-menu ul li .sub-menu li a:hover {
    color: #dfa224;
    background: rgba(223, 162, 36, 0.05);
    padding-left: 25px; /* হালকা পুশ ইফেক্ট */
}
/* Button Styling */
.th-btn {
    background: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(75, 44, 113, 0.3);
}

.th-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .logo-box img { height: 50px; }
    .brand-name { font-size: 1rem; }
    .brand-sub { font-size: 0.7rem; }
    
    .mobile-logo img{height: 90px;}
}
















/* Container Height Control */
.kw-compact-slider {
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.kw-hero-inner {
    position: relative;
    min-height: 400px; /* উচ্চতা কমানো হয়েছে যাতে নোটিশ দেখা যায় */
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    padding: 60px 0;
}

.kw-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(75, 44, 113, 0.9) 0%, rgba(75, 44, 113, 0.6) 100%);
    z-index: 1;
}

.kw-content-left, .kw-content-right {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Typography */
.kw-sub-title {
    color: #dfa224;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.kw-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
}

.kw-text-gold { color: #dfa224; }

.kw-mid-title {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 5px;
}

.kw-hero-text {
    font-size: 1.1rem;
    line-height: 1.6;
    border-left: 3px solid #dfa224;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.kw-btn-group { display: flex; gap: 15px; }

.kw-btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.kw-btn-fill { background: #dfa224; color: #fff; }
.kw-btn-fill:hover { background: #fff; color: #4b2c71; }

.kw-btn-outline { border: 2px solid #fff; color: #fff; }
.kw-btn-outline:hover { background: #fff; color: #4b2c71; }

/* Navigation Arrows */
.kw-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff !important;
    border-radius: 50%;
    transition: 0.3s;
}
.kw-arrow:after { content: none; }
.kw-arrow:hover { background: #dfa224; }

/* Responsive */
@media (max-width: 991px) {
    .kw-hero-inner { min-height: 400px; text-align: center; }
    .kw-main-title { font-size: 2rem; }
    .kw-btn-group { justify-content: center; }
}














/* Notice Bar Wrapper */
.kw-notice-bar {
    background: #4b2c71; 
    border-top: 2px solid #dfa224; 
    border-bottom: 2px solid #dfa224;
    overflow: hidden;
    height: 52px; /* উচ্চতা কিছুটা কমানো হয়েছে যাতে লেখা উপরে মনে হয় */
    display: flex;
    align-items: center;
    position: relative;
    z-index: -99;
}

/* Label Style */
.kw-notice-label {
    background: #dfa224;
    color: #4b2c71;
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
}

/* Ticker Container */
.kw-notice-ticker {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Ticker Content Animation - Speed Reduced */
.kw-ticker-content {
    display: flex;
    align-items: center;
    /* এখানে 40s করা হয়েছে যাতে স্পিড অনেক কমে যায় */
    animation: kwTickerAnimation 70s linear infinite; 
}

/* Individual Item - Text Position Fix */
.kw-ticker-item {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    padding: 0 40px;
    height: 100%;
}

.kw-ticker-item .kw-text {
    color: #ffffff !important;
    font-size: 15px;
    font-weight: 500;
    /* লেখা উপরে তোলার জন্য নেগেটিভ মার্জিন বা প্যাডিং ব্যবহার */
    margin-top: -2px; 
    line-height: 1;
    display: inline-block;
}

.kw-ticker-content:hover {
    animation-play-state: paused; /* মাউস রাখলে এনিমেশন পজ হবে */
    cursor: pointer;
}

/* Animation Speed Control */
@keyframes kwTickerAnimation {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-150%); } /* লুপ স্মুথ করার জন্য বাড়ানো হয়েছে */
}

/* Mobile responsive */
@media (max-width: 768px) {
    .kw-notice-bar { height: 53px; }
    .kw-ticker-item .kw-text { 
        font-size: 13px;
        margin-top: -1px; 
    }
}

























/* Premium About Section Styling */
.kw-premium-about {
    padding: 98px 0;
    background: #fdfdfd;
    position: relative;
    overflow: hidden;
}

/* Image Stack Animation */
.kw-image-stack {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.kw-img-card {
    border-radius: 30px;
    transition: all 0.4s ease;
}

.kw-main-card {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 450px;
    height: 500px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.kw-main-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kw-back-card {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 20px;
    width: 100%;
    max-width: 450px;
    height: 500px;
    background: #4b2c71; /* Purple */
    transform: rotate(6deg);
    opacity: 0.1;
}

.kw-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.kw-badge-icon {
    width: 50px;
    height: 50px;
    background: #dfa224; /* Gold */
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Content Area Styling */
.kw-section-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.kw-tag-line {
    width: 40px;
    height: 3px;
    background: #dfa224;
}

.kw-tag-text {
    color: #4b2c71;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 14px;
}

.kw-display-title {
    font-size: 45px;
    font-weight: 900;
    color: #222;
    line-height: 1.2;
    margin-bottom: 25px;
}

.kw-about-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Feature Cards */
.kw-feature-cards {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.kw-f-card {
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.kw-f-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.purple-bg { background: #4b2c71; }
.gold-bg { background: #dfa224; }

.kw-f-text h5 {
    font-size: 16px;
    margin: 0;
    font-weight: 700;
}

.kw-f-text span {
    font-size: 12px;
    color: #888;
}

/* Contact Mini Bar */
.kw-contact-mini-bar {
    background: #4b2c71;
    padding: 15px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    color: #fff;
    max-width: 400px;
}

.kw-mini-icon {
    font-size: 24px;
    color: #dfa224;
    margin-right: 15px;
}

.kw-mini-text span { font-size: 12px; opacity: 0.8; }
.kw-mini-text h6 { font-size: 18px; margin: 0; font-weight: 700;color:white; }

.kw-circle-btn {
    margin-left: auto;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #4b2c71;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}

.kw-circle-btn:hover {
    background: #dfa224;
    color: #fff;
    transform: rotate(-45deg);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .kw-display-title { font-size: 32px; }
    .kw-feature-cards { flex-direction: column; }
    .kw-image-stack { margin-bottom: 60px; }
}




























/* Gorgeous Mission Section */
.kw-gorgeous-mission {
    padding: 100px 0;
    background: #0f0a16; /* Deep Dark Background for contrast */
    position: relative;
    overflow: hidden;
}

.kw-blur-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 44, 113, 0.4) 0%, rgba(223, 162, 36, 0.2) 100%);
    filter: blur(120px);
    z-index: 1;
}

/* Title Styling */
.kw-title-block {
    position: relative;
    z-index: 2;
    color: #fff;
}

.kw-label {
    background: rgba(223, 162, 36, 0.2);
    color: #dfa224;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.kw-title-main {
    font-size: 48px;
    font-weight: 900;
    margin-top: 15px;
}

.text-gold { color: #dfa224; }

/* Fancy Card Styling */
.kw-fancy-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 40px;
    overflow: hidden;
    height: 100%;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.kw-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4b2c71 0%, #2a1940 100%);
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.kw-fancy-card:hover .kw-card-overlay {
    opacity: 1;
}

.kw-fancy-card:hover {
    transform: translateY(-15px);
    border-color: #dfa224;
}

/* Icon Box */
.kw-icon-box {
    width: 80px;
    height: 80px;
    background: #4b2c71;
    color: #dfa224;
    font-size: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: 0.5s;
}

.kw-fancy-card:hover .kw-icon-box {
    background: #fff;
    color: #4b2c71;
    transform: scale(1.1) rotate(10deg);
}

/* Content Text */
.kw-fancy-title {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}

.kw-fancy-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.kw-fancy-card:hover .kw-fancy-text {
    color: #fff;
}

/* Arrow Button */
.kw-arrow-btn {
    color: #dfa224;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.kw-arrow-btn span {
    width: 30px;
    height: 2px;
    background: #dfa224;
    display: inline-block;
    transition: 0.3s;
}

.kw-subtitle-text{
    color:white;
}
.text-new-white{
    color:white;
}

.kw-fancy-card:hover .kw-arrow-btn {
    color: #fff;
}
.kw-fancy-card:hover .kw-arrow-btn span {
    background: #fff;
    width: 50px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .kw-title-main { font-size: 35px; }
    .kw-fancy-card { padding: 40px 25px; }
}



























/* CTA Section Styling */
.kw-cta-wrapper {
    position: relative;
    z-index: 10;
}

.kw-cta-card {
    position: relative;
    height: 320px;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 40px;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.kw-cta-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.kw-cta-card:hover .kw-cta-img {
    transform: scale(1.1);
}

.kw-cta-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Gradients based on your Logo Colors */
.purple-grad {
    background: linear-gradient(90deg, #4b2c71 30%, rgba(75, 44, 113, 0.4) 100%);
}

.gold-grad {
    background: linear-gradient(270deg, #dfa224 30%, rgba(223, 162, 36, 0.4) 100%);
}

.kw-cta-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.kw-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
}

.kw-cta-title {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
}

.kw-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 80%;
}

.text-lg-end .kw-cta-text {
    margin-left: auto;
}

/* Button Styles */
.kw-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gold {
    background: #dfa224;
    color: #fff;
}

.btn-gold:hover {
    background: #fff;
    color: #4b2c71;
    transform: translateY(-3px);
}

.btn-purple {
    background: #4b2c71;
    color: #fff;
}

.btn-purple:hover {
    background: #fff;
    color: #dfa224;
    transform: translateY(-3px);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .kw-cta-card { height: auto; padding: 40px 30px; }
    .kw-cta-text { max-width: 100%; }
    .kw-cta-title { font-size: 24px; }
    .text-lg-end { text-align: left !important; }
    .text-lg-end .kw-cta-icon { margin-left: 0 !important; }
    .gold-grad { background: linear-gradient(90deg, #dfa224 40%, rgba(223, 162, 36, 0.4) 100%); }
}





















/* CTA Premium Section Styling */
.kw-cta-premium {
    padding: 100px 0;
    background: #4b2c71; /* লোগোর মেইন পার্পল কালার */
    position: relative;
    overflow: hidden;
    margin-top: 100px; /* মার্জিন একটু কমানো হয়েছে প্রিমিয়াম লুকের জন্য */
    border-radius: 50px 50px 0 0; /* উপরের দিকে কার্ভ ডিজাইন */
}

/* Background Shapes */
.kw-cta-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    opacity: 0.3;
}

.kw-shape-top-left {
    background: #dfa224; /* Golden */
    top: -150px;
    left: -150px;
}

.kw-shape-bottom-right {
    background: #ffffff;
    bottom: -150px;
    right: -150px;
}

/* Floating Icons Animation */
.kw-floating-icon {
    position: absolute;
    color: rgba(223, 162, 36, 0.2);
    font-size: 40px;
    z-index: 1;
    animation: kwFloat 6s ease-in-out infinite;
}

.icon-1 { top: 15%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 12%; animation-delay: 2s; }
.icon-3 { bottom: 15%; left: 15%; animation-delay: 4s; }

@keyframes kwFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

/* CTA Box Content */
.kw-cta-box {
    position: relative;
    z-index: 5;
    padding: 20px;
}

.kw-cta-icon-main {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(223, 162, 36, 0.5);
    color: #dfa224;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 0 30px rgba(223, 162, 36, 0.2);
}

.kw-cta-tagline {
    color: #dfa224;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.kw-cta-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 40px;
}

/* Premium Button Design */
.kw-premium-btn {
    display: inline-flex;
    align-items: center;
    background: #dfa224;
    color: #4b2c71;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(223, 162, 36, 0.4);
}

.kw-btn-arrow {
    margin-left: 15px;
    width: 30px;
    height: 30px;
    background: #4b2c71;
    color: #dfa224;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: 0.4s;
}

.kw-premium-btn:hover {
    background: #ffffff;
    color: #4b2c71;
    transform: translateY(-5px);
}

.kw-premium-btn:hover .kw-btn-arrow {
    transform: translateX(5px);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .kw-cta-main-title { font-size: 28px; }
    .kw-cta-premium { padding: 60px 0; border-radius: 30px 30px 0 0; }
    .kw-cta-icon-main { width: 70px; height: 70px; font-size: 28px; }
}

























/* Founder Section Wrapper */
.kw-founder-area {
    padding: 96px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.kw-abstract-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(75, 44, 113, 0.03);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    z-index: 1;
}

/* Left Side Content */
.kw-mini-tag {
    color: #dfa224;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 15px;
}

.kw-section-title {
    font-size: 40px;
    font-weight: 800;
    color: #4b2c71;
    margin-bottom: 20px;
}

.kw-title-bottom-line {
    width: 60px;
    height: 4px;
    background: #dfa224;
    margin-bottom: 25px;
}

.kw-section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* Founder Thumb Box */
.kw-founder-thumb-box {
    position: relative;
    margin-top: 50px;
    padding-left: 20px;
}

.kw-thumb-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.kw-thumb-img img { width: 100%; }

.kw-experience-label {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #4b2c71;
    padding: 20px 30px;
    border-radius: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(75, 44, 113, 0.3);
}

.kw-experience-label h4 { color: #dfa224; margin: 0; font-size: 18px; }
.kw-experience-label p { margin: 0; font-size: 13px; opacity: 0.8; }

/* Right Side Service Cards */
.kw-service-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kw-modern-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.kw-card-inner {
    display: flex;
    align-items: center;
    gap: 25px;
}

.kw-card-icon {
    width: 70px;
    height: 70px;
    background: #f4f0f9;
    color: #4b2c71;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: 0.4s;
}

.kw-card-content { flex: 1; }
.kw-card-content h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.kw-card-content h3 a { color: #222; text-decoration: none; transition: 0.3s; }
.kw-card-content p { margin: 0; color: #777; font-size: 14px; }

.kw-card-arrow {
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b2c71;
    transition: 0.4s;
    text-decoration: none;
}

/* Hover Effects */
.kw-modern-card:hover {
    transform: scale(1.02);
    border-color: #dfa224;
    box-shadow: 0 15px 35px rgba(75, 44, 113, 0.08);
}

.kw-modern-card:hover .kw-card-icon {
    background: #4b2c71;
    color: #dfa224;
}

.kw-modern-card:hover .kw-card-content h3 a {
    color: #4b2c71;
}

.kw-modern-card:hover .kw-card-arrow {
    background: #dfa224;
    border-color: #dfa224;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .kw-section-title { font-size: 32px; }
    .kw-founder-thumb-box { margin-bottom: 60px; }
    .kw-card-inner { flex-direction: column; text-align: center; }
    .kw-card-arrow { margin-top: 10px; }
}

























/* Premium Video/Feature Section */
.kw-video-premium {
    background-color: #4b2c71; /* লোগোর মেইন পার্পল কালার */
    position: relative;
    padding: 90px 0;
}

/* Abstract Background Decorations */
.kw-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 1;
}

.kw-shape-top-left {
    width: 300px;
    height: 300px;
    background: #dfa224; /* Golden */
    top: -50px;
    left: -50px;
}

.kw-shape-bottom-right {
    width: 400px;
    height: 400px;
    background: #ffffff;
    bottom: -50px;
    right: -50px;
}

/* Content Styling */
.kw-section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.kw-tag-icon {
    color: #dfa224;
    font-size: 20px;
}

.kw-tag-text {
    color: #dfa224;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.kw-display-title {
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.kw-title-separator {
    width: 70px;
    height: 5px;
    background: #dfa224;
    border-radius: 10px;
    margin-bottom: 30px;
}

.kw-description {
    font-size: 17px;
    line-height: 1.8;
}

.kw-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    margin-bottom: 10px;
}

.kw-check-item i {
    color: #dfa224;
}

/* Visual Card Styling */
.kw-visual-card {
    position: relative;
    padding: 20px;
}

.kw-image-container {
    position: relative;
    z-index: 5;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.kw-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.kw-visual-card:hover .kw-main-img {
    transform: scale(1.08);
}

/* Glassmorphism Overlay */
.kw-glass-overlay {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.kw-overlay-icon {
    width: 45px;
    height: 45px;
    background: #dfa224;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #4b2c71;
}

.kw-overlay-text strong {
    display: block;
    font-size: 16px;
}

.kw-overlay-text span {
    font-size: 12px;
    opacity: 0.8;
}

.kw-outer-frame {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(223, 162, 36, 0.3);
    border-radius: 40px;
    transform: translate(-15px, 15px);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .kw-display-title {
        font-size: 32px;
    }
    .kw-video-content {
        margin-bottom: 50px;
        text-align: center;
    }
    .kw-section-tag, .kw-title-separator {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
    .kw-glass-overlay {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }
}



















/* Section Base */
.kw-modern-feature {
    padding: 90px 0;
    background: #0f0a16; /* Dark Premium Background */
    position: relative;
    overflow: hidden;
}

.kw-glow-blob {
    position: absolute;
    top: 50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: rgba(75, 44, 113, 0.3);
    filter: blur(120px);
    border-radius: 50%;
}

/* Badge Styling */
.kw-badge-group {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(223, 162, 36, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.kw-badge-dot {
    width: 8px;
    height: 8px;
    background: #dfa224;
    border-radius: 50%;
    box-shadow: 0 0 10px #dfa224;
}

.kw-badge-text {
    color: #dfa224;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

/* Content Text */
.kw-title-main {
    font-size: 45px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 25px;
}

.kw-text-box {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Point Grid */
.kw-point-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.kw-point-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.kw-point-icon {
    font-size: 24px;
    color: #dfa224;
}

.kw-point-info h6 { color: #fff; margin: 0; font-size: 16px; }
.kw-point-info span { color: rgba(255, 255, 255, 0.5); font-size: 12px; }

/* Visual Wrapper */
.kw-visual-wrapper {
    position: relative;
    padding: 30px;
    z-index: 5;
}

.kw-main-frame {
    position: relative;
    z-index: 10;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.kw-img-fluid {
    width: 100%;
    transition: 0.6s ease;
}

.kw-visual-wrapper:hover .kw-img-fluid {
    transform: scale(1.05);
}

/* Floating Pill */
.kw-info-pill {
    position: absolute;
    top: 30px;
    right: 3px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 20;
}

.kw-pill-icon { color: #4b2c71; font-size: 20px; }
.kw-pill-content strong { display: block; font-size: 14px; color: #333; }
.kw-pill-content span { font-size: 11px; color: #777; }

/* Pulse Button */
.kw-pulse-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #dfa224;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    cursor: pointer;
    box-shadow: 0 0 0 0 rgba(223, 162, 36, 0.5);
    animation: kwPulse 2s infinite;
}

@keyframes kwPulse {
    0% { box-shadow: 0 0 0 0 rgba(223, 162, 36, 0.7); }
    70% { box-shadow: 0 0 0 30px rgba(223, 162, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(223, 162, 36, 0); }
}

/* Shapes */
.kw-geo-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30px;
    z-index: 1;
    border: 2px solid;
}

.kw-shape-gold {
    border-color: #dfa224;
    transform: rotate(-5deg);
    opacity: 0.3;
}

.kw-shape-purple {
    border-color: #4b2c71;
    transform: rotate(5deg);
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 991px) {
    .kw-title-main { font-size: 32px; }
    .kw-visual-wrapper { margin-bottom: 60px; }
    .kw-info-pill {
        right: 15px; /* মোবাইলে একদম কিনারে লেগে যাওয়া রোধ করতে */
        top: 20px;   /* মোবাইলে একটু উপরে উঠিয়ে দিতে পারেন */
        padding: 10px 15px; /* ছোট স্ক্রিনে প্যাডিং কিছুটা কমালে ভালো দেখাবে */
    }
    .kw-point-grid { grid-template-columns: 1fr; }
}

















/* Section Container */
.kw-org-section {
    padding: 90px 0;
    background: #fdfbff; /* Very light purple tint */
    position: relative;
    overflow: hidden;
}

/* Title Styling */
.kw-subtitle {
    color: #4b2c71;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.kw-main-title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
}

.text-gold { color: #dfa224; }

.kw-divider {
    width: 60px;
    height: 4px;
    background: #dfa224;
    margin: 20px auto 0;
    border-radius: 10px;
}

/* Grid Layout */
.kw-org-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Card Styling */
.kw-org-card {
    background: #ffffff;
    width: calc(50% - 30px);
    max-width: 500px;
    height: 250px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(75, 44, 113, 0.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.kw-logo-box {
    position: relative;
    z-index: 2;
    transition: transform 0.5s ease;
    padding: 30px;
}

.kw-logo-box img {
    max-width: 250px;
    max-height: 120px;
    object-fit: contain;
    filter: grayscale(100%); /* Initially grayscale for professional look */
    opacity: 0.7;
    transition: 0.5s ease;
}

/* Card Hover Effects */
.kw-org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(75, 44, 113, 0.1);
    border-color: #dfa224;
}

.kw-org-card:hover .kw-logo-box img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.kw-card-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(223, 162, 36, 0.1) 0%, transparent 70%);
    top: 100%; /* Hidden initially */
    transition: 0.5s ease;
    z-index: 1;
}

.kw-org-card:hover .kw-card-glow {
    top: 0;
}

/* Link Hint (Visit Website/Watch Video) */
.kw-link-hint {
    position: absolute;
    bottom: -40px;
    background: #4b2c71;
    color: #dfa224;
    padding: 8px 25px;
    border-radius: 50px 50px 0 0;
    font-size: 14px;
    font-weight: 700;
    transition: 0.4s ease;
    z-index: 3;
}

.kw-org-card:hover .kw-link-hint {
    bottom: 0;
}

/* Full Responsive Adjustment */
@media (max-width: 991px) {
    .kw-org-card {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 576px) {
    .kw-main-title { font-size: 28px; }
    .kw-logo-box img { max-width: 180px; }
}



































/* Base Section */
.kw-contact-premium {
    background: #0f0a16;
    overflow: hidden;
}

/* Form Panel */
.kw-form-panel {
    background: linear-gradient(135deg, #4b2c71 0%, #2a1940 100%);
    padding: 100px 80px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.kw-tag {
    color: #dfa224;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
}

.kw-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
}

.text-gold { color: #dfa224; }

/* Input Styling */
.kw-input-group {
    position: relative;
    margin-bottom: 25px;
}

.kw-input-group i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(223, 162, 36, 0.6);
    font-size: 18px;
}

.kw-input-group textarea ~ i {
    top: 25px;
    transform: none;
}

.kw-input-group input, 
.kw-input-group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 15px 15px 55px;
    color: #fff;
    transition: 0.3s;
}

.kw-input-group input:focus, 
.kw-input-group textarea:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: #dfa224;
    outline: none;
    box-shadow: 0 0 15px rgba(223, 162, 36, 0.2);
}

/* Submit Button */
.kw-submit-btn {
    background: #dfa224;
    color: #4b2c71;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.4s;
    width: 100%;
    cursor: pointer;
}

.kw-submit-btn:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Map Panel */
.kw-map-panel {
    position: relative;
    min-height: 500px;
    height: 100%;
}

.kw-map-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.kw-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Dark Map Mode */
}

.kw-map-label {
    position: absolute;
    top: 30px;
    right: 30px;
    background: #ffffff;
    padding: 12px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b2c71;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1199px) {
    .kw-form-panel { padding: 80px 40px; }
}

@media (max-width: 767px) {
    .kw-title { font-size: 32px; }
    .kw-form-panel { padding: 60px 20px; }
    .kw-map-panel { height: 400px; }
}












































/* Section Container */
.kw-founder-msg-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kw-msg-wrapper {
    background: #fdfbff;
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(75, 44, 113, 0.05);
    position: relative;
}

/* Image Styling */
.kw-founder-img-box {
    position: relative;
    z-index: 5;
    padding-right: 30px;
}

.kw-img-frame {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.kw-img-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: 0.5s ease;
}

.kw-founder-img-box:hover .kw-img-frame img {
    transform: scale(1.05);
}

.kw-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background: #dfa224;
    border-radius: 30px;
    z-index: 1;
    opacity: 0.1;
}

.kw-badge-float {
    position: absolute;
    bottom: 30px;
    right: 0;
    width: 70px;
    height: 70px;
    background: #4b2c71;
    color: #dfa224;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(75, 44, 113, 0.3);
}

/* Text Content Styling */
.kw-msg-text-area {
    position: relative;
    padding-left: 20px;
}

.kw-quote-icon {
    font-size: 60px;
    color: rgba(75, 44, 113, 0.08);
    position: absolute;
    top: -40px;
    left: 0;
}

.kw-msg-subtitle {
    color: #dfa224;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.kw-main-description {
    font-size: 18px;
    color: #444;
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 35px;
}

/* Founder Name & Info */
.kw-signature-line {
    width: 50px;
    height: 3px;
    background: #dfa224;
    margin-bottom: 15px;
}

.kw-f-name {
    font-size: 24px;
    font-weight: 800;
    color: #4b2c71;
    margin-bottom: 5px;
}

.kw-f-designation {
    font-size: 15px;
    color: #777;
    font-weight: 600;
    margin: 0;
}

/* Responsive View */
@media (max-width: 991px) {
    .kw-msg-wrapper { padding: 40px 25px; border-radius: 25px; }
    .kw-founder-img-box { margin-bottom: 50px; padding-right: 0; }
    .kw-img-frame img { height: 400px; }
    .kw-main-description { font-size: 16px; }
}






























/* Base Style */
.kw-premium-footer {
    background: #4b2c71; /* লোগোর পার্পল কালার */
    position: relative;
    padding-top: 50px;
    color: #ffffff;
}

/* Curve Shape */
.kw-footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.kw-footer-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.kw-footer-curve .shape-fill {
    fill: #ffffff; /* উপরের সেকশনের ব্যাকগ্রাউন্ডের সাথে মিলবে */
}

/* Newsletter Box */
.kw-newsletter-box {
    background: #dfa224; /* গোল্ডেন কালার */
    padding: 40px 60px;
    border-radius: 30px;
    margin-bottom: 80px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.kw-news-text h3 { color: #4b2c71; font-weight: 800; margin: 0; }
.kw-news-text p { color: #4b2c71; margin-top: 5px; opacity: 0.8; }

.kw-news-form {
    display: flex;
    background: #fff;
    padding: 8px;
    border-radius: 15px;
}

.kw-news-form input {
    flex: 1;
    border: none;
    padding-left: 15px;
    outline: none;
    background: transparent;
}

.kw-news-form button {
    background: #4b2c71;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    transition: 0.3s;
}

/* Widget Styles */
.kw-footer-widget { margin-bottom: 30px; }
.kw-footer-logo img { height: 70px; margin-bottom: 25px; filter: brightness(0) invert(1); }
.kw-about-desc { font-size: 15px; opacity: 0.8; line-height: 1.7;color:white; }

.kw-widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    color:white;
}

.kw-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: #dfa224;
}

.kw-footer-links { list-style: none; padding: 0; }
.kw-footer-links li { margin-bottom: 12px; }
.kw-footer-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.kw-footer-links li a:hover { color: #dfa224; padding-left: 8px; }

/* Contact Widget */
.kw-contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.kw-ci-icon { color: #dfa224; font-size: 18px; }
.kw-ci-text span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); }
.kw-ci-text a { color: #fff; text-decoration: none; font-weight: 600; }

.kw-footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    transition: 0.3s;
}

.kw-footer-btn:hover { background: #dfa224; color: #4b2c71; border-color: #dfa224; }

/* Social Icons */
.kw-footer-social { display: flex; gap: 12px; margin-top: 25px; }
.kw-footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.kw-footer-social a:hover { background: #dfa224; color: #4b2c71; transform: translateY(-5px); }

/* Copyright area */
.kw-copyright-area {
    margin-top: 80px;
    padding: 25px 0;
    background: rgba(0,0,0,0.2);
}

.kw-copyright-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.kw-copyright-inner p { margin: 0; opacity: 0.6; font-size: 14px; }
.kw-copyright-links a { color: #fff; opacity: 0.6; text-decoration: none; margin-left: 20px; font-size: 14px; }

/* Responsive */
@media (max-width: 991px) {
    .kw-newsletter-box { padding: 30px; margin-bottom: 60px; }
    .kw-copyright-inner { justify-content: center; text-align: center; }
}