html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.about-section {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    padding: 100px 10%;

    flex-wrap: wrap;

}

.about-left {

    flex: 1;

    min-width: 300px;

}

.about-left img {

    width: 100%;

    border-radius: 20px;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);

}

.about-right {

    flex: 1;

    min-width: 320px;

}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #f6f0e6;

    color: #b08d57;

    border-radius: 30px;

    font-weight: 600;

    margin-bottom: 15px;

}

.about-right h2 {

    font-size: 40px;

    margin-bottom: 20px;

    line-height: 1.2;

}

.about-right p {

    line-height: 1.8;

    color: #555;

    margin-bottom: 30px;

}

.about-cards {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.about-card {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    padding: 20px;

    background: #fff;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

    transition: .3s;

}

.about-card:hover {

    transform: translateY(-5px);

}

.about-card i {

    font-size: 28px;

    color: #b08d57;

    margin-top: 5px;

}

.about-card h4 {

    margin-bottom: 5px;

}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 60px;
    gap: 60px;
    position: relative;
}

.hero-features {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

.service-card,
.training-card,
.posh-card,
.impact-card,
.testimonial-card,
.industry-box {

    transition: .35s ease;

}

.service-card:hover,
.training-card:hover,
.posh-card:hover,
.impact-card:hover,
.testimonial-card:hover,
.industry-box:hover {

    transform: translateY(-12px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);

}

.hero-features i {
    color: #b08d57;
    font-size: 18px;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFF8EE;
    color: #1E1E1E;
    overflow-x: hidden;
    position: relative;
}

body.nav-open {
    overflow: hidden;
}

/* =========================
   HAMBURGER BUTTON
========================= */
.hamburger-btn {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 60, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 234, 210, 0.96));
    color: #c89b3c;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(200, 155, 60, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.hamburger-btn i {
    font-size: 18px;
}

.hamburger-btn:hover {
    box-shadow: 0 16px 32px rgba(200, 155, 60, .24), inset 0 1px 0 rgba(255, 255, 255, .95);
    transform: translateY(-2px);
}

body.dark-mode .hamburger-btn {
    background: linear-gradient(145deg, rgba(22, 28, 40, 0.96), rgba(33, 39, 54, 0.96));
    color: #ffd66b;
    border-color: rgba(255, 214, 107, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* PREMIUM GLOW EFFECT */

body::before {
    content: '';
    position: fixed;
    width: 450px;
    height: 450px;
    background: rgba(200, 155, 60, 0.10);
    border-radius: 50%;
    top: -120px;
    right: -120px;
    filter: blur(90px);
    z-index: -1;
}

/* =========================
   NAVBAR
========================= */
.navbar {

    animation: navbarDrop .8s ease;
    transition:
        background .3s ease,
        box-shadow .3s ease;

}

@keyframes navbarDrop {

    from {

        opacity: 0;

        transform: translateY(-30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.navbar.scrolled {

    background: rgba(255, 255, 255, .78);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .45);

    box-shadow:

        0 15px 40px rgba(0, 0, 0, .08),

        inset 0 1px 0 rgba(255, 255, 255, .55);

}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 82px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 8%;
    background: #fff;

    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);

    z-index: 1000;
}

.nav-links a {

    position: relative;

    color: #222;

    text-decoration: none;

    font-weight: 500;

    transition: .3s;

    padding-bottom: 8px;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 0;

    width: 0;

    height: 2px;

    background: #c89b3c;

    transform: translateX(-50%);

    transition: .35s;

    border-radius: 50px;

}

.nav-links a:hover {

    color: #c89b3c;

}

.nav-links a:hover::after {

    width: 100%;

}

.nav-links a.active {

    color: #c89b3c;

}

.nav-links a.active::after {

    width: 100%;

}

.logo {

    transition: .35s;

}

.logo:hover {

    transform: scale(1.05);

}

.btn {

    transition: .35s;

}

.btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(180, 139, 56, .30);

}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section img {
    width: 58px;
    height: 55px;
    object-fit: cover;
}

.logo-section h2 {
    font-family: 'Playfair Display', serif;
    color: #C89B3C;
    font-size: 38px;
}


nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #1E1E1E;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #C89B3C;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #C89B3C;
}

.lang-btn {
    padding: 10px 18px;
    border: none;
    background: #C89B3C;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

.lang-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* =========================
   HERO SECTION
========================= */
body {
    padding-top: 82px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 170px 8% 80px;
    gap: 60px;
    position: relative;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    animation: fadeUp 1s ease;
}

html {

    scroll-behavior: smooth;

}

section {

    scroll-margin-top: 90px;

}

.hero-left p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 35px;
    max-width: 600px;
    color: #555;
    animation: fadeUp 1.4s ease;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: fadeUp 1.8s ease;
}

.image-modal {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, .9);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 9999;

    backdrop-filter: blur(5px);

}

.image-modal.active {

    opacity: 1;

    visibility: visible;

}

.modal-image {

    max-width: 90%;

    max-height: 90%;

    border-radius: 15px;

    animation: zoom .3s ease;

}

.close-modal {

    position: absolute;

    top: 30px;

    right: 40px;

    font-size: 45px;

    color: white;

    cursor: pointer;

}

@keyframes zoom {

    from {

        transform: scale(.7);

        opacity: 0;

    }

    to {

        transform: scale(1);

        opacity: 1;

    }

}

.primary-btn,
.secondary-btn {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    padding: 14px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.primary-btn::before,
.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: 0.5s;
}

.primary-btn:hover::before,
.secondary-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: #C89B3C;
    color: white;
    box-shadow: 0 8px 20px rgba(200, 155, 60, 0.35);
}

.secondary-btn {
    background: #1E1E1E;
    color: white;
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-5px);
}

.glow-btn {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: floatImage 4s ease-in-out infinite;
}

.leadership {

    padding: 100px 8%;
    background: #fffdf8;

}

.leadership-container {

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;

}

.leader-card {

    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    width: 100%;
    max-width: 450px;

}

.leader-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 18px 45px rgba(180, 139, 56, .22);

}

.leader-card img {

    width: 100%;
    height: 380px;
    object-fit: cover;

}

.leader-content {

    padding: 30px;

}

.leader-badge {

    display: inline-block;

    background: #b48b38;

    color: white;

    padding: 8px 18px;

    border-radius: 30px;

    font-size: .85rem;

    margin-bottom: 15px;

}

.leader-content h3 {

    font-size: 32px;

    margin-bottom: 8px;

}

.leader-content h5 {

    color: #b48b38;

    margin-bottom: 20px;

}

.leader-content p {

    line-height: 1.8;

    color: #555;

}

.leader-content ul {

    margin-top: 25px;

    list-style: none;

}

.leader-content li {

    margin: 12px 0;

    color: #333;

}

.leader-content li i {

    color: #b48b38;

    margin-right: 10px;

}

/* =========================
   COMMON SECTION TITLE
========================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #1E1E1E;
}

.section-title p {
    max-width: 750px;
    margin: auto;
    line-height: 1.8;
    color: #555;
}

/* =========================
   SERVICES SECTION
========================= */

.services {
    padding: 90px 8%;
    background: #fff;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 30px;
}

.service-card {
    background: #FFF8EE;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.service-card i {
    font-size: 40px;
    color: #C89B3C;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 24px;
}

.service-card p {
    line-height: 1.8;
    color: #555;
}

/* =========================
   IMPACT SECTION
========================= */

.impact {
    padding: 90px 8%;
    background: #1E1E1E;
    color: white;
}

.impact-title {
    text-align: center;
    margin-bottom: 60px;
}

.impact-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.impact-title p {
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
    color: #ddd;
}

.impact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.impact-card {
    background: #2B2B2B;
    padding: 40px 20px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
}

.impact-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.impact-card h3 {
    font-size: 48px;
    color: #C89B3C;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 18px;
    color: #eee;
}

/* =========================
   POSH SECTION
========================= */

.posh-section {
    padding: 90px 8%;
    background: #FFF8EE;
}

.posh-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
}

.posh-card {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.posh-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.posh-card h3 {
    margin-bottom: 18px;
    color: #C89B3C;
    font-size: 24px;
}

.posh-card p {
    line-height: 1.8;
    color: #555;
}

/* =========================
   TRAINING SECTION
========================= */

.training-section {
    padding: 90px 8%;
    background: white;
}

.training-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 35px;
}

.training-card {
    background: #FFF8EE;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.training-card:hover {
    transform: translateY(-12px);
}

.training-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.5s;
}

.training-card:hover img {
    transform: scale(1.08);
}

.training-content {
    padding: 25px;
}

.training-content h3 {
    margin-bottom: 15px;
    color: #1E1E1E;
    font-size: 24px;
}

.training-content p {
    line-height: 1.8;
    color: #555;
}

/* =========================
   INDUSTRIES SECTION
========================= */

.industries-section {
    padding: 90px 8%;
    background: #1E1E1E;
    color: white;
}

.industries-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.industry-box {
    background: linear-gradient(180deg, rgba(47, 47, 47, 0.96), rgba(31, 31, 31, 0.98));
    padding: 34px 28px;
    border-radius: 22px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.industry-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), transparent 45%);
    opacity: 0;
    transition: 0.3s ease;
    pointer-events: none;
}

.industry-box:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.75);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.industry-box:hover::before {
    opacity: 1;
}

.industry-box i {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #d4af37;
    margin-bottom: 22px;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.industry-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.industry-box p {
    font-size: 14px;
    line-height: 1.8;
    color: #d6d6d6;
}

.industries-cta {
    margin-top: 55px;
    padding: 38px 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 248, 238, 0.1), rgba(212, 175, 55, 0.12));
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.industries-cta h3 {
    font-size: 34px;
    margin: 12px 0 16px;
    font-family: 'Playfair Display', serif;
}

.industries-cta p {
    max-width: 860px;
    line-height: 1.9;
    color: #ddd;
}

.industries-cta .primary-btn {
    flex-shrink: 0;
}

@media(max-width:992px) {
    .industries-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .industries-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media(max-width:576px) {
    .industries-container {
        grid-template-columns: 1fr;
    }

    .industries-cta {
        padding: 28px 24px;
    }

    .industries-cta h3 {
        font-size: 28px;
    }
}

/* =========================
   GALLERY SECTION
========================= */

.gallery-section {
    padding: 90px 8%;
    background: #FFF8EE;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 60px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section {
    padding: 90px 8%;
    background: white;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: #FFF8EE;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.testimonial-card p {
    line-height: 1.9;
    color: #555;
    font-size: 16px;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    color: #C89B3C;
    font-size: 18px;
}

/* =========================
   IMPORTANCE SECTION
========================= */

.importance-section {
    padding: 80px 8%;
    background: #FFF8EE;
    text-align: center;
}

.importance-section p {
    max-width: 850px;
    margin: auto;
    line-height: 1.9;
    color: #555;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    padding: 120px 8%;
    background: #faf8f4;
    color: #222;
}

.contact-container {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {

    background: #fff;

    border-radius: 28px;

    padding: 45px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);

    position: sticky;
    top: 120px;

}

.contact-info h3 {

    font-size: 34px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;

}

.contact-info p {

    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;

}

.contact-box {

    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 30px;

}

.contact-box i {

    width: 58px;
    height: 58px;

    display: flex;
    justify-content: center;
    align-items: center;

    background: #fff6df;

    color: #c89b3c;

    font-size: 22px;

    border-radius: 18px;

    flex-shrink: 0;

}

.contact-box h4 {

    font-size: 18px;
    margin-bottom: 6px;

}

.contact-box span {

    color: #666;
    line-height: 1.7;

}

.contact-form {

    background: #fff;

    padding: 50px;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);

}

.contact-form form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.contact-form textarea {

    grid-column: 1/-1;

    min-height: 180px;

    resize: none;

}

.contact-form select {

    grid-column: 1/-1;

}

.contact-form button {

    grid-column: 1/-1;

    height: 62px;

    border: none;

    background: linear-gradient(90deg, #c89b3c, #e1b650);

    color: white;

    font-size: 18px;

    font-weight: 600;

    border-radius: 16px;

    cursor: pointer;

    transition: .35s;

}

.contact-form button:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 30px rgba(200, 155, 60, .35);

}

.contact-form input,
.contact-form textarea,
.contact-form select {

    width: 100%;

    padding: 18px;

    border: 1px solid #e4e4e4;

    border-radius: 16px;

    font-size: 15px;

    background: #fafafa;

    transition: .3s;

    font-family: 'Poppins', sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {

    outline: none;

    border-color: #c89b3c;

    background: white;

    box-shadow: 0 0 0 5px rgba(200, 155, 60, .12);

}

.contact-form select {

    appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23c89b3c' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 18px center;

    padding-right: 60px;

}

.contact-note {

    grid-column: 1/-1;

    text-align: center;

    color: #777;

    font-size: 14px;

    margin-top: -5px;

}

/* =========================
   FOOTER
========================= */

.footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.footer h2 {
    margin-bottom: 10px;
    color: #C89B3C;
    font-family: 'Playfair Display', serif;
}

.footer p {
    margin-bottom: 20px;
    color: #ccc;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: #C89B3C;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.4s;
}

.footer-socials a:hover {
    transform: translateY(-5px) scale(1.08);
    background: white;
    color: #C89B3C;
}

.copyright {
    font-size: 14px;
    color: #888;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    position: fixed;
    right: max(25px, env(safe-area-inset-right));
    bottom: max(25px, env(safe-area-inset-bottom));

    width: 65px;
    height: 65px;

    background: #25D366;
    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 34px;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);

    z-index: 1000;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* PREMIUM SCROLLBAR */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #C89B3C;
    border-radius: 20px;
}

/* ANIMATIONS */

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* SCROLL OFFSET */

#home,
#services,
#posh,
#gallery,
#contact {
    scroll-margin-top: 120px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width:992px) {
    .hamburger-btn {
        display: inline-flex;
    }

    .about-section {
        padding: 60px 5%;
        gap: 40px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
        gap: 40px;
    }

    .hero-left h1 {
        font-size: clamp(32px, 6vw, 48px);
    }

    .hero-left h1 br {
        display: none;
    }

    .hero-left p {
        margin: auto;
        margin-bottom: 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-right img {
        margin-top: 20px;
        width: 100%;
        height: auto;
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, .92);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        height: 82px;
        padding-left: max(5%, env(safe-area-inset-left));
        padding-right: max(5%, env(safe-area-inset-right));
    }

    .navbar nav {
        position: absolute;
        top: 82px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
        padding: 0 8%;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar nav.open {
        max-height: 450px;
        opacity: 1;
        padding: 24px 8%;
    }

    .navbar nav ul {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }

    .navbar nav ul li {
        width: 100%;
        text-align: center;
    }

    .navbar nav ul li a {
        display: block;
        padding: 12px 0;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: #1E1E1E;
        font-weight: 500;
        transition: 0.3s;
    }

    .navbar nav ul li:last-child a {
        border-bottom: none;
    }

    body.dark-mode .navbar nav {
        background: linear-gradient(180deg, rgba(28, 32, 42, 0.98), rgba(19, 23, 32, 0.98));
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    body.dark-mode .navbar nav ul li a {
        color: #f4efe6;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media(max-width:768px) {
    .hero {
        padding-top: 110px;
    }

    .hero-left h1 {
        font-size: clamp(26px, 5.5vw, 38px);
    }

    .section-title h2,
    .impact-title h2 {
        font-size: 30px;
    }

    .service-card,
    .training-card,
    .testimonial-card,
    .posh-card {
        padding: 20px;
    }

    .impact-card h3 {
        font-size: 34px;
    }

    .contact-container {
        gap: 30px;
    }
}

@media(max-width:576px) {
    .navbar {
        padding: 0 max(5%, env(safe-area-inset-left));
        height: 72px;
    }

    .navbar nav {
        top: 72px;
    }

    .logo-section h2 {
        font-size: 26px;
    }

    .logo-section img {
        width: 44px;
        height: 42px;
    }

    .nav-buttons {
        gap: 8px;
    }

    .theme-btn, .hamburger-btn {
        width: 38px;
        height: 38px;
    }

    .theme-btn i, .hamburger-btn i {
        font-size: 15px;
    }

    .lang-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .hero {
        padding: 100px max(5%, env(safe-area-inset-left)) 50px;
    }

    .about-section,
    .services,
    .impact,
    .posh-section,
    .training-section,
    .industries-section,
    .gallery-section,
    .testimonial-section,
    .importance-section,
    .contact-section {
        padding: 50px max(5%, env(safe-area-inset-left));
    }

    .hero-left h1 {
        font-size: clamp(24px, 5vw, 32px);
    }

    .hero-left p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 12px 24px;
        font-size: 15px;
    }

    .section-title h2,
    .impact-title h2 {
        font-size: 26px;
    }

    .gallery-item img {
        height: 200px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 26px;
    }

    .contact-form {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-info {
        padding: 25px;
        border-radius: 20px;
    }

    .contact-info h3 {
        font-size: 26px;
    }
}

/* SWIPER GALLERY */

.mySwiper {
    margin-top: 60px;
}

.swiper-slide {
    overflow: hidden;
    border-radius: 20px;
}

.swiper-slide img {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    transition: 0.5s;
}

.swiper-slide:hover img {
    transform: scale(1.08);
}

.gallery-img {
    cursor: pointer;
    transition: .3s;
}

.gallery-img:hover {
    transform: scale(1.05);
    filter: brightness(.9);
}

.contact-form select,
.contact-form textarea,
.contact-form button,
.contact-note {

    grid-column: 1 / -1;

}

.contact-form input,
.contact-form select,
.contact-form textarea {

    width: 100%;
    padding: 18px 22px;

    border: 1px solid #e8e8e8;

    border-radius: 16px;

    background: #fafafa;

    font-size: 15px;

    transition: .3s;

}

.contact-form textarea {

    min-height: 180px;

    resize: none;

}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {

    outline: none;

    border-color: #c89b3c;

    background: white;

    box-shadow: 0 0 0 4px rgba(200, 155, 60, .12);

}

.contact-form select {

    appearance: none;

    background: #fafafa;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23c89b3c' viewBox='0 0 16 16'%3E%3Cpath d='M2 5l6 6 6-6'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-position: right 20px center;

    padding-right: 60px;

}

.contact-form button {

    height: 60px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg, #c89b3c, #d8ab46);

    color: white;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;

}

.contact-form button:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 30px rgba(200, 155, 60, .35);

}

@media(max-width:900px) {

    .contact-container {

        grid-template-columns: 1fr;

    }

    .contact-form form {

        grid-template-columns: 1fr;

    }
}

#charCount {
    text-align: right;
    color: #888;
    font-size: 13px;
    margin-top: 6px;
}

.contact-box {
    transition: .3s;
}

.contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.contact-form input,
.contact-form textarea,
.contact-form select {

    transition: .3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {

    transform: translateY(-2px);
    box-shadow: 0 0 0 4px rgba(180, 139, 56, .15);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-btn,
.lang-btn {
    padding: 10px 18px;
    border: none;
    background: #C89B3C;
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.theme-btn:hover,
.lang-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

body,
.navbar,
.about-card,
.service-card,
.training-card,
.posh-card,
.impact-card,
.testimonial-card,
.industry-box,
.contact-info,
.contact-form,
.contact-form input,
.contact-form textarea,
.contact-form select,
.footer,
.section-tag {
    transition: background-color .3s ease, color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

body.dark-mode {
    background: #121212;
    color: #f4efe6;
}

body.dark-mode::before {
    background: rgba(200, 155, 60, 0.18);
}

body.dark-mode .navbar {
    background: rgba(24, 24, 24, 0.96);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

body.dark-mode .navbar.scrolled {
    background: rgba(20, 20, 20, .82);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .04);
}

body.dark-mode .nav-links a,
body.dark-mode nav ul li a,
body.dark-mode .hero-left h1,
body.dark-mode .about-right h2,
body.dark-mode .section-title h2,
body.dark-mode .impact-title h2,
body.dark-mode .contact-info h3,
body.dark-mode .contact-box h4,
body.dark-mode .service-card h3,
body.dark-mode .training-content h3,
body.dark-mode .posh-card h3,
body.dark-mode .industry-box h3,
body.dark-mode .testimonial-card h4 {
    color: #f4efe6;
}

body.dark-mode .hero-left p,
body.dark-mode .hero-features div,
body.dark-mode .about-right p,
body.dark-mode .section-title p,
body.dark-mode .impact-title p,
body.dark-mode .service-card p,
body.dark-mode .training-content p,
body.dark-mode .posh-card p,
body.dark-mode .testimonial-card p,
body.dark-mode .contact-info p,
body.dark-mode .contact-box span,
body.dark-mode .contact-note,
body.dark-mode .copyright {
    color: #cfc7ba;
}

body.dark-mode .about-section,
body.dark-mode .leadership,
body.dark-mode .services,
body.dark-mode .impact,
body.dark-mode .posh-section,
body.dark-mode .training-section,
body.dark-mode .industries-section,
body.dark-mode .gallery-section,
body.dark-mode .testimonial-section,
body.dark-mode .importance-section,
body.dark-mode .contact-section {
    background: transparent;
}

body.dark-mode .about-card,
body.dark-mode .service-card,
body.dark-mode .training-card,
body.dark-mode .posh-card,
body.dark-mode .impact-card,
body.dark-mode .testimonial-card,
body.dark-mode .industry-box,
body.dark-mode .contact-info,
body.dark-mode .contact-form {
    background: #1c1c1c;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .28);
}

body.dark-mode .section-tag {
    background: rgba(200, 155, 60, 0.14);
    color: #e3bf73;
}

body.dark-mode .contact-box i {
    background: rgba(200, 155, 60, 0.14);
    color: #e3bf73;
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .contact-form select {
    background: #252525;
    color: #f4efe6;
    border-color: #3a3a3a;
}

body.dark-mode .contact-form input::placeholder,
body.dark-mode .contact-form textarea::placeholder {
    color: #aaa296;
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus,
body.dark-mode .contact-form select:focus {
    background: #2b2b2b;
}

body.dark-mode .footer {
    background: #0f0f0f;
}

body.dark-mode ::-webkit-scrollbar-track {
    background: #1b1b1b;
}

@media(max-width:576px) {
    .nav-buttons {
        flex-wrap: nowrap;
        justify-content: flex-end;
    }
}

/* Theme polish override */
.theme-btn {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(200, 155, 60, 0.22);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 234, 210, 0.96));
    color: #c89b3c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(200, 155, 60, .18), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.theme-btn i {
    font-size: 18px;
}

.theme-btn:hover {
    box-shadow: 0 16px 32px rgba(200, 155, 60, .24), inset 0 1px 0 rgba(255, 255, 255, .95);
}

body.dark-mode {
    background-color: #0b0f17;
    background-image:
        radial-gradient(circle at top right, rgba(214, 172, 74, 0.16), transparent 26%),
        radial-gradient(circle at 15% 20%, rgba(120, 150, 255, 0.12), transparent 22%),
        linear-gradient(135deg, #0b0f17 0%, #111827 38%, #161a22 68%, #0c1018 100%);
    background-attachment: fixed;
}

body.dark-mode::before {
    background: radial-gradient(circle, rgba(232, 192, 96, 0.18) 0%, rgba(232, 192, 96, 0) 70%);
    top: -150px;
    right: -90px;
    filter: blur(75px);
}

body.dark-mode::after {
    content: '';
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at bottom left, rgba(81, 126, 255, 0.10), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 22%);
    pointer-events: none;
    z-index: -1;
}

body.dark-mode .navbar {
    background: rgba(11, 15, 23, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
}

body.dark-mode .navbar.scrolled {
    background: rgba(10, 13, 20, 0.84);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .38), inset 0 1px 0 rgba(255, 255, 255, .05);
}

body.dark-mode .theme-btn {
    background: linear-gradient(145deg, rgba(22, 28, 40, 0.96), rgba(33, 39, 54, 0.96));
    color: #ffd66b;
    border-color: rgba(255, 214, 107, 0.18);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .06);
}

body.dark-mode .about-card,
body.dark-mode .service-card,
body.dark-mode .training-card,
body.dark-mode .posh-card,
body.dark-mode .impact-card,
body.dark-mode .testimonial-card,
body.dark-mode .industry-box,
body.dark-mode .contact-info,
body.dark-mode .contact-form {
    background: linear-gradient(180deg, rgba(28, 32, 42, 0.95), rgba(19, 23, 32, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .26), inset 0 1px 0 rgba(255, 255, 255, .04);
}

body.dark-mode .secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #f4efe6;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

body.dark-mode .secondary-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

body.dark-mode .contact-form input,
body.dark-mode .contact-form textarea,
body.dark-mode .contact-form select {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .contact-form input:focus,
body.dark-mode .contact-form textarea:focus,
body.dark-mode .contact-form select:focus {
    background: rgba(255, 255, 255, 0.06);
}

body.dark-mode .footer {
    background: rgba(7, 10, 15, 0.92);
}