/*
Theme Name: Apexa
Theme URI: http://example.com/apexa
Author: Your Name
Author URI: http://example.com
Description: A Premium Corporate WordPress Theme with Elementor support.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: apexa
Tags: corporate, business, elementor, premium, responsive
*/

/* Variables */
:root {
    --primary-color: #0F2133;
    /* Deep Navy */
    --secondary-color: #EFA63F;
    /* Gold */
    --accent-color: #3498db;
    /* Blue Accent */
    --text-color: #555;
    --heading-color: #0F2133;
    --bg-color: #fff;
    --light-bg: #f9f9f9;
    --border-color: #eee;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
}

/* Reset & Basic Styles */
body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

/* Layout & Grid */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.p-0 {
    padding: 0 !important;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 15px;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Header Styles */
.top-bar {
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-right: 8px;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 14px;
}

.social-icons a:hover {
    color: var(--secondary-color);
}

.main-header {
    padding: 0;
    background: #fff;
    box-shadow: var(--box-shadow);
    position: relative;
    z-index: 100;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.site-branding .site-title {
    font-size: 28px;
    margin: 0;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.site-branding .site-title a {
    color: var(--primary-color);
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-navigation ul li {
    margin-left: 35px;
    position: relative;
}

.main-navigation ul li a {
    color: var(--heading-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    padding: 35px 0;
    display: block;
    position: relative;
}

.main-navigation ul li a::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.main-navigation ul li:hover a::after,
.main-navigation ul li.current-menu-item a::after {
    width: 100%;
}

.main-navigation ul li a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: var(--transition);
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, var(--secondary-color) 0%, #e69526 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(239, 166, 63, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 166, 63, 0.4);
    color: #fff;
}

/* Breadcrumb */
.breadcrumb-area {
    background-color: #0F2133;
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    background-size: cover;
    background-position: center;
}

.breadcrumb-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 33, 51, 0.8);
}

.breadcrumb-content {
    position: relative;
    z-index: 1;
    color: #fff;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 800;
}

.breadcrumb-nav {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: #ccc;
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
}

/* Content Area */
.site-main {
    min-height: 400px;
}

.entry-content {
    margin-bottom: 40px;
}

/* Footer */
.site-footer {
    background-color: #0b1622;
    color: #aaa;
    padding: 90px 0 0;
    font-size: 15px;
}

.footer-widgets {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.site-info {
    padding: 25px 0;
    text-align: center;
    background-color: #081018;
}

.copyright-text {
    color: #777;
    font-size: 14px;
}

/* Elementor Widget Styles */
.apexa-hero-slider .apexa-slide-item {
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.apexa-hero-slider .apexa-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.apexa-hero-slider .slide-content {
    max-width: 700px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.apexa-hero-slider .slide-title {
    font-size: 70px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.apexa-hero-slider .slide-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.apexa-service-box {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-radius: 10px;
    border-bottom: 3px solid transparent;
}

.apexa-service-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
}

.apexa-service-box .service-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1;
}

.apexa-service-box .service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.apexa-service-box .service-desc {
    color: #777;
}

.apexa-team-member {
    text-align: center;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.apexa-team-member:hover {
    transform: translateY(-5px);
}

.apexa-team-member .team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.apexa-team-member:hover .team-image img {
    transform: scale(1.05);
}

.apexa-team-member .team-info {
    padding: 25px;
}

.apexa-team-member .team-name {
    margin-bottom: 5px;
    font-size: 20px;
}

.apexa-team-member .team-position {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.apexa-testimonial-carousel .testimonial-item {
    text-align: center;
    padding: 50px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin: 20px;
}

.apexa-testimonial-carousel .testimonial-content {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
}

.apexa-testimonial-carousel .testimonial-meta img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.site-footer {
    background-color: #0b1622;
    color: #aaa;
    padding: 90px 0 0;
    font-size: 15px;
}

.footer-widgets {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-column h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #aaa;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.site-info {
    padding: 25px 0;
    text-align: center;
    background-color: #081018;
}

.copyright-text {
    color: #777;
    font-size: 14px;
}

/* Elementor Widget Styles */
.apexa-hero-slider .apexa-slide-item {
    height: 700px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.apexa-hero-slider .apexa-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.apexa-hero-slider .slide-content {
    max-width: 700px;
    color: #fff;
    position: relative;
    z-index: 2;
}

.apexa-hero-slider .slide-title {
    font-size: 70px;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.apexa-hero-slider .slide-desc {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.apexa-service-box {
    text-align: center;
    padding: 50px 30px;
    background: #fff;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-radius: 10px;
    border-bottom: 3px solid transparent;
}

.apexa-service-box:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
}

.apexa-service-box .service-icon {
    font-size: 60px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1;
}

.apexa-service-box .service-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.apexa-service-box .service-desc {
    color: #777;
}

.apexa-team-member {
    text-align: center;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.apexa-team-member:hover {
    transform: translateY(-5px);
}

.apexa-team-member .team-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.apexa-team-member:hover .team-image img {
    transform: scale(1.05);
}

.apexa-team-member .team-info {
    padding: 25px;
}

.apexa-team-member .team-name {
    margin-bottom: 5px;
    font-size: 20px;
}

.apexa-team-member .team-position {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.apexa-testimonial-carousel .testimonial-item {
    text-align: center;
    padding: 50px;
    background: #fff;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin: 20px;
}

.apexa-testimonial-carousel .testimonial-content {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    color: #555;
}

.apexa-testimonial-carousel .testimonial-meta img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.apexa-testimonial-carousel .testimonial-meta h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.apexa-testimonial-carousel .testimonial-meta span {
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 600;
}

/* Homepage Sections */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-bg);
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 36px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header {
    margin-bottom: 60px;
}

/* Hero Section */
.home-hero {
    height: 80vh;
    min-height: 600px;
    background-color: #0F2133;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 33, 51, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

/* About Section */
.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background-color: #ddd;
    border-radius: 10px;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    margin-top: 20px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Services Section */
.service-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 3px solid transparent;
}

.service-item:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--secondary-color);
}

.service-icon {
    font-size: 50px;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Utilities */
.align-items-center {
    align-items: center;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}