/*
Theme Name: Zealminds Theme
Author: Zealminds
Description: Custom WordPress theme
Version: 1.0
*/

/*----------------------------
  Base Styles
----------------------------*/
body {
    margin: 0;
    padding: 0;
    font-family: 'Modelica', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: #212529;
    text-align: left;
}

body p {
    font-family: 'Modelica', sans-serif;
    color: #101010;
    letter-spacing: 0.5px;
    line-height: 1.75;
}

@media (min-width: 480px) {
    body p,
    a {
        font-size: 0.95rem;
    }
}

a {
    color: #101010;
    text-decoration: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body, div {
    margin: 0;
    padding: 0;
}

/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden;
}

/*----------------------------
  Headings
----------------------------*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: #101010;
}

h1 {
    font-size: 52px;
    line-height: 62px;
    letter-spacing: 0.2px;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

/*----------------------------
  Utility Classes
----------------------------*/
.fw-medium {
    font-weight: 500;
}

.custom-spacing {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 991px) {
    .custom-spacing {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1199px) {
    .custom-spacing {
        padding-left: 60px;
        padding-right: 60px;
    }
}

.section-spacer {
    margin-bottom: 40px;
}

@media (min-width: 991px) {
    .section-spacer {
        margin-bottom: 60px;
    }
}

@media (min-width: 1199px) {
    .section-spacer {
        margin-bottom: 80px;
    }
}

.site-btn {
    font-size: 14px;
    line-height: 24px;
    background: #f66135;
    border: 2px solid #f66135;
    padding: 10px 20px; 
    color: #fff; 
    cursor: pointer;
    display: inline-block; 
    text-align: center;
    transition: all 0.3s ease; 
}


.site-btn:hover {
    background: #fff;
    border: 2px solid #f66135;
    color: #f66135;
}

/*----------------------------
  Background Colors
----------------------------*/
.black-bg {
    background: #010510;
}

.black-light-bg {
    background: #202020;
}

.light-bg {
    background: #F4F4F5;
}

/*----------------------------
  Logo Styles
----------------------------*/
.custom-logo {
    max-height: 25px;
    width: auto;
}

@media (min-width: 991px) {
    .custom-logo {
        max-height: 28px;
    }
}

@media (min-width: 1199px) {
    .custom-logo {
        max-height: 30px;
    }
}

.inner-page-site-logo {
    max-height: 25px;
    width: auto;
}

@media (min-width: 1243px) {
    .inner-page-site-logo {
        max-height: 25px;
        width: auto;
    }
}

/*----------------------------
  Header Sections
----------------------------*/
/* Scroll header */
.scroll-header {
    position: relative;
    margin-top: 90px;
    height: 70vh;
    overflow: hidden;
}

.scroll-header .header-image {
    width: 90%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.6s ease;
    position: relative;
}

/* Main service header */
.main-ser-header {
    position: relative;
    margin-top: 68px;
    height: 45vh;
    overflow: hidden;
}

@media (min-width: 768px) {
    .main-ser-header {
        height: 40vh;
    }
}

@media (min-width: 991px) {
    .main-ser-header {
        height: 50vh;
    }
}

@media (min-width: 1200px) {
    .main-ser-header {
        height: 60vh;
    }
}

/* Header image styling */
.header-image-wrapper,
.main-ser-header .header-image {
    width: 100%;
    height: 100%;
    position: relative;
    object-fit: cover;
    object-position: center;
}

.main-ser-header .header-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    position: relative;
    z-index: 0;
}

/* Overlay gradients */
.main-ser-header::after,
.main-ser-header .header-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.main-ser-header::after {
    background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    pointer-events: none;
}

.scroll-header .header-image::before {
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.85) 50%, rgba(0,0,0,0.1) 100%);
}

/* Banner content */
.main-ser-header .banner-content {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    width: 100%;
    max-width: 800px;
    background: rgba(246,97,53,0.1);
    border-radius: 8px;
    padding: 30px 15px; 
    z-index: 2;
}

@media (min-width: 991px) {
    .main-ser-header .banner-content {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 1199px) {
    .main-ser-header .banner-content {
        padding-left: 60px;
        padding-right: 60px;
    }
}

/* Banner title */
.banner-title {
    font-size: 1.7rem;
    line-height: 42px;
    margin-bottom: 15px;
    font-weight: 500;
    color: #fff;
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 2.2rem;
        line-height: 54px;
        margin-bottom: 20px;
    }
}

@media (min-width: 991px) {
    .banner-title {
        font-size: 2.4rem;
        line-height: 48px;
    }
}

/* Banner description */
.banner-desc {
    font-size: 1rem;
    line-height: 1.7;
    letter-spacing: 0.2px;
    color: #fff;
    max-width: 700px;
}

@media (min-width: 769px) {
    .banner-desc {
        font-size: 1.1rem;
    }
}

@media (min-width: 992px) {
    .banner-desc {
        font-size: 1.2rem;
    }
}

/* Header image height for larger screens */
@media (min-width: 992px) {
    .header-image {
        height: 70vh;
    }
}

/* Scroll effect */
.scroll-header.full .header-image {
    width: 100%;
    border-radius: 0;
}

/*----------------------------
  Inner Page Navigation
----------------------------*/
.inner-header .mega-menu-link {
    color: #000 !important;
}

@media (max-width: 991px) {
  .inner-header .mega-menu-link {
    color: #fff !important;
  }
}

.inner-header .mega-site-contact-btn-menu a {
    color: #fff !important;
    font-size: 14px !important;
}

.inner-header .mega-current-menu-item > .mega-menu-link,
.inner-header .current-menu-item > .mega-menu-link,
.inner-header .current_page_item > .mega-menu-link {
    color: #f64d03 !important;
}

.inner-header .mega-menu-link:hover {
    color: #f64d03 !important;
}

/*----------------------------
  Home Page Navbar
----------------------------*/
.home .navbar-brand {
    display: none;
}

.home .mega-toggle-animated-inner,
.home .mega-toggle-animated-inner::before,
.home .mega-toggle-animated-inner::after {
    background-color: #fff !important;
}

/*----------------------------
  Hidden Elements
----------------------------*/
.z-mega-menu {
    display: none !important;
}
