/* ============================================
   EXPANTRA ARABIA - Pixel-Perfect Clone
   Reference: reference.html (Basel/WPBakery theme)
   ============================================ */

/* --- Typography (matching reference Google Fonts) --- */
@import url('https://fonts.googleapis.com/css?family=Karla:400,700,400italic,700italic|Lora:400,700,400italic,700italic|Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic');
@import url('https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic');
@import url('https://fonts.googleapis.com/css?family=Montserrat:regular,700');

:root {
    --primary: #31239b;
    --secondary: #f29748;
    --dark: #302293;
    --light-bg: #f2f8fd;
    --footer-bg: #183650;
}

/* --- Global Reset & Body --- */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Lato', 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #fff;
    -webkit-font-smoothing: antialiased;
}

/* --- Website Frame (Boxed Layout) --- */
.website-wrapper {
    width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
    overflow: hidden;
}

/* --- Container --- */
.container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Grid System --- */
.row-flex {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

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

.align-stretch {
    align-items: stretch !important;
}

.align-stretch > [class*="col-"] {
    display: flex !important;
    flex-direction: column !important;
}

.align-stretch > [class*="col-"] > .block-img,
.align-stretch > [class*="col-"] > .promo-banner {
    flex: 1 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    display: flex !important;
}

.align-stretch > [class*="col-"] > .block-img img,
.align-stretch > [class*="col-"] > .promo-banner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 12px;
}

.align-stretch > [class*="col-"] > .box10 {
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
    min-height: 100% !important;
}

.flex-reverse {
    flex-direction: row-reverse;
}

.col-6 {
    width: 50%;
    padding: 15px;
    box-sizing: border-box;
}

.col-4 {
    width: 33.33%;
    padding: 15px;
    box-sizing: border-box;
}

.col-3 {
    width: 25%;
    padding: 15px;
    box-sizing: border-box;
}

.col-12 {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

/* --- Section Spacing --- */
.section-padding {
    padding: 50px 0;
}

.section-padding-small {
    padding: 30px 0;
}

.section-padding-large {
    padding: 100px 0;
}

/* --- Utility --- */
.text-center {
    text-align: center;
}

.bg-gray {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark);
    color: white;
}

/* --- Section Titles (matching reference exactly) --- */
.section-title {
    font-size: 32px;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: -1px;
    font-family: 'Montserrat', 'Lato', sans-serif;
    font-style: italic;
}

.section-subtitle {
    font-size: 24px;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
    font-family: 'Lato', sans-serif;
}

.orange-sep {
    width: 80px;
    height: 5px;
    background: var(--secondary);
    margin: 0 auto 30px;
}

.orange-sep.left {
    margin-left: 0;
}

/* --- Buttons --- */
.btn-get-touch {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-get-touch:hover {
    background: #fff;
    color: var(--secondary);
    border-color: var(--secondary);
}

/* =============================================
   HEADER & NAVIGATION
   Reference: header-simple, header-full-width
   ============================================= */
header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.site-logo {
    width: 11%;
}

.site-logo img {
    max-width: 200px;
    max-height: 95px;
    width: auto;
    height: auto;
}

.site-logo:hover img {
    opacity: 0.85;
}

/* Main Nav */
.main-nav {
    text-align: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin-left: 0;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 13px;
    height: 95px;
    line-height: 95px;
    display: block;
    transition: color 0.3s;
    text-transform: uppercase;
    padding: 0 12px;
    font-family: 'Lato', sans-serif;
}

.main-nav a:hover,
.main-nav li.active>a {
    color: var(--secondary);
}

/* Sub-menu Dropdown (Services mega-menu) */
.sub-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    width: 1350px;
    min-height: 200px;
    padding: 20px 15px;
    display: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    animation: fadeInDown 0.4s ease;
    z-index: 999;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.main-nav li:hover .sub-menu-dropdown {
    display: flex;
    justify-content: space-between;
}

/* Menu Titles inside dropdown */
.mtitle {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    margin-bottom: 15px;
    text-align: left;
}

.mtitle a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.sub-menu-col {
    width: 25%;
}

.sub-menu-col ul {
    display: block;
}

.sub-menu-col li {
    margin: 0 0 15px 0;
}

.sub-menu-col a {
    padding: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    text-transform: none;
    height: auto;
    line-height: 1.4;
}

.sub-menu-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* =============================================
   SLIDER (Revolution Slider Clone)
   ============================================= */
.custom-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    margin-top: -40px;
    /* vc_custom_1709811525654 */
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 12s linear;
}

.slide.active .slide-bg {
    transform: scale(1);
}

.slide-content {
    position: absolute;
    top: 35%;
    left: 10%;
    color: #fff;
    z-index: 3;
    max-width: 900px;
    animation: fadeInUp 1s ease 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.slide-tag {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tag-bg {
    background: rgba(255, 255, 255, 0.48);
    padding: 8px 25px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 900;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', 'Lato', sans-serif;
}

.slide-footer-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(48, 34, 147, 0.92);
    padding: 35px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    z-index: 4;
}

.slide-footer-text {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 400;
}

/* =============================================
   BOX10 - Content Cards
   Matching: border-bottom: 5px #f29748, border-radius: 10px
   padding: 25px 20px, font styles from reference inline
   ============================================= */
.box10 {
    background: #fff;
    padding: 25px 20px 8px;
    border-radius: 10px;
    border-bottom: 5px solid #f29748;
    position: relative;
    z-index: 1;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.box10::before {
    content: '';
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.box10:hover::before {
    bottom: 0;
}

.box10:hover,
.box10:hover * {
    color: #fff !important;
}

.box10 hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 15px 0;
    transition: border-color 0.6s;
}

.box10:hover hr {
    border-color: rgba(255, 255, 255, 0.4);
}

/* --- Box10 Typography (matching reference inline styles) --- */
.box10 .card-intro {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
    font-style: italic;
    color: #333;
    margin-bottom: 10px;
}

.box10 .card-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary);
    font-style: italic;
    margin-bottom: 10px;
    font-family: 'Montserrat', 'Lato', sans-serif;
}

.box10 .card-body {
    text-align: justify;
    color: #333;
    font-size: 14px;
    line-height: 1.6;
}

/* --- Utility Classes --- */
.section-relative {
    position: relative;
}

.scroll-down-icon {
    position: absolute;
    bottom: -20px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    color: #333;
    font-size: 16px;
    border: 1px solid #eee;
}

.centered-card {
    max-width: 900px;
    margin: 0 auto;
}

.bg-watermark {
    background-image: url('https://indiawebdesigns.online/basaudia/wp-content/uploads/2024/03/Untitled-design-2024-02-26T120555.033.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* =============================================
   CAPABILITY BANNER
   Reference: box10 with-animation, large text block
   ============================================= */
.capability-banner {
    padding: 20px;
    border-radius: 10px;
    border-bottom: 5px solid #f29748;
    margin: 30px 0;
}

.capability-banner h2,
.capability-banner p {
    color: var(--dark);
    text-align: justify;
}

.capability-banner h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.capability-banner p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* =============================================
   SERVICE GRID
   ============================================= */
.service-card {
    padding: 40px;
    text-align: left;
}

.service-card img {
    width: 65px;
    height: 65px;
    margin-bottom: 25px;
    transition: transform 0.5s;
}

.service-card:hover img {
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

/* =============================================
   READ MORE TOGGLE
   ============================================= */
.read-more-checkbox {
    display: none;
}

.read-more-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.read-more-checkbox:checked~.read-more-content {
    max-height: 1000px;
}

.read-more-checkbox:checked~.read-more-label {
    display: none;
}


.read-more-label {
    display: inline-block;
    margin-top: 15px;
    color: blue;
    cursor: pointer;
    font-weight: 400;
    font-size: 18px;
}


/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1.2s all cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   CONTACT SECTION
   Reference: vc_custom_1719053115271, bg #f29748
   ============================================= */


/* =============================================
   CONTACT SECTION - Premium Pill Design
   ============================================= */
.contact-container-pill {
    background: linear-gradient(145deg, #f29748, #e67e22);
    padding: 60px 50px;
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(242, 151, 72, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-container-pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-container-pill h2 {
    color: #fff;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -1px;
}

.pill-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(8px);
    border-radius: 50px !important;
    padding: 14px 25px !important;
    color: #fff !important;
    margin-bottom: 25px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pill-input:focus {
    background: rgba(255, 255, 255, 0.25) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.pill-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
}

.pill-textarea {
    border-radius: 24px !important;
    min-height: 140px;
}

.submit-pill {
    background: #fff;
    color: #31239b;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.submit-pill:hover {
    background: #31239b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(49, 35, 155, 0.4);
}

.captcha-label {
    font-weight: 800;
    margin-bottom: 12px;
    display: block;
    color: #fff;
    font-size: 14px;
    letter-spacing: 1px;
}



/* =============================================
   FOOTER
   Reference: #183650, border-bottom #f29748
   ============================================= */
#contact.bg-dark {
    background-color: #183650;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item img {
    width: 45px;
    height: 45px;
}

.contact-info-item p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    font-size: 18px;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-5px);
}

/* FOOTER STYLES */
.site-footer {
    background: #183650;
    color: #fff;
    padding: 80px 0 30px;
    font-size: 15px;
    border-bottom: 5px solid #f29748;
}

.site-footer h2 {
    color: #f29748;
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.site-footer h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f29748;
}

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

.site-footer ul li {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer ul li:last-child {
    border-bottom: none;
}

.site-footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.site-footer ul li a:hover {
    color: #f29748;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.contact-info-footer {
    margin-bottom: 20px;
}

.contact-info-footer div {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-footer img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
}

/* =============================================
   MOBILE NAV
   ============================================= */
.mobile-nav-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
    color: #333;
}

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 991px) {
    .website-wrapper {
        max-width: 100%;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .mobile-nav-icon {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 20px 0;
    }

    .main-nav a {
        height: auto;
        line-height: 1.4;
        padding: 15px 20px;
        border-bottom: 1px solid #f5f5f5;
    }

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

    /* Mega menu mobile adjustments */
    .sub-menu-dropdown {
        position: static;
        transform: none;
        width: 100%;
        display: none; /* Hidden by default on mobile, can be toggled if needed */
        background: #f9f9f9;
        box-shadow: none;
        padding: 0;
        min-height: auto;
    }

    .main-nav li:hover .sub-menu-dropdown {
        display: none; /* Disable hover mega-menu on mobile */
    }

    .main-nav li.menu-item-has-children > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        float: right;
    }

    .sub-menu-dropdown .row-flex {
        flex-direction: column;
        margin: 0;
    }

    .sub-menu-dropdown .col-6 {
        width: 100% !important;
        padding: 10px 20px;
    }

    .mtitle {
        font-size: 16px;
        margin-bottom: 5px;
        color: var(--primary);
    }

    .mtitle a {
        color: var(--primary);
        padding: 5px 0;
    }

    .col-4,
    .col-3 {
        width: 50%;
    }

    .sub-menu-dropdown {
        width: 95vw;
        flex-wrap: wrap;
    }

    .sub-menu-col {
        width: 45%;
        margin-bottom: 30px;
    }

    .header-inner {
        height: 70px;
    }

    .site-logo {
        width: 25%;
    }

    .site-logo img {
        max-height: 60px;
    }
}

@media (max-width: 767px) {

    .col-6,
    .col-4,
    .col-3 {
        width: 100%;
    }

    .flex-reverse {
        flex-direction: column;
    }

    .slide-title {
        font-size: 28px;
    }

    .slide-content {
        left: 5%;
        top: 25%;
        max-width: 90%;
    }

    .slide-footer-bar {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 20px 5%;
    }

    .custom-slider {
        height: 60vh;
    }

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

    .box10 {
        padding: 15px;
    }

    .capability-banner h2 {
        font-size: 24px;
    }

    /* =============================================
   SERVICE CARDS - Detailed Design
   ============================================= */
    .service-card {
        background-color: #fff;
        transition: all 0.4s ease;
        border-radius: 0;
        overflow: hidden;
        text-align: left;
        height: 100%;
    }

    .service-card h3 {
        color: #31239b;
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .service-card p {
        color: #302293;
        font-size: 15px;
        line-height: 1.6;
        text-align: justify;
    }

    .read-more-checkbox {
        display: none;
    }

    .read-more-content {
        display: none;
    }

    .read-more-checkbox:checked+.read-more-content {
        display: block;
    }

    .read-more-label {
        color: blue;
        font-weight: bold;
        cursor: pointer;
        display: inline-block;
    }

    .read-more-checkbox:checked~.read-more-label {
        display: none;
    }
}

/* --- Utility Classes --- */
.h-100 {
    height: 100% !important;
}

.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.service-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}