/*
Theme Name: Elite
Theme URI: https://elite.com/
Author: Chetan Baraiya
Author URI: #
Description: A high-fidelity IT services WordPress theme with premium animations and cinematic layout.
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: elite
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #554096;
    --primary-purple: #554096;
    --dark-purple: #3C266A;
    --deep-black: #000000;
    --text-color: #333333;
    --light-gray: #f2f5f9;
    --white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --accent-blue: #3C266A;
    --bg-soft-blue: #f5f3ff;
    --bg-soft-purple: #f5f3ff;
    --bg-soft-green: #f0fdf4;
    --bg-soft-orange: #fff7ed;
    --bg-soft-teal: #f0fdfa;
    --bg-soft-pink: #fdf2f8;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
}

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

/* Header & Top Bar Styles */
.top-bar {
    background: #001533;
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    margin-right: 25px;
}

.top-bar-left i {
    color: var(--primary-blue);
    margin-right: 8px;
}

.social-icons a {
    color: var(--white);
    margin-left: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--primary-blue);
}

.site-header-ref {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

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

.logo-text-ref {
    font-size: 24px;
    font-weight: 800;
    color: #001533;
    letter-spacing: 1px;
}

.logo-text-ref span {
    color: var(--primary-blue);
}

.main-navigation-ref ul {
    top: 50px;
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.main-navigation-ref li {
    margin: 0 15px;
}

.main-navigation-ref a {
    text-decoration: none;
    color: #001533;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.main-navigation-ref a:hover,
.main-navigation-ref .current-menu-item>a,
.main-navigation-ref .current_page_item>a {
    color: #554096;
}

.main-navigation-ref .current-menu-item>a,
.main-navigation-ref .current_page_item>a {
    position: relative;
}

.main-navigation-ref .current-menu-item>a::after,
.main-navigation-ref .current_page_item>a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #554096;
    transition: width 0.3s ease;
}

/* Submenu Styles */
.menu-item.has-submenu {
    position: relative;
    padding-right: 5px;
}

.menu-item.has-submenu i {
    font-size: 10px;
    margin-left: 5px;
    transition: 0.3s;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    display: block !important;
    /* Override flex if needed */
    flex-direction: column !important;
    padding: 15px 0 !important;
    border-top: 3px solid var(--primary-blue);
    z-index: 100;
}

.submenu li {
    margin: 0 !important;
    width: 100%;
}

.submenu a {
    padding: 10px 25px;
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

.submenu a:hover {
    background: var(--bg-soft-blue);
    color: var(--primary-blue);
}

.menu-item.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-item.has-submenu:hover i {
    transform: rotate(180deg);
}

.menu-toggle {
    display: none;
}

.btn-quote {
    background: #554096;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(85, 64, 150, 0.3);
}

/* Hero V2 */
.hero-v2 {
    position: relative;
    padding: 160px 0 250px;
    color: var(--white);
    overflow: hidden;
}

.hero-v2-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero-v2-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ken-burns-v2 30s ease-in-out infinite alternate;
}

@keyframes ken-burns-v2 {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, -2%);
    }
}


.hero-v2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9), rgba(60, 38, 106, 0.6));
    z-index: -1;
}

.hero-v2-subtitle {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.hero-v2-text h1 {
    font-size: clamp(40px, 8vw, 70px);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-v2-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary-ref {
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.hero-cards-container {
    position: absolute;
    margin-top: -70px;
    /* bottom: -60px; */
    width: 100%;
    z-index: 10;
}

.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hero-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 20px;
}

.card-icon-box {
    min-width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-card:hover .card-icon-box {
    transform: scale(1.1) rotate(10deg);
    background: #44327a;
    box-shadow: 0 10px 25px rgba(85, 64, 150, 0.4);
}


.card-info h3 {
    font-size: 18px;
    margin: 0 0 10px;
    color: #001533;
}

.card-info p {
    font-size: 14px;
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* --- NEW SECTIONS REPLICATION --- */

/* Services Grid (What We Offer) */
.section-offer {
    padding: 80px 0 100px;
    background: #fff;
}

.section-header-offer {
    text-align: center;
    margin-bottom: 60px;
}

.offer-sub {
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.section-header-offer h2 {
    margin-top: 10px;
    font-size: 45px;
    font-weight: 800;
    color: #001533;
    margin-bottom: 20px;
}


.logo-text-white {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.offer-card {
    padding: 40px;
    border-radius: 15px;
    transition: 0.3s;
    /* display: flex; */
    gap: 20px;
    text-align: left;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.offer-card.bg-blue {
    background: #eff3fa;
}

.offer-card.bg-purple {
    background: #eff3fa;
}

.offer-card.bg-green {
    background: #eff3fa;
}

.offer-card.bg-orange {
    background: #eff3fa;
}

.offer-card.bg-teal {
    background: #eff3fa;
}

.offer-card.bg-pink {
    background: #eff3fa;
}

.offer-grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.offer-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-card:hover .offer-icon {
    transform: translateY(-10px) scale(1.15);
    color: var(--primary-blue);
    filter: drop-shadow(0 10px 15px rgba(85, 64, 150, 0.3));
}


.offer-info h3 {
    text-align: center;
    font-size: 18px;
    margin: 10px 0 10px;
    color: #001533;
    font-weight: 700;
}

.offer-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.offer-readmore {
    font-weight: 700;
    color: #001533;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Trust/Acclaimed Company Banner */
.trust-banner-container {
    padding: 20px 0 100px;
}

.trust-banner {
    background: linear-gradient(135deg, #000000 0%, #554096 100%);
    border-radius: 20px;
    padding: 60px;
    color: #fff;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    position: relative;
    overflow: visible;
}

.award-badge-box {
    display: flex;
    gap: 30px;
    align-items: center;
}

.award-icon-large {
    font-size: 70px;
    color: #ffcc00;
}

.award-text h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.award-text p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-estimate {
    border: 1px solid #fff;
    padding: 12px 25px;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.logos-carousel-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    overflow: hidden;
    width: 100%;
}

.logo-carousel-row {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;
}

.row-ltr .logo-track {
    animation: scroll-ltr 30s linear infinite;
}

.row-rtl .logo-track {
    animation: scroll-rtl 30s linear infinite;
}

@keyframes scroll-ltr {
    0% {
        transform: translateX(calc(-50% - 30px));
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes scroll-rtl {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 30px));
    }
}

.logo-item {
    opacity: 0.6;
    filter: brightness(0) invert(1);
    transition: 0.3s;
    flex-shrink: 0;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    height: 70px;
    width: auto;
}

.verified-floating {
    position: absolute;
    top: -70px;
    right: 40px;
    background: #fff;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgb(0 0 0 / 38%);
    color: #333;
    text-align: center;
    width: 200px;
}

.v-tag {
    background: #0056fb;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
    display: inline-block;
}

.v-stars {
    color: #ff9900;
    font-size: 12px;
    margin-bottom: 5px;
}

.v-count {
    font-weight: 800;
    font-size: 16px;
    display: block;
}

.v-label {
    font-size: 12px;
    color: #666;
}

/* Working Process */
.process-section {
    padding: 100px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.process-left {
    position: relative;
}

.proc-sub {
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.process-left h2 {
    font-size: 45px;
    font-weight: 800;
    color: #001533;
    line-height: 1.2;
    margin-bottom: 25px;
}

.process-left h2 span {
    border-bottom: 3px solid var(--primary-blue);
}

.process-left p {
    color: #666;
    margin-bottom: 35px;
    line-height: 1.7;
}

.btn-explore-more {
    border: 1px solid #001533;
    padding: 12px 30px;
    border-radius: 30px;
    color: #001533;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-img-box {
    position: relative;
    min-width: 90px;
}

.step-img {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    object-fit: cover;
}

.step-icon {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7c5fd1 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 25px rgba(85, 64, 150, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-item:hover .step-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 15px 30px rgba(85, 64, 150, 0.5);
}

.hero-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
    color: #001533;
    font-weight: 800;
    padding: 2px 14px;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-left: 4px;
    vertical-align: middle;
}

.step-number-float {
    position: absolute;
    top: -10px;
    left: -10px;
    background: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 12px;
}

.step-info h4 {
    font-size: 18px;
    font-weight: 800;
    color: #001533;
    margin: 0 0 10px;
}

.step-info p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Existing Sections Carryover */
.about-v2 {
    padding: 160px 0 100px;
    background: var(--white);
}

.about-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-v2-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

.about-v2-content h2 {
    font-size: 45px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #001533;
    font-weight: 800;
}

.about-v2-content .underline {
    border-bottom: 4px solid #554096;
}

.about-v2-features {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 10px;
}

.about-v2-cta-box {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
}

/* Footer Styling Redux */
.site-footer-ref {
    background: #000000;
    color: #fff;
    padding: 80px 0 0;
}

.footer-ref-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
}

.footer-bottom-ref {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    font-size: 14px;
}

/* Responsive Adjustments consolidated to end of file */

/* --- NEW REPLICATION SECTIONS V2 --- */

/* Sliding Banner */
.sliding-banner {
    background: #554096;
    color: #fff;
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.page-header-marquee .sliding-banner {
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sliding-content {
    display: inline-block;
    animation: slide-text 100s linear infinite;
    padding-left: 100%;
}

.sliding-content span {
    font-size: 14px;
    font-weight: 800;
    margin: 0 30px;
    display: inline-block;
}

@keyframes slide-text {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Products & OEM Brands Supported Section */
.products-oem-section {
    background: radial-gradient(circle at 50% 50%, #150e2a 0%, #000000 100%);
    padding: 120px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.particles-bg canvas {
    display: block;
    width: 100%;
    height: 100%;
}

/* Ensure content is above particles */
.products-oem-section .container {
    position: relative;
    z-index: 2;
}

.products-oem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.products-oem-header .header-left h2 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    background: linear-gradient(135deg, #fff 0%, #aab 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-oem-header .header-right {
    max-width: 450px;
}

.products-oem-header .header-right p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
    margin: 0;
}

.products-oem-header .header-right strong {
    color: var(--primary-blue);
}

.products-oem-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 10px;
    align-items: center;
}

.oem-col {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.oem-card {
    display: flex;
    gap: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 20px;
    border-radius: 15px;
}

.oem-card:hover {
    background: rgba(85, 64, 150, 0.05);
    transform: translateY(-5px);
}

.oem-left .oem-card {
    text-align: right;
    flex-direction: row-reverse;
}

.oem-right .oem-card {
    text-align: left;
}

.oem-icon-wrapper {
    min-width: 50px;
}

.oem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #7c5fd1 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(85, 64, 150, 0.3);
    transition: 0.3s;
}

.oem-card:hover .oem-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 25px rgba(85, 64, 150, 0.5);
}

.oem-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 12px;
    color: #fff;
    letter-spacing: -0.5px;
}

.oem-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 15px;
}

.supported-brands {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-blue);
    display: block;
    opacity: 0.9;
}

.oem-image-container {
    padding: 0 20px;
    text-align: center;
    position: relative;
}

.oem-image-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(85, 64, 150, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.oem-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(85, 64, 150, 0.4));
    animation: float-circuit 6s ease-in-out infinite;
}

@keyframes float-circuit {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Responsive products-oem-section */
@media (max-width: 1100px) {
    .products-oem-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .oem-center {
        order: -1;
        max-width: 450px;
        margin: 0 auto;
    }

    .oem-left .oem-card,
    .oem-right .oem-card {
        text-align: left;
        flex-direction: row;
        padding-left: 0;
    }

    .products-oem-header {
        flex-direction: column;
        gap: 30px;
    }

    .oem-col {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .products-oem-header .header-left h2 {
        font-size: 36px;
    }

    .products-oem-section {
        padding: 80px 0;
    }

    .oem-card {
        flex-direction: column;
        gap: 15px;
    }

    .oem-left .oem-card {
        flex-direction: column;
    }
}

/* Testimonials V2 */
/* Testimonials V2 Refinement */
.testimonials-section-v2 {
    padding: 100px 0;
    background: #fff;
}

.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 100px;
}

.t-header-left {
    flex: 1;
}

.t-header-right {
    flex: 1;
}

.t-header-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.testimonials-header-row h2 {
    font-size: 50px;
    font-weight: 800;
    color: #001533;
    line-height: 1.1;
    margin: 0;
}


.testimonials-content-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 30px;
    align-items: stretch;
}

.trustpilot-box-v2 {
    padding: 20px 0;
}

.tp-logo-v2 {
    height: 25px;
    margin-bottom: 15px;
}

.tp-stars-v2 {
    color: #ff9d00;
    font-size: 14px;
    margin-bottom: 10px;
}

.tp-score-v2 {
    font-weight: 800;
    color: #666;
    display: block;
    margin-bottom: 25px;
}

.tp-nav-v2 {
    display: flex;
    gap: 15px;
}

.tp-btn-v2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-btn-v2:hover {
    background: #001533;
    color: #fff;
    border-color: #001533;
}

.testimonial-card-v2 {
    background: #eff5ff;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-v2 p {
    font-size: 16px;
    line-height: 1.6;
    color: #001533;
    font-weight: 500;
    margin-bottom: 40px;
}

.testimonial-footer-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.testimonial-user-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar-v2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info-v2 h4 {
    margin: 0 0 2px;
    font-weight: 800;
    color: #001533;
    font-size: 16px;
}

.user-info-v2 span {
    font-size: 12px;
    color: #666;
}

.quote-icon-box-v2 {
    width: 50px;
    height: 50px;
    background: #001533;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-icon-v2 {
    font-size: 18px;
    color: #fff;
}

/* Partner Banner V2 */
.partner-banner-v2 {
    padding: 120px 0;
    background: url(assets/images/infrastructure-core.png);
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    border-radius: 50px;
    /* border-top-left-radius: 50px; */
    /* border-top-right-radius: 50px; */
    overflow: hidden;
    margin: 20px;
}

.partner-banner-v2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.95), rgba(60, 38, 106, 0.8));
}

.partner-v2-container {
    position: relative;
    z-index: 1;
}

.partner-v2-content h2 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 50px;
    max-width: 900px;
}

.partner-v2-content h2 span {
    color: #fff;
    /* border-bottom: 5px solid var(--primary-blue); */
}

.partner-v2-features {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.feature-item-v2 {
    display: flex;
    align-items: center;
    gap: 15px;
}

.f-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-blue);
}

.feature-item-v2 span {
    font-weight: 600;
}

.partner-v2-btns {
    display: flex;
    gap: 20px;
}

.btn-outline-v2 {
    border: 1px solid #fff;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline-v2:hover {
    background: #fff;
    color: #001533;
}

/* Responsive Adjustments consolidated to end of file */

/* Latest News Section V2 */
.news-section-v2 {
    padding: 100px 0;
    background: #f8fbff;
}

.news-header-v2 {
    margin-bottom: 60px;
}

.news-header-v2 h2 {
    font-size: 45px;
    font-weight: 800;
    color: #001533;
    line-height: 1.2;
    margin-top: 15px;
}

.news-header-v2 h2 span {
    border-bottom: 3px solid #554096;
}

.news-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card-v2 {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: 0.4s;
}

.news-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(85, 64, 150, 0.1);
}

.news-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    font-size: 13px;
}

.author-name {
    font-weight: 700;
    color: #001533;
}

.news-date {
    color: #888;
}

.news-img-box {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 15px;
}

.news-img-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: 0.5s;
}

.news-card-v2:hover .news-img-box img {
    transform: scale(1.1);
}

.news-tag {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 11px;
    color: #666;
    margin-bottom: 15px;
}

.news-card-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: #001533;
    line-height: 1.4;
}

/* Floating Elements */
.floating-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.float-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-icon:hover {
    transform: scale(1.1);
}

.whatsapp-float {
    background: #25D366;
}

.back-to-top {
    background: #554096;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Social Official Colors */
.social-icons a[href*="facebook"]:hover {
    background: #1877F2 !important;
    color: #fff !important;
}

.social-icons a[href*="instagram"]:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%) !important;
    color: #fff !important;
}

.social-icons a[href*="twitter"]:hover,
.social-icons a[href*="x.com"]:hover {
    background: #000000 !important;
    color: #fff !important;
}

.social-icons a[href*="linkedin"]:hover {
    background: #0077B5 !important;
    color: #fff !important;
}

.social-icons a[href*="pinterest"]:hover {
    background: #BD081C !important;
    color: #fff !important;
}

/* Global Utilities */
.center {
    text-align: center;
}

.v2-subtitle.center {
    justify-content: center;
}

/* About Page V2 Corporate Styles */
.about-page-v2 {
    background: #fff;
}

.about-v2-hero {
    padding: 120px 0;
    text-align: center;
    background: #f8fbff;
}

.about-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

.about-hero-content-left {
    flex: 1;
}

.about-hero-image-right {
    flex: 1;
}

.about-hero-image-right img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.about-hero-content-left h1 {
    font-size: 45px;
    font-weight: 800;
    color: #001533;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-hero-content h1 span {
    color: #554096;
}

.lead-text {
    font-size: 19px;
    color: #556;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-quote-box {
    background: #fff;
    padding: 30px;
    border-left: 5px solid #554096;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
}

.hero-quote-box p {
    font-style: italic;
    color: #001533;
    margin: 0;
}

/* Expertise Grid */
.about-expertise-section {
    padding: 120px 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-item {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #f0f3f6;
    transition: 0.4s;
}

.expertise-item:hover {
    border-color: #dbeafe;
    box-shadow: 0 15px 40px rgba(85, 64, 150, 0.08);
    transform: translateY(-8px);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: rgba(85, 64, 150, 0.1);
    color: #554096;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
}

.expertise-item h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Vision & Mission */
.vision-mission-section {
    padding: 100px 0;
    background: #000000;
    color: #fff;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vm-card {
    display: flex;
    gap: 25px;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vm-icon {
    font-size: 40px;
    color: #554096;
}

.vm-text h3 {
    margin-top: 0px;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Commitment Section */
.about-commitment-section {
    padding: 120px 0;
}

.commitment-flex-v2 {
    display: flex;
    align-items: center;
    gap: 80px;
}

.commitment-image-left {
    flex: 0.8;
}

.commitment-image-left img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(85, 64, 150, 0.1);
}

.commitment-content-right {
    flex: 1.2;
}

.result-list-v2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.result-item-v2 {
    background: #f8fbff;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 14px;
    color: #001533;
    display: flex;
    align-items: center;
    gap: 10px;
}

.r-check {
    color: #554096;
    font-weight: 900;
}

/* Why Trust Section */
.why-trust-section {
    padding: 120px 0;
    background: #fcfdfe;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
}

.trust-card h4 {
    color: #554096;
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 800;
}

/* CTA Box */
.about-cta-v2 {
    padding: 0 20px 120px;
}

.cta-box-v2 {
    background: linear-gradient(135deg, #3C266A, #554096);
    padding: 80px 40px;
    text-align: center;
    border-radius: 30px;
    color: #fff;
}

.cta-box-v2 h2 {
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box-v2 p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

@media screen and (min-width: 1600px) and (max-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}

@media screen and (min-width: 1440px) and (max-width: 1599px) {
    .container {
        max-width: 1380px;
    }

    .hero-v2-text h1 {
        font-size: 55px;
    }
}

@media screen and (min-width: 1280px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .hero-v2-text h1 {
        font-size: 48px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .top-bar {
        display: none;
    }

    .container {
        max-width: 90%;
    }

    .hero-v2 {
        padding: 100px 0 150px;
    }

    .hero-v2-text h1 {
        font-size: 40px;
    }

	.hero-cards-grid {
		 grid-template-columns: repeat(3, 1fr);
	}
	.hero-card {
		padding: 10px;}
	.hero-cards-container {
		margin-top: -100px;}
	.about-preview-img-v2 img {
    width: 70% !important;
    margin: auto;
}
    .offer-grid,
    .projects-grid-v2,
    .expertise-grid,
    .trust-grid,
    .vm-grid,
    .testimonials-content-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .trust-banner {
        grid-template-columns: 1fr;
        padding: 40px;
        text-align: center;
    }

    .award-badge-box {
        flex-direction: column;
        gap: 20px;
    }

    .verified-floating {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        margin-top: 30px;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #001533;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .main-navigation-ref {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .main-navigation-ref,
    .header-cta-ref {
        display: none;
    }

    /* Keep existing mobile nav styles for tablet too */
    .main-navigation-ref.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
    }
}

@media screen and (min-width: 300px) and (max-width: 767px) {
    .container {
        max-width: 95%;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: #001533;
    }

    /* Animation */
    .menu-toggle.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-navigation-ref {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #fff;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .main-navigation-ref.active {
        left: 0;
    }

    .menu-item.has-submenu.submenu-open .submenu {
        display: block;
        opacity: 1;
        visibility: visible;
        position: static;
        box-shadow: none;
        padding-left: 20px;
        background: transparent;
    }

    .menu-item.has-submenu.submenu-open>a i {
        transform: rotate(180deg);
    }

    .main-navigation-ref ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .main-navigation-ref a {
        font-size: 24px;
    }

    .header-cta-ref {
        display: none;
    }

    .hero-v2 {
        padding: 60px 0 100px;
        text-align: center;
    }

    .hero-v2-text h1 {
        font-size: 32px;
    }

    .hero-v2-text p {
        font-size: 16px;
    }

    .hero-cards-container {
        position: relative;
        margin-top: 0;
        background: #fff;
        padding: 20px 0;
    }

    .hero-cards-grid,
    .offer-grid,
    .projects-grid-v2,
    .expertise-grid,
    .trust-grid,
    .vm-grid,
    .result-list-v2,
    .testimonials-content-grid-v2,
    .footer-flex {
        grid-template-columns: 1fr;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .logo-item img {
        max-width: 120px;
    }

    .testimonials-header-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .about-hero-flex,
    .commitment-flex-v2 {
        flex-direction: column;
        text-align: center;
    }

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

    .section-header-v2 h2,
    .section-header-offer h2,
    .partner-v2-content h2,
    .news-header-v2 h2 {
        font-size: 28px;
    }

    .partner-banner-v2 {
        padding: 60px 20px;
        border-radius: 20px;
        margin: 10px;
    }

    .partner-v2-features {
        flex-direction: column;
        gap: 20px;
    }

    .partner-v2-btns {
        flex-direction: column;
    }

    .award-icon-large {
        font-size: 50px;
    }

    .award-badge-box {
        flex-direction: column;
    }

    .news-grid-v2 {
        grid-template-columns: repeat(1, 1fr);
    }

    .trust-banner {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
        overflow: hidden;
    }

    .award-badge-box {
        align-items: center;
        margin-bottom: 40px;
    }

    .logos-carousel-container {
        margin-top: 20px;
    }

    .top-bar {
        display: none;
    }

    .about-preview-section-v2,
    .section-offer,
    .news-section-v2,
    .about-preview-section-v2,
    .about-expertise-section {
        padding: 40px 0 0px !important;
    }

    .accordion-icon {
        width: 35px !important;
        height: 25px !important;
        border-radius: 70% !important;
    }
	.verified-floating {top: 0px;position: static;}
	
}

/* Page Header & Breadcrumbs */
.page-header-v2 {
    position: relative;
    padding: 100px 0 100px;
    background: #000;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.header-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* opacity: 0.6; */
}

.page-header-v2 .container {
    position: relative;
    z-index: 2;
}

.page-header-v2 h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumbs-v2 {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

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

.breadcrumbs-v2 a:hover {
    color: var(--primary-blue);
}

.breadcrumbs-v2 span {
    margin: 0 10px;
}

/* Service Detail Sections */
.service-detail-section {
    padding: 120px 0;
}

.service-detail-section.bg-light {
    background: #f8f9fa;
}

.service-detail-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 40px;
    font-weight: 800;
    margin: 20px 0;
}

.service-detail-content h2 span {
    color: var(--primary-blue);
}

.service-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-feature-list {
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-feature-list li i {
    color: var(--primary-blue);
    font-size: 20px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

/* Contact Section V2 */
.contact-section-v2 {
    padding: 120px 0;
}

.contact-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.contact-info-column h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 20px 0;
}

.contact-info-column h2 span {
    color: var(--primary-blue);
}

.contact-info-column p {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.info-blocks-v2 {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item-v2 {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-item-v2 i {
    width: 60px;
    height: 60px;
    background: rgba(85, 64, 150, 0.1);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
}

.info-text span {
    display: block;
    font-size: 14px;
    color: #999;
}

.info-text strong {
    font-size: 16px;
    color: #333;
}

/* Contact Form V2 */
.contact-form-v2 {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #eee;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(85, 64, 150, 0.1);
}

.cont-email a {
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.cont-email a:hover {
    color: var(--primary-blue);
}

.footer-contact a {
    color: #aab;
    text-decoration: none;
}

/* Map Section */
.map-section-v2 iframe {
    filter: grayscale(1) invert(1) contrast(1.2);
    display: block;
}

/* Responsive Adjustments for new sections */
@media screen and (max-width: 1024px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-detail-flex,
    .contact-grid-v2 {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .contact-form-v2 {
        padding: 30px;
    }
}

@media screen and (max-width: 767px) {

    .offer-grid,
    .projects-grid-v2,
    .hero-cards-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-section,
    .contact-section-v2 {
        padding: 80px 0;
    }

    .service-detail-content h2,
    .contact-info-column h2,
    .section-header-offer h2 {
        font-size: 32px;
    }

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

    .trust-banner {
        padding: 40px 20px;
    }

    .award-text h3 {
        font-size: 24px;
    }
}

/* --- FAQ SECTION V2 --- */
.faq-section-v2 {
    background: #000000;
    padding: 100px 0;
    color: #ffffff;
}

.faq-row-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: flex-start;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #000000;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.faq-badge i {
    font-size: 8px;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 40px;
}

.faq-title span {
    color: #554096;
    /* Theme primary blue */
}

.faq-cta-box-v2 {
    background: #554096;
    padding: 40px;
    border-radius: 20px;
    color: #ffffff;
    max-width: 320px;
}

.faq-cta-box-v2 h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.btn-get-touch {
    display: inline-block;
    background: #ffffff;
    color: #554096;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: 0.3s;
}

.btn-get-touch:hover {
    border: 1px solid #fff;
    color: #fff;
    background: #554096;
    transform: translateY(-3px);
}

/* Accordion Adjustments */
.accordion-v2 {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item-v2 {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header-v2 {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header-v2 h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #ffffff;
}

.accordion-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.accordion-content-v2 {
    max-height: 0;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    padding: 0 30px;
}

.accordion-content-v2 p {
    padding-bottom: 25px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Active State */
.accordion-item-v2.active {
    background: #554096;
    border-color: #554096;
}

.accordion-item-v2.active .accordion-header-v2 h3 {
    color: #ffffff;
}

.accordion-item-v2.active .accordion-icon {
    background: #ffffff;
    color: #554096;
}

.accordion-item-v2.active .accordion-content-v2 {
    max-height: 300px;
}

.accordion-item-v2.active .accordion-content-v2 p {
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive FAQ */
@media (max-width: 991px) {
    .faq-row-v2 {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .faq-left-col {
        text-align: center;
    }

    .faq-cta-box-v2 {
        margin: 0 auto;
    }

    .faq-title {
        font-size: 40px;
    }
}

/* --- ABOUT PREVIEW SECTION V2 (CONSOLIDATED) --- */
.about-preview-section-v2 {
    padding: 120px 0 0px;
    background: #ffffff;
    overflow: hidden;
}

.about-preview-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.about-preview-img-v2 {
    position: relative;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.about-preview-img-v2:hover {
    transform: scale(1.05);
}


.about-preview-img-v2 img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

/* Content Styles */
.about-preview-content-v2 h2 {
    margin: 0px 0px;
    font-size: 45px;
    font-weight: 800;
    color: #001533;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-preview-content-v2 h2 span {
    color: var(--primary-blue);
}

.about-preview-content-v2 p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

.benefits-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 50px;
}

.benefits-list-v2 li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
    color: #001533;
    margin-bottom: 18px;
    font-size: 16px;
}

.benefits-list-v2 li i {
    color: #10b981;
    font-size: 16px;
}

/* Theme Pattern Button */
.btn-read-more-v2.theme-pattern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary-blue);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* box-shadow: 0 10px 30px rgba(85, 64, 150, 0.3); */
}

.btn-read-more-v2.theme-pattern:hover {
    background: #44327a;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(85, 64, 150, 0.4);
}

.btn-read-more-v2.theme-pattern i {
    transition: transform 0.3s ease;
}

.btn-read-more-v2.theme-pattern:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1199px) {
    .about-preview-grid-v2 {
        gap: 50px;
    }

    .about-preview-content-v2 h2 {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .about-preview-grid-v2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-preview-img-v2 {
        margin-bottom: 40px;
        order: 2;
    }

    .about-preview-content-v2 {
        order: 1;
    }

    .benefits-list-v2 li {
        justify-content: center;
    }
}



/* --- RECENT PROJECTS SECTION V2 --- */
.projects-section-v2 {
    padding: 100px 0;
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.projects-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.project-card-v2 {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.project-card-v2:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(85, 64, 150, 0.15);
}

.project-img-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card-v2:hover .project-img-box img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(85, 64, 150, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.project-card-v2:hover .project-overlay {
    opacity: 1;
}

.view-project-btn {
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #554096;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.project-card-v2:hover .view-project-btn {
    transform: scale(1);
}

.project-info-v2 {
    padding: 30px;
}

.project-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(85, 64, 150, 0.1);
    color: #554096;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.project-info-v2 h3 {
    font-size: 24px;
    color: #001533;
    margin-bottom: 12px;
    font-weight: 700;
}

.project-info-v2 p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Projects */
@media (max-width: 768px) {
    .projects-grid-v2 {
        grid-template-columns: 1fr;
    }

    .project-img-box {
        height: 250px;
    }
}


.custom-contact-form{
background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
/* .custom-contact-form{
background:#f5f5f5;
padding:40px;
border-radius:20px;
max-width:900px;
margin:auto;
box-sizing:border-box;
} */

.form-row{
display:flex;
gap:20px;
/* margin-bottom:10px; */
}

.form-col{
flex:1;
display:flex;
flex-direction:column;
min-width:0;
}
.form-col p{
	margin:10px 0px;
}
.form-col.full{
flex:0 0 100%;
}

.custom-contact-form label{
font-weight:600;
margin-bottom:8px;
color:#1f2933;
}

.custom-contact-form input,
.custom-contact-form select,
.custom-contact-form textarea{
width:100%;
	margin-top: 10px;
padding:14px;
border-radius:10px;
border:1px solid #ddd;
font-size:15px;
box-sizing:border-box;
}

.custom-contact-form textarea{
height:150px;
resize:none;
}

.custom-contact-form input[type="submit"]{
background:#5b4aa5;
color:white;
padding:14px 30px;
border:none;
border-radius:5px;
font-weight:600;
cursor:pointer;
}

.custom-contact-form input[type="submit"]:hover{
background:#46368a;
}
@media (max-width:768px){

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

}