/* Main CSS - Ziza Digital Clone */

:root {
    --color-primary: #0A70EB;
    /* Branding Blue */
    --color-secondary: #066113;
    /* Branding Green */
    --color-accent: #FCF600;
    /* Branding Yellow */
    --color-text: #555555;
    --color-heading: #333333;
    --color-bg-light: #f7f9fc;
    /* Light blueish grey for sections */
    --color-white: #ffffff;
    --color-black: #000000;
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
    --container-width: 1240px;
    --gutter-width: 15px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #fff;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.2;
}

h2 {
    font-size: 42px;
    position: relative;
    text-transform: uppercase;
}

h2 span {
    color: var(--color-primary);
    font-weight: 900;
}

h3 {
    font-size: 36px;
    text-transform: uppercase;
    color: var(--color-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Utilities */
.wrapper {
    max-width: var(--container-width);
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.align-center {
    text-align: center;
}

.gap-big-top {
    margin-top: 100px;
}

.gap-top {
    margin-top: 60px;
}

.gap-bottom {
    margin-bottom: 60px;
}

.gap-big-bottom {
    margin-bottom: 100px;
}

.gap-small-bottom {
    margin-bottom: 30px;
}

.gap {
    margin: 60px 0;
}

.display-none-mobile {
    display: block;
}

/* Grid System (Simulated from Ziza CSS classes) */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

[class*="col-"] {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

/* XL Breakpoint (Desktop) */
@media (min-width: 1200px) {
    .row-xl-2>.col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-xl-3>.col-xl-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .row-xl-3>.col-xl-2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .row-xl-3>.col-xl-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .row-xl-3>.col-xl-1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .row-xl-3>.col-xl-10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .row-xl-4>.col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

/* L Breakpoint (Laptop) */
@media (min-width: 992px) and (max-width: 1199px) {
    .row-l-2>.col-l-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .row-l-3>.col-l-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

/* M Breakpoint (Tablet/Mobile) */
@media (max-width: 991px) {
    .row-m-1>[class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .row-m-2>[class*="col-"] {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .display-none-mobile {
        display: none;
    }

    h2 {
        font-size: 32px;
    }

    h3 {
        font-size: 28px;
    }

    .gap-big-top {
        margin-top: 50px;
    }

    #bannerhome {
        min-height: 500px;
        height: auto;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(90deg, #0A70EB 0%, #066113 100%);
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: linear-gradient(90deg, #066113 0%, #0A70EB 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    color: #fff;
}

/* Header */
.top_header {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    padding: 8px 0;
    font-size: 13px;
    display: block;
}

.top_header .menu {
    display: flex;
    justify-content: flex-end;
}

.top_header .menu li {
    margin-left: 20px;
}

.top_header a {
    color: #888;
    font-weight: 600;
}

.top_header a:hover {
    color: var(--color-primary);
}

.inner_header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header_bot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    max-height: 50px;
    width: auto;
}

.after-logo {
    display: flex;
    align-items: center;
}

#navigation .nav-menu {
    display: flex;
}

#navigation .nav-menu>li {
    margin-right: 25px;
    position: relative;
}

#navigation .nav-menu>li>a {
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    padding: 10px 0;
    display: block;
}

#navigation .nav-menu>li>a:hover {
    color: var(--color-secondary);
}

/* Submenu */
#navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 3px solid var(--color-secondary);
}

#navigation .nav-menu>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#navigation .sub-menu li {
    border-bottom: 1px solid #eee;
}

#navigation .sub-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    transition: 0.2s;
}

#navigation .sub-menu li a:hover {
    background: #f9f9f9;
    color: var(--color-primary);
    padding-left: 25px;
}

.menu-toggle {
    display: none;
}

.sub-menu-toggle {
    display: none;
}

.order_now ul li a {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
}

.order_now ul li a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* Hero Section */
#bannerhome {
    position: relative;
    width: 100%;
    height: 85vh;
    /* Or adjust as needed */
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#bannerhome>div {
    width: 100%;
    height: 100%;
}

#bannerhome video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

#bannerhome .wrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#bannerhome .wrapper>img {
    /* The large text image */
    max-width: 80%;
    margin-bottom: 30px;
}

#bannerhome .hero-content p {
    display: flex;
    align-items: center;
    gap: 15px;
}

#bannerhome .hero-arrow {
    width: 50px;
    /* Adjust based on actual image */
}


/* About Section - Blue Section */
.bluesec {
    background-color: #f6faff;
    padding: 80px 0;
    overflow: hidden;
}

.bluesec .img_full img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.bluesec h3 {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--color-primary);
}

.bluesec p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* Services Section */
.ser_box2 {
    background: #fff;
    padding: 40px 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.ser_box2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--color-accent);
}

.ser_box2 img {
    height: 60px;
    width: auto;
    margin-bottom: 25px;
}

.ser_box2 h4 {
    font-size: 20px;
    margin-bottom: 15px;
    min-height: 50px;
    /* Alignment */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ser_box2 p {
    font-size: 15px;
    color: #777;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Clients */
.clients-sec {
    background: #fff;
}

.client_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.client_area ul li {
    opacity: 0.6;
    transition: 0.3s;
    filter: grayscale(100%);
}

.client_area ul li:hover {
    opacity: 1;
    filter: grayscale(0);
}

.client_area ul li img {
    max-height: 50px;
    width: auto;
}

/* Get Started */
.get-startsec h2 {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.get-startsec p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Blog */
.blog_box {
    margin-bottom: 30px;
}

.blog_img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 240px;
    object-fit: cover;
}

.blog_txt {
    padding: 25px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-top: none;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.blog_txt .tv {
    display: flex;
    font-size: 12px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 10px;
    font-weight: 700;
}

.blog_txt h6 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--color-heading);
    line-height: 1.4;
}

/* Testimonials */
.happyclients {
    background-color: #f7f9fc;
    padding: 80px 0;
}

.testimonial-item {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.author-name {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.author-designation {
    font-size: 13px;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
}

.item-content {
    font-size: 18px;
    font-style: italic;
    color: #555;
    margin-top: 20px;
}


/* Footer */
footer {
    background-color: #000000;
    color: #cccccc;
    padding: 70px 0 30px;
    font-size: 14px;
}

footer .footer_logo p {
    margin-bottom: 20px;
    opacity: 0.8;
}

footer h2.widget-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #333;
    display: inline-block;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a {
    color: #ccc;
}

footer ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.copyright_wrap {
    border-top: 1px solid #222;
    margin-top: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright_wrap ul {
    display: flex;
    gap: 15px;
}

.copyright_wrap ul li a {
    font-size: 16px;
}

.pp a {
    margin: 0 10px;
    font-size: 12px;
    font-weight: 700;
}

/* Newsletter Section */
.news_letter {
    background: linear-gradient(135deg, #0A70EB 0%, #066113 100%);
    padding: 60px 40px;
    border-radius: 20px;
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.news_letter h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
}

.clemxytech-newsletter-form .form-row {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.clemxytech-newsletter-form input {
    padding: 15px 20px;
    border-radius: 5px;
    border: none;
    width: 300px;
    max-width: 100%;
}

.clemxytech-newsletter-form button {
    background: #fff;
    color: var(--color-primary);
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
}

.clemxytech-newsletter-form button:hover {
    background: #f0f0f0;
}


/* Animations */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .header_bot {
        flex-wrap: wrap;
    }

    .order_now,
    .main-navigation {
        display: none;
    }

    /* Hide by default on mobile, toggle with js */
    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        text-transform: uppercase;
    }

    .menu-open .main-navigation {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .main-navigation ul {
        flex-direction: column;
    }

    .main-navigation ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }

    .main-navigation ul li a {
        padding: 15px 0;
    }

    .clemxytech-newsletter-form .form-row {
        flex-direction: column;
    }

    .clemxytech-newsletter-form input {
        width: 100%;
    }

    .copyright_wrap {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Consultation Form Styling */
.mail_form {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mail_form h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 24px;
    color: var(--color-primary);
}

.clemxytech-consultation-form .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 20px;
}

.clemxytech-consultation-form input,
.clemxytech-consultation-form textarea,
.clemxytech-consultation-form select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
    color: #666;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.clemxytech-consultation-form input:focus,
.clemxytech-consultation-form textarea:focus,
.clemxytech-consultation-form select:focus {
    border-color: var(--color-secondary);
    background-color: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(40, 116, 252, 0.1);
}

.clemxytech-consultation-form button.btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    margin-top: 10px;
    cursor: pointer;
}

/* Mobile Responsive for Form */
@media (max-width: 768px) {
    .clemxytech-consultation-form .form-row {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 15px;
    }

    .mail_form {
        padding: 30px 20px;
    }
}

/* Services Page Styles */

/* Banner */
.banner_wrap {
    position: relative;
    height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.banner_wrap>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.banner_wrap .ban_txt {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.banner_wrap .ban_txt h2 {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner_wrap .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.banner_wrap .breadcrumb li {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner_wrap .breadcrumb li a {
    color: #ccc;
}

.banner_wrap .breadcrumb li a:hover {
    color: #fff;
}

.banner_wrap .breadcrumb li:not(:last-child):after {
    content: '/';
    margin-left: 10px;
    color: #aaa;
}

/* Intro Section */
.top_right_wrap {
    background-color: #f7f9fc;
    padding: 80px 0;
}

.top_right_wrap h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* Brand Area / Services List */
.brand_wrap {
    background-color: #fff;
    padding: 80px 0;
}

.brand_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.brand_area ul li {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.brand_area ul li:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: #eee;
}

.brand_area ul li img {
    height: 60px;
    width: auto;
    margin: 0 auto 20px;
    display: block;
}

.brand_area ul li h6 {
    font-size: 20px;
    color: var(--color-heading);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
    min-height: 56px;
    /* Align heights */
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand_area ul li p {
    font-size: 15px;
    color: #777;
    margin-bottom: 20px;
    min-height: 80px;
    /* Align description heights approximately */
}

.more_btn a {
    color: var(--color-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
}

.more_btn a:after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.2s;
}

.more_btn a:hover:after {
    margin-left: 10px;
}


/* Responsive */
@media (max-width: 991px) {
    .brand_area ul li {
        flex: 0 0 calc(50% - 30px);
        max-width: calc(50% - 30px);
    }
}

@media (max-width: 767px) {
    .brand_area ul li {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .banner_wrap {
        height: 250px;
    }

    .banner_wrap .ban_txt h2 {
        font-size: 32px;
    }
}

/* Projects Page Styles */

/* Tab Navigation */
.tab_area {
    margin-bottom: 50px;
}

.pro_tab {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    flex-wrap: wrap;
    gap: 10px;
}

.pro_tab li {
    font-size: 16px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.pro_tab li:hover,
.pro_tab li.current {
    color: var(--color-primary);
    /* Uses main.css variable */
    border-bottom-color: var(--color-primary);
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeEffect 0.5s;
}

.tab-content.current {
    display: block;
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Work Box / Grid Item */
.work_box {
    margin-bottom: 40px;
    position: relative;
}

.work_box img,
.work_box video {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    /* Maintain consistency */
}

.work_box:hover img {
    transform: translateY(-5px);
}

.work_box h6 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 5px;
    line-height: 1.4;
    color: var(--color-heading);
}

.work_box h6 a {
    color: inherit;
    text-decoration: none;
}

.work_box h6 a:hover {
    color: var(--color-primary);
}

.work_box p {
    font-size: 14px;
    color: #888;
    margin: 0;
    text-transform: capitalize;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pro_tab li {
        padding: 8px 15px;
        font-size: 14px;
    }

    .work_box img {
        aspect-ratio: 16/9;
    }
}

/* About Page Styles */

/* Team Section */
.team_box {
    margin-bottom: 30px;
    text-align: center;
}

.team_img {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.team_img img {
    width: 100%;
    transition: all 0.5s ease;
}

.team_box:hover .team_img img {
    transform: scale(1.1);
}

.team_img .tc {
    position: absolute;
    bottom: -50px;
    right: 0;
    transition: all 0.5s ease;
}

.team_box:hover .team_img .tc {
    bottom: 0;
}

.team_txt h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-heading);
}

.team_txt p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.team_txt ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team_txt ul li a {
    color: #999;
    font-size: 16px;
    transition: color 0.3s ease;
}

.team_txt ul li a:hover {
    color: var(--color-primary);
}

/* Why Work with Us */
.brand_wrap {
    background-color: #f7f9fc;
    padding: 80px 0;
}

.brand_area ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}

.brand_area ul li {
    flex: 0 0 32%;
    text-align: center;
    background: #fff;
    padding: 40px 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brand_area ul li:hover {
    transform: translateY(-5px);
}

.brand_area ul li img {
    margin-bottom: 20px;
    height: 60px;
    width: auto;
}

.brand_area ul li h6 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-heading);
}

.brand_area ul li p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .brand_area ul li {
        flex: 0 0 100%;
    }
}

/* Header Styles matching Ziza Digital exactly */

/* Top Header */
.top_header {
    background: #000;
    padding: 12px 0;
    font-size: 14px;
}

.top_header .wrapper {
    display: flex;
    justify-content: flex-end;
}

.top_header ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.top_header ul li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.top_header ul li a:hover {
    color: #ccc;
}

/* Inner Header */
.inner_header {
    background: #fff;
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header_bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

/* Logo */
.header_bot .logo {
    display: flex;
    align-items: center;
}

.header_bot .logo img {
    height: auto;
    width: 180px;
    /* Ziza logo width */
    max-width: 100%;
}

/* Navigation Area */
.after-logo {
    display: flex;
    align-items: center;
    gap: 40px;
}

#navigation {
    display: flex;
    align-items: center;
}

/* Primary Menu */
#navigation ul.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
}

#navigation ul.nav-menu>li {
    position: relative;
    padding: 15px 0;
}

#navigation ul.nav-menu>li>a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    transition: color 0.3s;
}

#navigation ul.nav-menu>li.current-menu-item>a,
#navigation ul.nav-menu>li:hover>a {
    color: var(--color-primary);
    /* Ziza blue */
}

/* Dropdown / Submenu */
#navigation ul.sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background: #fff;
    min-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 15px 0;
    border-top: 3px solid var(--color-primary);
}

#navigation ul.nav-menu>li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#navigation ul.sub-menu li {
    display: block;
    margin: 0;
}

#navigation ul.sub-menu li a {
    display: block;
    padding: 10px 25px;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f9f9f9;
}

#navigation ul.sub-menu li:last-child a {
    border-bottom: none;
}

#navigation ul.sub-menu li a:hover {
    color: var(--color-primary);
    background: #fcfcfc;
    padding-left: 30px;
    /* Slide effect */
}

/* CTA Button */
.order_now ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.order_now ul li a {
    background: linear-gradient(135deg, #0A70EB, #066113);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(40, 116, 252, 0.3);
    transition: all 0.3s ease;
}

.order_now ul li a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(40, 116, 252, 0.4);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .top_header {
        display: none;
    }

    .menu-toggle {
        display: block;
        padding: 10px;
    }

    #navigation ul.nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        /* Slide out */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding-top: 60px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.4s ease;
        overflow-y: auto;
    }

    .menu-open #navigation ul.nav-menu {
        right: 0;
    }

    #navigation ul.nav-menu>li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #eee;
    }

    #navigation ul.nav-menu>li>a {
        padding: 15px 25px;
        display: block;
    }

    #navigation ul.sub-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        /* Hidden by default on mobile, toggle via JS if implemented */
        background: #f9f9f9;
        border-top: none;
        padding: 0;
    }

    #navigation ul.nav-menu>li.open .sub-menu {
        display: block;
    }

    .after-logo {
        gap: 20px;
    }

    .order_now {
        display: none;
        /* Hide button on mobile in header, maybe move to menu bottom */
    }
}

/* Contact Page Styles */

.find_area {
    padding-right: 50px;
}

.find_area h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-heading);
}

.find_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.find_area ul li {
    margin-bottom: 30px;
    padding-left: 0;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.find_area ul li strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 5px;
}

.find_area ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.find_area ul li a:hover {
    color: var(--color-primary);
}

/* Right Column Image area */
.bc_area .mail_form img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bc_area .mail_form img:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 991px) {
    .find_area {
        padding-right: 0;
        margin-bottom: 40px;
    }
}

/* Contact Page Specific Fixes */

/* Override default top_right_wrap background if needed, 
   but we handle this via inline styles in the template now. 
   We just ensure proper padding here. */
.page-template-contact-page .top_right_wrap {
    padding: 80px 0;
}

/* Find Area (Left Column) */
.find_area {
    padding-right: 60px;
    /* More breathing room */
}

.find_area h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-heading);
    position: relative;
}

/* List Styling */
.find_area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.find_area ul li {
    margin-bottom: 35px;
    font-size: 16px;
    line-height: 1.8;
    color: inherit;
    /* Inherit from parent which is controlled by Customizer */
}

.find_area ul li strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 8px;
    text-transform: uppercase;
    /* Ziza often uses uppercase for labels */
    letter-spacing: 0.5px;
}

.find_area ul li a {
    color: inherit;
    text-decoration: none;
    font-weight: 500;
}

.find_area ul li a:hover {
    color: var(--color-primary);
}

/* Right Column (Image/Form Area) */
.bc_area {
    padding-left: 20px;
}

.bc_area .mail_form {
    padding: 0;
    background: transparent;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 991px) {
    .find_area {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .bc_area {
        padding-left: 0;
    }
}