/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/gh/sahildeveloper/sf-pro-display@latest/sfpro.css");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: Sf Pro Display;
    src: url("/font/SF-Pro-Display-Semibold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Sf Pro Display;
    src: url("/font/SF-Pro-Display-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Sf Pro Display;
    src: url("/font/SF-Pro-Display-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Sf Pro Display;
    src: url("/font/SF-Pro-Display-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Sf Pro Display;
    src: url("/font/SF-Pro-Display-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

/* Apply fonts globally */
body {
    font-family: "SF Pro Display", sans-serif;
    top: 0px !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.hero-title,
.page-title,
.blog-header-content h1,
.info-title {
    font-family: "SF Pro Display", sans-serif;
}
.header-bg{
    background: rgb(222, 222, 222);;
}
.translate-blur {
    filter: blur(3px);
    opacity: 0.5;
    transition: 0.3s;
}
#mainHeader .container {
    border-bottom: 1px solid #ffffff80;
}
/* mobile menu base (initial hidden state — use opacity/transform, not display:none) */
#mobileMenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 24px 0;
    pointer-events: none; /* disable clicks when closed */
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 420ms ease, transform 420ms ease;
    z-index: 40;
}

/* shutters (before = top drop, after = bottom drop) */
#mobileMenu::before,
#mobileMenu::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    z-index: 0; /* behind nav */
    transition: height 520ms cubic-bezier(0.2, 0.9, 0.25, 1);
}

/* top shutter */
#mobileMenu::before {
    top: 0;
}

/* bottom shutter */
#mobileMenu::after {
    bottom: 0;
}

/* nav container inside menu should sit above shutter */
#mobileMenu > nav {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 12px 20px;
}

/* link base state (hidden offset) */
#mobileMenu a {
    color: #111 !important; /* always dark links */
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 360ms ease, transform 360ms ease;
    display: inline-block; /* to allow transform */
    position: relative;
}

/* active state: open menu */
#mobileMenu.active {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0);
}

/* shutters expand when menu active */
#mobileMenu.active::before,
#mobileMenu.active::after {
    height: 100%;
}

/* staggered reveal of links — target links inside the nav */
#mobileMenu.active nav a:nth-of-type(1) {
    transition-delay: 0.12s;
    opacity: 1;
    transform: translateY(0);
}
#mobileMenu.active nav a:nth-of-type(2) {
    transition-delay: 0.18s;
    opacity: 1;
    transform: translateY(0);
}
#mobileMenu.active nav a:nth-of-type(3) {
    transition-delay: 0.24s;
    opacity: 1;
    transform: translateY(0);
}
#mobileMenu.active nav a:nth-of-type(4) {
    transition-delay: 0.3s;
    opacity: 1;
    transform: translateY(0);
}

/* hover underline - subtle premium accent */
#mobileMenu nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #0050d8;
    transition: width 240ms ease;
}
#mobileMenu nav a:hover::after {
    width: 100%;
}

/* small screens tweak */
@media (max-width: 768px) {
    #mobileMenu {
        padding: 18px 0;
    }
    #mobileMenu > nav {
        gap: 0.9rem;
    }
}

.custom-translate-container {
    position: relative;
    display: inline-block;
    float: right;
    z-index: 999999;
    background-color: transparent !important;
}

.custom-translate-btn {
    background: transparent;
    border: transparent;
    border-radius: 4px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.custom-translate-btn:hover {
    background: transparent;
}

.custom-translate-btn:after {
    content: "▼";
    font-size: 10px;
    margin-left: 8px;
}

.custom-translate-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    min-width: 150px;
}

.custom-translate-dropdown.show {
    display: block;
}

.custom-translate-option {
    padding: 10px 16px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #3c4043;
    border-bottom: 1px solid #f1f3f4;
}

.custom-translate-option:last-child {
    border-bottom: none;
}

.custom-translate-option:hover {
    background: #f8f9fa;
}

/* Style the actual Google Translate select to be hidden but accessible */
#google-translate-select {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    top: -1000px;
}

/* Hide Google Translate banner */
.goog-te-banner-frame {
    display: none !important;
}

.skiptranslate {
    display: none !important;
}
/* Hero Section */
.hero-section {
    position: relative;
    /* height: 90vh;
    min-height: 670px; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
    padding-bottom: 30px;
}

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

/* Container */
.hero-container {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 10px;
    width: 100%;
}

/* LEFT AREA */
.hero-left {
    color: #fff;
    max-width: 42rem;
}

/* ───────── BADGE ROW ───────── */
.badge-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    font-size: 0.8rem;
}

.badge {
    background: #51b6f6;
    padding: 6px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.badge-sub {
    color: #cfd5dd;
    font-size: 15px;
}

/* ───────── TITLE ───────── */
.hero-title {
    text-transform: none;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 600;
    line-height: 120%;
    padding-top: 50px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 1.6em;
        padding-top: 10px;
    }

}

/* ───────── FEATURE BULLETS ───────── */
.hero-features {
    grid-column-gap: 1.25rem;
    grid-row-gap: 1.25rem;
    color: #f5f5f7;
    flex-flow: column;
    padding-left: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    margin: 30px auto;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1.25rem;
    color: #e5e7eb;
}

.circle {
    border: 1px solid #fff;
    border-radius: 100rem;
    flex: none;
    width: 1rem;
    height: 1rem;
}

/* ───────── DIVIDER ───────── */
.section-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #6b7280;
    margin-bottom: 25px;
}

/* ───────── EVENT LOCATION & DATE ───────── */

.event-location p {
    display: flex;
    align-items: center;
    font-size: 1rem;
    line-height: 140%;
    font-weight: 500;
    margin-bottom: 16px;
    max-width: 580px;
}

.loc svg {
    background-color: #ef4444;
    margin-top: 3px;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 10px;
    padding: 3px;
}
.date svg {
    background-color: #ffffff3f;
    margin-top: 3px;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-right: 10px;
    padding: 5px;
}

/* FORM BOX */
/* Wrapper */
.hero-form-box {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-family: "SF Pro Display", sans-serif;
}

/* Header */
.form-header {
    margin-bottom: 20px;
}
.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 6px;
}
.form-subtext {
    font-size: 16px;
    color: #6b6b6b;
}

/* Uniform Spacing */
.input-group {
    margin-bottom: 14px;
}

/* Inputs */
.hero-form input[type="text"],
.hero-form input[type="email"],
.hero-form input[type="tel"] {
    width: 100%;
    height: 52px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
    background: #f8f9fc;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
}
.hero-form input[type="tel"] {
    padding-left: 100px;
}
.hero-form input:focus {
    border-color: #56a8ff;
    background: #ffffff;
}

/* Phone Row */
.phone-row {
    display: flex;
    gap: 8px;
    position: relative;
}

/* Phone flag dropdown */
.country-select {
    width: 90px;
    height: 52px;
    background: #f8f9fc;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    position: absolute;
}
.country-select img {
    width: 22px;
}
.country-select .selected-code {
    color: #1f1f1f;
    font-weight: 600;
    font-size: 0.8rem;
}

/* Dropdown list */
.country-list {
    position: absolute;
    top: 60px;
    left: 0;
    width: 180px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    display: none;
    z-index: 50;
}
.country-select.open .country-list {
    display: block;
}
.country-list li {
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    gap: 8px;
    align-items: center;
    transition: 0.1s;
}
.country-list li:hover {
    background: #f1f5f9;
}

/* Checkbox */
.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}
.checkbox-wrapper input {
    display: none;
}
.checkbox-custom {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 1.5px solid #c5c5c5;
    position: relative;
    cursor: pointer;
}
.checkbox-wrapper input:checked + .checkbox-custom {
    background: #007aff;
    border-color: #007aff;
}
.checkbox-wrapper input:checked + .checkbox-custom::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    position: absolute;
    top: 2px;
    left: 4px;
}
.checkbox-wrapper p {
    font-size: 14px;
    color: #444;
    line-height: 1.3;
}

/* Button */
.submit-btn {
    max-width: 100%;
    text-transform: none;
    background-color: #51b6f6;
    border: 0.0625rem solid #51b6f6;
    border-radius: 0.75rem;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    height: 3.5rem;
    padding: 0;
    font-family: Sf Pro Display, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: border 0.3s, background-color 0.3s;
    display: flex;
    color: #fff;
    margin-top: 10px;
}
.submit-btn:hover {
    background: #131313;
    border-color: #131313;
}

/* Terms text */
.terms-text {
    font-size: 12px;
    color: #777;
    margin-top: 16px;
    text-align: left;
    line-height: 1.5;
}
.terms-text a {
    color: #007aff;
    text-decoration: underline;
}

/* Success + Error Boxes */
.success-box,
.error-box {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    margin-bottom: 10px;
}
.success-box {
    background: #e6ffe9;
    color: #0c7a22;
}
.error-box {
    background: #ffe6e6;
    color: #b30000;
}

@media (max-width: 991px) {
    .hero-section{
        min-height: 100vh;
        height: auto;
        padding-top: 50px;
    }
    .hero-container {
        flex-direction: column;
        padding: 30px 40px;
    }
    .hero-form-box {
        max-width: 100%;
    }
    .hero-features li {
        font-size: 1rem;
        font-weight: 400;
    }
    .hero-features {
        padding-left: 0;
    }
    .event-location p {
        font-size: 1rem;
    }
    .hero-form-box {
        margin-top: 20px;
    }
    .badge-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ______________________Container & Section___________________________ */
.recent-pages-section {
    padding: 10px 20px;
    background: #fff;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: #111;
    line-height: 1.3;
}

/* Carousel Wrapper */
.carousel-wrapper {
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

/* Track */
.carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
    cursor: grab;
    padding: 0;
}

.carousel-track > * {
    flex: 0 0 calc((100% - 48px) / 3); /* 3 items */
    min-width: calc((100% - 48px) / 3);
}

/* Items */
.carousel-item {
    max-width: 400px;
    background: #fff;
    border-radius: 12px;
    /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.carousel-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}
.carousel-item h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #111;
    margin-bottom: 8px;
}
.carousel-item p {
    color: #555;
    font-size: 14px;
    margin-bottom: 12px;
}
.carousel-item a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
}
.carousel-item a:hover {
    text-decoration: underline;
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.527);
    border: none;
    color: #004b9a;
    font-size: 28px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 10;
    border: 1px solid #004b9a;
}
.carousel-nav.prev {
    left: 10px;
}
.carousel-nav.next {
    right: 10px;
}
.carousel-nav:hover {
    background: #004b9a;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .recent-pages-section {
        padding: 10px 0;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .carousel-item {
        width: 100vw; /* one full screen card */
        max-width: none;
    }
    .carousel-track > * {
        flex: 0 0 100%; /* Full width on mobile */
        min-width: 100%;
    }
}

/* ________________________________Developer Section_______________________________ */

/* SECTION WRAPPER */
.project-section {
    padding: 40px 0;
    background: #f9fafb;
}

/* MAIN CONTAINER */
.project-container {
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE */
.project-left {
    flex: 1;
}

.project-left h2 {
    font-size: 2.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 30px;
    line-height: 1.3;
}

.project-block {
    margin-bottom: 25px;
}

.project-block h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1f2937;
}

.project-block p {
    color: #6b7280;
}

/* RIGHT SIDE - LOGO GRID */
.logo-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* MOBILE: 2 per row */
    gap: 20px;
    width: 100%;
}

/* LOGO ITEM */
.logo-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-item span {
    font-weight: 600;
    color: #111827;
    text-align: center;
}

/* TABLET */
@media (min-width: 640px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr); /* TABLET: 3 per row */
    }
}

/* DESKTOP */
@media (min-width: 1024px) {
    .project-container {
        display: flex;
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr); /* KEEP 3 for nice spacing */
    }
}

/* BIG DESKTOP */
@media (min-width: 1280px) {
    .logo-grid {
        grid-template-columns: repeat(3, 1fr); /* 4 per row */
    }
}

@media (max-width: 991px) {
    .project-container {
        flex-direction: column;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .project-left h2 {
        font-size: 1.5rem;
    }
}

.video-wrapper {
    border-radius: 1.875rem; /* 30px */
    height: 30rem; /* fixed height just like reference */
    margin-left: 2.5rem; /* 40px */
    margin-right: 2.5rem; /* 40px */
    overflow: hidden;
    position: relative;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This ensures video fits the container */
}

.gallery-photos {
    display: grid;
    grid-template-columns: 1fr 1.25fr 0.75fr 1fr 1fr;
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
    margin: 20px 2.5rem; /* centers the section */
    padding: 0; /* safe padding like container */
    height: auto;
}

.photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px; /* uniform radius */
}

/* ✅ Positioning elements (from your Webflow IDs) */
#w-node-_7091e47b-9742-d41b-eb6a-6c3a0aa534a9-f994be91 {
    grid-area: 1 / 1 / 5 / 2;
}

#w-node-f58a669d-76e3-c0f0-7db1-8c680ccf482d-f994be91 {
    grid-area: 1 / 2 / 3 / 3;
}

#w-node-cc54b9ce-7f75-db65-c9f7-94537911b34f-f994be91 {
    grid-area: 1 / 3 / 3 / 4;
}

#w-node-d4093c5c-a9eb-4799-8ae4-33517963991b-f994be91 {
    grid-area: 1 / 4 / 3 / 5;
}

#w-node-a7a8c685-81d7-34d9-3970-e0291001d80d-f994be91 {
    grid-area: 1 / 5 / 3 / 6;
}

#w-node-_4096f357-13fa-ebf9-fffc-780758280375-f994be91 {
    grid-area: 3 / 2 / 5 / 4;
}

#w-node-a605c574-ada7-bd52-4f8f-04ea082dcf6d-f994be91 {
    grid-area: 3 / 4 / 5 / 5;
}

#w-node-_38f9b2b4-79cb-4cdc-4fc2-0f90ed8ffb75-f994be91 {
    grid-area: 3 / 5 / 5 / 6;
}

/* ✅ Responsive breakdown */
@media (max-width: 991px) {
    /*.gallery-photos {*/
    /*    display: none !important;*/
    /*}*/
    .gallery-photos {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding-top: 20px;
        width: 90vw;
        margin-left: 5%;
    }

    .gallery-photos img {
        width: 100vw !important;
        max-width: 90vw;
        margin: 0 0 10px 0;
        display: block;
        height: auto;
        height: 14rem;
    }
    .video-wrapper {
        margin: auto 1rem;
        height: 20rem;
    }
}

/* @media (max-width: 1024px) {
  .gallery-photos {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-photos img {
    grid-area: auto !important;
  }
}

@media (max-width: 600px) {
  .gallery-photos {
    grid-template-columns: repeat(1, 1fr);
  }
} */

.event-section {
    /* background: #0064a3; */
    padding: 1rem 0;
    color: #fff;
    position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.overlay-event{
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.event-wrapper,
.container {
    position: relative;
    z-index: 2;
}

.container {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: auto;
}
@media screen and (min-width: 1400px) {
    .container {
        max-width: 80rem;
        margin-left: auto;
        margin-right: auto;
        padding: auto;
    }
}
@media screen and (max-width: 991px) {
    .container {
        max-width: 90%;
        padding-left: 0.1rem;
        padding-right: 0.1rem;
    }
}

.event-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
}

.event-wrapper .country-list li {
    color: #000;
}

.event-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.event-left .loc svg {
    backdrop-filter: blur(2px);
    background-color: #ffffff2e;
}

.event-left h2 {
    font-size: 2.5rem;
    line-height: 113%;
    margin-top: 1.5rem;
    font-weight: 600;
    margin-bottom: 100px;
}

.line {
    margin: 2.5rem 0;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-item img {
    width: 28px;
    height: 28px;
}

.detail-item p {
    font-size: 1.1rem;
    line-height: 1.5;
}

/* responsive */
@media (max-width: 991px) {
    .event-wrapper {
        flex-direction: column;
        gap: 3rem;
    }
    .event-left h2 {
        margin-bottom: 10px;
        font-size: 1.5rem;
    }
}

.about-section {
    padding: 2rem 0;
    background: #f6f6fa;
}

/* ---------- TOP BLOCK ---------- */
.about-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 1rem;
    flex-direction: column;
}
.about-header {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    display: flex;
    margin-top: 15px;
}

.about-text {
    flex: 0 0 40%;
}

.about-text h2 {
    text-transform: none;
    max-width: 42.5rem;
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 113%;
    width: 50%;
}

.about-text p {
    font-size: 1.25rem;
    line-height: 1.6;
    width: 50%;
    color: #4f4c55;
}
.about-section .badge {
    color: #fff;
}
/* ---------- IMAGE + AWARDS STRIP ---------- */
.about-photo-wrapper {
    flex: 0 0 60%;
    position: relative;
}

.about-photo {
    width: 100%;
    border-radius: 1.25rem;
    object-fit: cover;
}

.about-photo-strip {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    grid-template-rows: auto;
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    background-color: #fff;
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin: auto 5%;
    position: relative;
    top: 3rem;
    transform: translateY(-120px);
}

/* Left side */
.awards-left {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.awards-left strong {
    font-size: 1.25rem;
}
.awards-left span {
    font-size: 0.75rem;
    color: #666;
}

/* Award icons */
.awards-icons {
    display: flex;
}
.awards-icons img {
    height: 4.5rem;
    margin-right: 0.75rem;
}

/* Google rating box */
.google-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-left: 1px solid #0000001a;
    justify-self: end;
    padding-left: 6rem;
}
.google-rating img {
    height: 3.5rem;
}
.google-rating span {
    display: flex;
    align-items: center;
    border: 1px solid #dbe3e6;
    border-radius: 100rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
}
/* ---------- AWARDS GRID ---------- */
.awards-section {
    background: #ffffff;
    padding: 1rem 1rem;
    border-radius: 1.5rem;
}

.awards-heading {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto;
    grid-template-columns: 1.5fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}

.awards-heading h3 {
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}

.awards-heading p {
    font-size: 0.95rem;
    color: #555;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    text-align: center;
}

.award-item img {
    height: 120px;
    width: auto;
    margin: auto;
}

.award-item p {
    margin-top: 0.8rem;
    font-size: 0.85rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .about-top {
        flex-direction: column;
    }
    .about-header {
        flex-direction: column;
    }
    .about-text h2,
    .about-text p {
        width: 100%;
    }

    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .awards-heading {
        grid-template-columns: 1fr; /* single column */
        grid-row-gap: 1rem; /* smaller row gap */
        grid-column-gap: 0; /* no column gap needed */
    }
}
@media (max-width: 991px) {
    .about-photo-strip {
        padding: 1.25rem;
        margin: 0 1rem;
        transform: translateY(-60px);
        text-align: left;
    }

    .awards-icons img {
        height: 3.2rem;
    }

    .google-rating img {
        height: 2.8rem;
    }

    .google-rating span {
        font-size: 0.6rem;
        padding: 0.4rem 0.8rem;
    }
    .about-text h2 {
        font-size: 1.5rem;
    }
    .about-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-photo-strip {
        grid-template-columns: 1fr;
        transform: translateY(-80px);
    }

    .awards-left {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .awards-icons {
        justify-content: center;
    }

    .google-rating {
        justify-self: flex-start;
        padding-left: 0;
        border-left: none;
        margin-top: 1rem;
    }
}

/* ===== Info form section (pixel-focused) ===== */
/* =================== INFO SECTION =================== */
.info-section {
    background: #066aa7;
    color: #fff;
    padding: 30px 20px 30px 20px;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top row: title and note */
.info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
    flex-wrap: wrap; /* ensure items wrap on smaller screens */
}

.info-title {
    font-weight: 700;
    font-size: 36px;
    line-height: 1.1;
    margin: 0;
    color: #ffffff;
    flex: 1 1 60%;
    min-width: 250px;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 360px;
    color: #e7f6ff;
    font-size: 14px;
    line-height: 1.4;
    min-width: 200px;
}

.info-note svg {
    flex: 0 0 24px;
    margin-top: 3px;
    opacity: 0.95;
}

/* =================== FORM =================== */
.info-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Inputs row: desktop 3-column layout */
.inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 18px;
    width: 100%;
}

/* Inputs styling */
.inputs-row input,
.inputs-row select {
    height: 56px;
    padding: 12px 16px;
    border-radius: 8px;
    border: 0;
    outline: none;
    font-size: 15px;
    color: #222;
    background: #ffffff;
    box-shadow: none;
    -webkit-appearance: none;
}

.inputs-row input[type="tel"] {
    padding-left: 25px;
}

/* Phone wrapper */
/* PHONE FIELD (Merged UI) */
.phone-field {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 6px 12px;
    height: 56px;
    gap: 12px;
}

.phone-code-box {
    display: flex;
    align-items: center;
    gap: 6px;
    border-right: 1px solid #e8e8e8;
    padding-right: 12px;
}

.flag-icon {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
}

.inputs-row .country-select {
    border: none;
    background: transparent;
    font-size: 15px;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.phone-input {
    border: none;
    flex: 1;
    padding: 8px;
    background: transparent;
    font-size: 16px;
    outline: none;
}

/* Ensure grid works with new phone field */
.inputs-row {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1.35fr;
    gap: 18px;
}

/* Mobile responsiveness */
@media (max-width: 992px) {
    .inputs-row {
        grid-template-columns: 1fr;
    }
}

.phone-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    height: 56px;
}

.phone-wrap select {
    min-width: 96px;
    border-radius: 8px;
    padding-left: 12px;
    background: #fff;
}

.phone-wrap input[type="tel"] {
    flex: 1;
}

/* Meta (checkbox + disclaimer) */
.form-meta {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.meta-checkbox {
    font-size: 13px;
    color: #e6f3fb;
    display: flex;
    gap: 10px;
    text-align: start;
}

.meta-checkbox input {
    width: 16px;
    height: 16px;
    margin: 0;
}

.meta-disclaimer {
    font-size: 12px;
    color: #d4eefc;
    margin: 0;
    line-height: 1.45;
}

/* CTA button */
.cta-btn {
    background-color: #000;
    border-radius: 0.75rem;
    height: 56px;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* =================== RESPONSIVE =================== */
@media (max-width: 992px) {
    .info-top {
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .info-title {
        font-size: 30px;
    }

    .info-note {
        justify-content: center;
        max-width: 100%;
    }

    .inputs-row {
        grid-template-columns: 1fr;
    }

    .phone-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .form-meta,
    .cta-btn {
        align-items: center;
        text-align: center;
    }

    .cta-btn {
        border-radius: 1rem;
        height: 56px;
    }
    .meta-checkbox {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .info-title {
        font-size: 26px;
    }

    .inputs-row input,
    .inputs-row select {
        font-size: 14px;
        height: 50px;
    }

    .cta-btn {
        font-size: 15px;
        height: 52px;
    }
}

@media (max-width: 480px) {
    .info-container {
        padding: 0 14px;
    }

    .info-title {
        font-size: 22px;
        line-height: 1.2;
    }

    .inputs-row input,
    .inputs-row select {
        font-size: 14px;
        padding: 10px 12px;
        height: 48px;
    }

    .cta-btn {
        font-size: 14px;
        height: 50px;
    }

    .info-note {
        font-size: 13px;
        gap: 8px;
    }
}

/* ============================
   BLOG LISTING PAGE
============================ */

/* ===== Blog Header Section ===== */
.blog-header {
    position: relative;
    height: 50vh;
    background: url("/images/event5.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.blog-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.651);
}

.blog-header-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.blog-header-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.blog-header-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: #e6e6e6;
}

/* ===== Blog Grid Layout ===== */
.blog-section {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card-content h3 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-content h3 a:hover {
    color: #0066cc;
}

.blog-card-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ===== Blog Meta and Read More ===== */
.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
    border-top: 1px solid #eee;
    padding-top: 12px;
}

.read-more {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.read-more:hover {
    color: #004b9a;
}

/* ===== Pagination ===== */
.pagination-wrapper {
    margin-top: 50px;
    text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .blog-header {
        height: 260px;
    }

    .blog-header-content h1 {
        font-size: 30px;
    }

    .blog-header-content p {
        font-size: 16px;
    }
}

/* ============================
   BLOG DETAIL PAGE
============================ */

/* Breadcrumb */
.breadcrumb-wrapper {
    padding: 16px 0;
    font-size: 14px;
}
.breadcrumb-wrapper a {
    color: #2563eb;
    text-decoration: none;
}
.breadcrumb-wrapper span {
    color: #475569;
}

/* Blog Hero Section */
.blog-hero {
    padding: 100px 0 20px 0;
    background: #fff;
}
.blog-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}
.blog-excerpt {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
}
.blog-featured-img img {
    width: 100%;
    border-radius: 6px;
    margin: 20px 0;
}

/* Blog Content */
.blog-content {
    background: #fff;
    padding: 20px 0 60px;
}
.blog-content .content-inner {
    margin: auto;
    font-size: 17px;
    color: #1e293b;
    line-height: 1.8;
}
.blog-content h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-top: 40px;
    margin-bottom: 16px;
}
.blog-content img {
    width: 100%;
    border-radius: 6px;
    margin: 25px 0;
}
.blog-content ul {
    margin: 10px 0 20px 25px;
    list-style: disc;
}
.blog-content a {
    color: #0ea5e9;
    text-decoration: underline;
}

/* Footer Section */
.blog-footer {
    padding: 40px 0;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}
.blog-footer .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}
.blog-footer .tag {
    background: #f1f5f9;
    color: #334155;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
}
.blog-nav {
    display: flex;
    justify-content: space-between;
}
.blog-nav a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}
.blog-nav a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-title {
        font-size: 24px;
    }
    .blog-content .content-inner {
        padding: 0 16px;
    }
}

/* ___________________Page Section___________________  */

/*********************************************
 HERO SECTION
*********************************************/
.page-hero-section {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.page-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-hero-section .breadcrumb-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 20px;
    z-index: 2;
}
.page-hero-section .breadcrumb {
    display: flex;
    font-weight: 500;
    font-size: 18px;
}

.page-hero-section .breadcrumb-item.active {
    color: #2563eb;
}

.page-hero-section .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
}
.page-hero-content .title-line-1 {
    font-weight: 600;
    font-size: 2rem;
}
.page-hero-content .title-line-2 {
    font-weight: 700;
    font-size: 4rem;
}
/*********************************************
 PAGE TITLE
*********************************************/
.section-title {
    padding: 30px 0 10px;
}
.page-title {
    font-size: 46px;
    position: relative;
    font-weight: 700;
}
.page-title::after {
    content: "";
    width: 80px;
    height: 5px;
    background: var(--primary);
    display: block;
    margin-top: 12px;
}

/*********************************************
 PAGE SECTIONS (2 column modular layout)
*********************************************/
.page-section {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 70px;
}

.section-text {
    flex: 1.4;
    font-size: 18px;
    line-height: 1.5;
    color: #444;
}
.section-text .read-more-btn {
    background-color: #51b6f6;
    color: #fff;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
}
.section-text p {
    margin-bottom: 10px;
}
.section-text h2,
.section-text h3 {
    color: #000;
    font-size: 2.5rem;
    font-weight: 600;
}

.section-text ul {
    list-style-type: disc;
    margin-left: 20px;
}
.section-text ul li::marker {
    color: #004b9a;
}
.section-image {
    flex: 1;
}
.section-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}
.section-image img:hover {
    transform: translateY(-6px);
}

/* Alternate background every other section */
.page-section:nth-child(odd) {
    background: #eef6ff;
}

.page-section:nth-of-type(odd) .section-flex {
    flex-direction: row-reverse;
}
/*********************************************
 BLOG SLIDER — Premium Horizontal Scroller
*********************************************/
.blog-slider-section {
    padding: 50px 0;
    background: #f5f5f5;
}

.section-header h3 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-transform: capitalize;
}

.slider-wrapper {
    position: relative;
}

.slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.slide-item {
    flex: 0 0 calc(25% - 20px);
    min-width: calc(25% - 20px);
    transition: transform 0.3s ease;
}

.blog-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.blog-thumb {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/*.blog-body {*/
/*    padding: 15px;*/
/*    text-align: center;*/
/*}*/

.blog-body {
    padding: 15px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.blog-body h4 a {
    color: #222;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
}

.blog-body h4 a:hover {
    color: var(--primary);
}

/* Navigation buttons */
.slider-nav {
    position: absolute;
    bottom: -50px;
    right: 30px;
    display: flex;
    gap: 10px;
    width: 100%;
    padding-bottom: 10px;
}

.slider-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #bbb;
    background: transparent;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.slider-nav:before {
    width: 90%;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #c0c8cd;
    content: "";
}

.slider-btn:hover {
    background: var(--primary);
    color: #fff;
}
/*********************************************
 RESPONSIVE
*********************************************/
@media (max-width: 991px) {
    .page-hero-section {
        height: 40vh;
    }
    .section-flex {
        flex-direction: column-reverse !important;
    }
    .section-image img {
        width: 90%;
        margin-inline: auto;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .page-hero-content .title-line-1 {
        font-size: 1.2rem !important;
    }
    .page-hero-content .title-line-2 {
        font-size: 2rem !important;
    }
    .page-hero-section .breadcrumb-overlay {
        padding: 15px;
    }
    .page-hero-section .breadcrumb {
        font-size: 0.9rem;
    }
    .section-text h2 {
        font-size: 1.5rem;
    }
    .section-text p,
    .section-text li {
        font-size: 0.9rem;
    }
    .section-header h3 {
        font-size: 1.5rem;
    }
    .read-more-btn {
        font-size: 1rem;
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
        right: 6px;
    }
    .slider-btn.prev {
        top: 42%;
    }
    .slider-btn.next {
        top: 58%;
    }
    .slide-item {
        flex: 0 0 calc(50% - 20px);
        min-width: calc(50% - 20px);
    }
}
@media (max-width: 600px) {
    .slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .slider-nav {
        bottom: -40px;
        right: 50%;
        transform: translateX(50%);
    }
}

.footer {
    background: rgb(222, 222, 222);
    justify-content: space-between;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1rem;
    position: relative;
    overflow: hidden;
    color: #000;
}
.divider-h {
    background-color: #cecdd0;
    width: 100%;
    height: 0.0625rem;
}
.footers {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 3rem;
    padding-bottom: 1rem;
    color: #000 !important;
}
.footer img {
    max-width: 100px;
    vertical-align: middle;
    display: inline-block;
}
.flex_v-12 {
    grid-column-gap: 0.75rem;
    grid-row-gap: 0.75rem;
    flex-flow: column;
    align-items: center;
    display: flex;
}
.social-block {
    grid-column-gap: 0.1rem;
    grid-row-gap: 0.1rem;
    display: flex;
}

.icon-40px {
    object-fit: scale-down;
    flex: none;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
}
.text-size-20.text-footer {
    color: #000;
    font-size: 1rem;
}
.flex_h-24.center {
    justify-content: center;
    align-items: center;
}
.flex_h-24 {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    display: flex;
}
.w-embed::after {
    clear: both;
}
.w-embed::before,
.w-embed::after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.link-footer {
    color: #000;
}

@media (max-width: 991px) {
    .footers {
        flex-direction: column;
        justify-content: space-between;
    }
    .flex_v-12 {
        align-items: flex-start;
    }
    .flex_h-24 {
        flex-direction: column;
    }
    .social-block {
        margin-top: 20px;
    }
    .footer img {
        margin-bottom: 20px;
        max-width: 200px;
    }
}

/* --- Common Styles --- */
.floating-contact {
    position: fixed;
    z-index: 999999;
    border-radius: 50px;
    background-color: rgba(0, 0, 0, 0.3) !important;
    padding: 5px;
}

/* Each button */
.float-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    gap: 2px;
    transition: 0.2s;
}

.call-btn {
    background: #007bff;
}
.whatsapp-btn {
    background: #25d366;
}

/* --- MOBILE VIEW: Full Width Buttons Bottom --- */
@media (max-width: 991px) {
    .footer{
        padding-bottom: 50px;
    }
    .floating-contact {
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        gap: 10px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(2px);
        border-radius: 0px;
    }

    .float-btn {
        flex: 1;
        border-radius: 12px;
        justify-content: center;
    }

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

/* --- DESKTOP VIEW: Round Buttons at Bottom Right --- */
@media (min-width: 992px) {
    .floating-contact {
        right: 30px;
        bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(2px);
        padding: 5px;
        border-radius: 50px;
    }

    .float-btn {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        padding: 0;
        font-size: 0; /* hide text */
        justify-content: center;
    }

    .float-btn i {
        font-size: 26px;
    }
}


.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}
.popup-box {
    background: white;
    padding: 30px 35px;
    text-align: center;
    border-radius: 16px;
    width: 90%;
    max-width: 330px;
    animation: slideDown .35s ease-out;
}
@keyframes slideDown {
    from { transform: translateY(-20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.popup-icon {
    font-size: 48px;
    color: #2ecc71;
    margin-bottom: 10px;
}
.popup-btn {
    background: #007bff;
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    font-weight: 600;
}
.spinner {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    border: 4px solid #ddd;
    border-top-color: #3498db;
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
.loading-text {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}
.loading-sub {
    font-size: 14px;
    color: #777;
}
.notranslate {
    translate: no;
}


/*_________ Hero Slider___________  */

.hero-slider-section {
    position: relative;
    height: 95vh;
    overflow: hidden;
}

/* Slide */
.hero-slide {
    background-size: cover;
    background-position: center center;
    height: 100vh;
    position: relative;
}

/* ADRO-style gradient overlay */
/* .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 70%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
} */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);   
    z-index: 1;
}

/* Content */
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

/* Title */
.hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

/* Subtitle */
.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 620px;
    margin-bottom: 32px;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 40px;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
        margin-top: -40%;
    }
}
@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 35px;
        font-weight: 600;
        line-height: 1.15;
        margin-bottom: 18px;
        letter-spacing: -0.5px;
        margin-top: -40%;
    }
}

/* Button — ADRO style */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 14px 36px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #3498db;
    color: #ffffff;
}

/* Navigation arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    font-size: 34px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    user-select: none;
    transition: opacity 0.3s ease;
}

.hero-nav:hover {
    opacity: 1;
}

.hero-nav.prev {
    left: 24px;
}

.hero-nav.next {
    right: 24px;
}

/* Fraction */
.hero-timeline {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.hero-line {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,.35);
    overflow: hidden;
}

.hero-progress-wrap {
    position: absolute;
    bottom: 54px;
    left: 40px;
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    overflow: hidden;
}

.hero-progress {
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
}

.hero-pagination {
    position: absolute;
    bottom: 24px;
    left: 40px;
    color: #fff;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.5);
}
