/* ============================================================
   MAIN.CSS — Global Stylesheet
   Font: Roboto Slab (Google Fonts)
   All internal/inline styles extracted from PHP views
   ============================================================ */

/* ---- FONT IMPORT ---- */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200;300;400;500&display=swap');

/* ---- GLOBAL FONT OVERRIDE ---- */
*,
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
a,
li,
label,
blockquote,
button,
input,
textarea,
select,
div,
span,
td,
th {
    font-family: 'Roboto Slab', serif;
}

/* p tag forced to Roboto Slab */
p {
	    font-family: 'Roboto Slab'
    /*font-family: 'Roboto Slab', serif !important;*/
    font-weight: 300 !important;
    font-size: 18px;
}


/* ============================================================
   HEADER STYLES (from layouts/header.php)
   ============================================================ */

/* ---- GLOBAL RESET for header ---- */
* {
    box-sizing: border-box;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Push page content below the fixed header */
body .page {
    padding-top: 0 !important;
}

/* ---- TOP BAR ---- */
.avr-topbar {
    background: #1471aa;
    color: #c8d4e8;
    font-size: 12.5px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 40px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    border-bottom: 2px solid rgba(20, 113, 170, 0.4);
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.avr-topbar.topbar-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.avr-topbar .tb-left,
.avr-topbar .tb-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.avr-topbar a {
    color: #c8d4e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.avr-topbar a:hover {
    color: #fff;
}

.avr-topbar i {
    color: #1471aa;
    font-size: 12px;
}

.avr-topbar .tb-socials {
    display: flex;
    gap: 6px;
    margin-left: 10px;
}

.avr-topbar .tb-socials a {
    background: #fff;
    color: #1471aa;
    width: 24px;
    height: 24px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: background 0.2s, color 0.2s;
    gap: 0;
}

.avr-topbar .tb-socials a i {
    color: inherit;
}

.avr-topbar .tb-socials a:hover {
    background: #1471aa;
    color: #fff;
}

/* ---- MAIN NAVBAR ---- */
.avr-navbar {
	    background: #ffffff;
    width: 92%;
    margin-top: 17px;
    background: #ffffff;
    
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9998;
    border-radius: 0;
    transition: all 0.4s ease;
}

.avr-navbar.nav-scrolled {
    top: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* Logo */
.avr-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.avr-logo img {
    max-height: 80px;
    max-width: 250px;
    object-fit: contain;
    width: auto;
    height: auto;
}

/* Nav Links */
.avr-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0;
    height: 100%;
}

.avr-nav>li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.avr-nav>li>a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    padding: 8px 18px !important;
    font-family: 'Roboto Slab', serif !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    color: #111 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: color 0.2s !important;
    position: relative !important;
}

.avr-nav>li>a:hover,
.avr-nav>li.active>a {
    color: #1471aa;
}

/* Animated underline */
.avr-nav>li>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #1471aa;
    border-radius: 2px 2px 0 0;
    transition: width 0.25s ease, left 0.25s ease;
}

.avr-nav>li>a:hover::after,
.avr-nav>li.active>a::after {
    width: 100%;
    left: 0;
}

.avr-nav>li>a .fa-chevron-down {
    font-size: 9px;
    color: #151515;
    transition: transform 0.2s;
}

.avr-nav>li:hover>a .fa-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown */
.avr-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    min-width: 230px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.22s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 10000;
}

.avr-dropdown.mega {
    min-width: 580px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: column;
    grid-template-rows: repeat(5, auto);
    padding: 15px 10px;
    gap: 0;
    text-align: left;
}

.avr-dropdown.mega::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 15px;
    bottom: 15px;
    width: 1px;
    background: #e8edf2;
    transform: translateX(-50%);
}

.avr-dropdown.mega li {
    width: 100%;
}


.avr-nav>li:hover>.avr-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.avr-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    margin: 2px 8px;
    transition: background 0.15s, color 0.15s;
    position: relative;
    text-align: left;
}

.avr-dropdown li a:hover {
    background: #f0f4f8;
    color: #1471aa;
    padding-left: 23px;
}

/* Mobile Toggle */
.avr-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.avr-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: all 0.3s;
}

.avr-mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.avr-mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.avr-mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .avr-topbar {
        padding: 8px 20px;
        font-size: 11.5px;
    }

    .avr-navbar {
        padding: 0 20px;
    }

    .avr-nav>li>a {
        padding: 28px 10px;
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .avr-navbar {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        top: 0 !important;
        left: 0;
        transform: none;
        position: fixed !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
}

@media (max-width: 768px) {
    .avr-topbar .tb-left .tb-address {
        display: none;
    }

    .avr-mobile-toggle {
        display: flex;
    }

    .avr-nav {
        display: none !important;
    }
}

/* Bento Mobile Menu */
.avr-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #f4f6f9;
    z-index: 100000;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    overflow: hidden;
}

.avr-mobile-menu.open {
    transform: translateY(0);
    opacity: 1;
}

.avr-mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
}

.avr-mobile-logo img {
    height: 40px;
    object-fit: contain;
}

.avr-mobile-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #1471aa;
    cursor: pointer;
}

.avr-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 25px;
    flex-grow: 1;
    overflow-y: auto;
    padding-bottom: 30px;
}

.avr-bento-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #1471aa;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.avr-bento-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
}

.avr-bento-card i:not(.arrow) {
    font-size: 32px;
    color: #1471aa;
    margin-bottom: 12px;
    font-style: normal !important;
}

.avr-bento-card.full-width i:not(.arrow) {
    margin-bottom: 0;
    font-size: 24px;
}

.avr-bento-card span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.avr-bento-card .arrow {
    font-size: 10px;
    color: #1471aa;
}

/* Drilldown Submenu Panels */
.avr-mobile-submenu-panel {
    position: absolute;
    top: 70px;
    left: 100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #f4f6f9;
    transition: left 0.3s ease;
    z-index: 10;
    overflow-y: auto;
    padding-bottom: 50px;
}

.avr-mobile-submenu-panel.active {
    left: 0;
}

.avr-submenu-header-wrap {
    padding: 20px 25px 0;
}

.avr-submenu-back {
    background: none;
    border: none;
    color: #1471aa;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 5px 0 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.avr-submenu-title {
    font-size: 24px;
    color: #1471aa;
    margin: 0;
    font-weight: 800;
}

.avr-mobile-footer {
    padding: 20px;
    text-align: center;
    margin-top: auto;
    margin-bottom: 0;
    background: #f4f6f9;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.02);
}

.avr-mobile-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avr-mobile-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #1471aa;
    color: #1471aa;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 15px;
}

.avr-mobile-footer p {
    font-size: 12px;
    color: #151515;
    margin: 0;
    line-height: 1.6;
}

.avr-mobile-footer p span {
    color: #1471aa;
    font-weight: 600;
}

.avr-nav>li>a.btn-dl-brochure {
    color: #fff !important;
    padding: 8px 20px !important;
    border-radius: 4px;
    
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    isolation: isolate;
    background-color: transparent !important;
    text-decoration: none;
}

.btn-dl-brochure::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #1471aa;
    z-index: -2;
    border-radius: 4px;
}

.btn-dl-brochure::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 0;
    padding-bottom: 80%;
    background-color: #151515;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.btn-dl-brochure:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.btn-dl-brochure:hover {
    color: #ffffff !important;
}


/* ============================================================
   FOOTER STYLES (from layouts/footer.php)
   ============================================================ */

/* Fixed floating icons */
.phone {
    position: fixed;
    bottom: 70px;
    z-index: 9999;
    left: 3px;
}

.whatsapp {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    left: 3px;
}

.phone img,
.whatsapp img {
    width: 40px;
}

.footer-variant-2 .finarc-dropdown-link,
.footer-variant-2 .finarc-dropdown-link:focus,
.footer-variant-2 .finarc-dropdown-link:active,
.footer-variant-2 .footer-contacts a.finarc-dropdown-link {
    color: #ffffff !important;
}

.footer-variant-2 .finarc-dropdown-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.14) !important;
}

.footer-variant-2 {
    background-image: linear-gradient(135deg, rgba(8, 22, 40, 0.95) 0%, rgba(8, 22, 40, 0.90) 58%, rgba(8, 22, 40, 0.85) 100%), url('../../frontend/images/footer-bg-new.png') !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.footer-variant-2 .footer-variant-2-content {
    background: transparent !important;
}

.footer-variant-2-bottom-panel {
    background: #06111e !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.footer-variant-2 .footer-brand a img.logo-footer {
    border-radius: 10px !important;
    background: #ffffff !important;
    padding: 15px 20px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
    max-width: 240px !important;
    width: 100% !important;
    height: auto !important;
}

.footer-credit-line {
   /* display: flex;*/
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-credit-line span,
.footer-credit-line a {
    color: #ffffff;
    font-weight: 400;
}

.footer-credit-line a {
    font-weight: 700;
    text-decoration: none;
}

.footer-credit-line__divider {
    opacity: 0.65;
}

.tech-marquee-wrapper {
    background-color: #06111e;
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-marquee {
    display: inline-flex;
    animation: marquee 40s linear infinite;
}

.tech-marquee-item {
    color: #1471aa;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 40px;
    display: inline-block;
    position: relative;
}

.tech-marquee-item::after {
    content: '•';
    position: absolute;
    right: 0;
    color: rgba(255, 255, 255, 0.2);
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Footer inline style equivalents */
.footer-logo-img {
    max-height: 80px;
}

.footer-desc {
    margin-top: 20px;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.7;
    font-weight: 300;
    text-transform: none;
}

.footer-social-list-2 {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.footer-social-list-2 a {
    color: #fff;
    font-size: 18px;
}

.footer-h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
    text-transform: uppercase;
}

.footer-services-grid {
    font-size: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 15px;
    row-gap: 12px;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-services-grid .finarc-dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0 !important;
}

.footer-services-grid .fa-angle-double-right {
    color: #1471aa;
    margin-top: 4px;
}

.footer-contacts-list {
    font-size: 16px;
    list-style: none;
    padding-left: 0;
}

.footer-contacts-list li {
    margin-bottom: 15px;
}

.footer-contacts-list .icon {
    color: #1471aa;
    font-size: 18px;
}

.footer-contacts-list a {
    color: #ffffff;
}

.footer-bottom-panel {
    background-color: #06111e;
  padding: 9px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-container {
    padding-left: 5%;
    padding-right: 5%;
}

.footer-section {
    padding-top: 25px;
}


/* ============================================================
   HOME PAGE STYLES (from home.php)
   ============================================================ */

/* Working Process Style2 */
.working-process-style2-area {
    position: relative;
    display: block;
    background-attachment: fixed;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 110px 0 110px;
    z-index: 1;
}

.single-working-process-style2 {
    position: relative;
    display: block;
    width: 95% !important;
    margin: 0 auto;
    background: #ffffff;
    padding: 35px 30px 52px;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.5);
}

.single-working-process-style2 .top-box {
    position: relative;
    display: block;
    padding: 30px 40px 20px;
    z-index: 2;
}

.single-working-process-style2 .top-box:before {
    position: absolute;
    top: 11px;
    right: 0;
    width: 370px;
    height: 113px;
    background: url(../https://aayojanevents.co.in/frontend/images/pattern/working-process-item-bg.png);
    content: "";
    z-index: -1;
    opacity: 1;
    transition: all 300ms ease 100ms;
}

.our-working-process-1::after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: -20px;
    left: -20px;
    border: 2px solid #F38633;
    z-index: -1;
}

.single-working-process-style2:hover .top-box:before {
    opacity: 0;
    transition: all 900ms ease 500ms;
}

.single-working-process-style2 .top-box:after {
    position: absolute;
    top: 0px;
    left: 0;
    width: 370px;
    height: 99px;
    background: url(https://aayojanevents.co.in/frontend/images/pattern/working-process-item-hover-bg.png);
    content: "";
    z-index: -1;
    transition: all 900ms ease 100ms;
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(-90deg) translateZ(-45px);
    opacity: 0;
}

.single-working-process-style2:hover .top-box:after {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateZ(0px);
    transition: all 900ms ease 300ms;
}

.single-working-process-style2 .top-box .count {
    position: relative;
    display: block;
    float: left;
}

.single-working-process-style2 .top-box .count h1 {
    color: #e37d0d;
    font-size: 60px;
    line-height: 46px;
    font-weight: 500;
    transition: all 700ms ease 500ms;
}

.single-working-process-style2:hover .top-box .count h1 {
    color: #ffffff;
}

.single-working-process-style2 .top-box .icon {
    position: relative;
    display: block;
    float: right;
}

.single-working-process-style2 .top-box .icon span:before {
    color: #d0d0d0;
    font-size: 70px;
    line-height: 70px;
}

.single-working-process-style2 .inner {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}

.single-working-process-style2 .inner h3 {
    color: #1471aa;
    font-weight: 900;
    margin: 0 0 18px;
}

.single-working-process-style2 .inner p {
    margin: 0;
}

.working-process-carousel.owl-carousel .owl-nav {
    position: absolute;
    right: 0;
    top: -115px;
    margin: 0;
    display: block;
}

.working-process-carousel.owl-carousel .owl-nav [class*="owl-"] {
    position: relative;
    display: inline-block;
    background: transparent;
    width: 55px;
    height: 55px;
    border: 1px solid #dddddd;
    line-height: 54px;
    margin: 0;
    padding: 0;
    transition: all 700ms ease 100ms;
    border-radius: 50%;
}

.working-process-carousel.owl-carousel .owl-nav [class*="owl-"] i:before {
    color: #ababab;
    font-size: 20px;
    font-weight: 400;
}

.working-process-carousel.owl-carousel .owl-nav .owl-next {
    margin-left: 10px;
}

.working-process-carousel.owl-carousel .owl-nav [class*="owl-"]:hover {
    border-color: #e37d0d;
}

/* Testimonial Style2 */
.testimonial-style2-area {
    position: relative;
    display: block;
    padding: 110px 0 108px;
}

.testimonial-style2-area .sec-title {
    padding-bottom: 40px;
}

.single-testimonial-style2 {
    position: relative;
    display: block;
    border: 1px solid transparent;
    transition: all 700ms ease 300ms;
}

.single-testimonial-style2 .inner-content {
    position: relative;
    display: block;
    overflow: hidden;
}

.single-testimonial-style2 .static-content {
    position: relative;
    display: block;
    padding: 55px 40px 62px;
    transform: translateY(0%);
    transition: all 700ms ease 100ms;
}

.single-testimonial-style2:hover .static-content {
    opacity: 0;
    transform: translateY(-10%);
    transition: all 900ms ease 100ms;
}

.single-testimonial-style2 .static-content .quote-icon {
    position: relative;
    display: block;
    padding-bottom: 11px;
}

.single-testimonial-style2 .static-content .quote-icon span:before {
    color: #e37d0d;
    font-size: 63px;
    line-height: 63px;
}

.single-testimonial-style2 .text-box p {
    margin: 0;
}

.single-testimonial-style2 .static-content .client-info {
    position: relative;
    display: block;
    padding-top: 32px;
}

.single-testimonial-style2 .client-info .review-box ul li {
    float: none;
    margin: 0 1px;
}

.single-testimonial-style2 .client-info h3 {
    color: #27282c;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 0;
}

.single-testimonial-style2 .client-info {
    position: relative;
    display: block;
}

.single-testimonial-style2 .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #ffffff;
    display: block;
    padding: 50px 40px 0;
    opacity: 0;
    transform: translateY(-10%);
    transition: all 700ms ease 100ms;
}

.single-testimonial-style2:hover .overlay-content {
    opacity: 1;
    transform: translateY(0%);
    transition: all 900ms ease 100ms;
}

.single-testimonial-style2 .overlay-content .img-box {
    position: relative;
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.single-testimonial-style2 .overlay-content .img-box img {
    border-radius: 50%;
}

.single-testimonial-style2 .overlay-content .text-box {
    position: relative;
    display: block;
    padding: 10px 0 10px;
    margin: 14px 0 0;
    z-index: 2;
}

.single-testimonial-style2 .overlay-content .text-box .quote-icon {
    position: absolute;
    top: -18px;
    left: 0;
    right: 0;
    z-index: -1;
}

.single-testimonial-style2 .overlay-content .text-box .quote-icon span:before {
    color: #f6f6f6;
    font-size: 128px;
    line-height: 128px;
}

.single-testimonial-style2 .overlay-content .client-info {
    position: relative;
    display: block;
    padding-top: 22px;
}

/* Tiles Section */
.tiles-section {
    position: relative;
    margin-top: 100px;
}

.tiles-section .blue-box {
    background-color: #1471aa;
    color: white;
    border-radius: 65px 65px 65px 65px;
    padding: 70px 60px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tiles-section h2 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
}

.tiles-section hr {
    width: 60px;
    height: 3px;
    background-color: #1471aa;
    border: none;
    margin-bottom: 25px;
}

.tiles-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 15px;
    text-align: left;
}

.tiles-section .image-wrapper {
    position: absolute;
    top: -60px;
    left: 0;
    width: 45%;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.tiles-section .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.tiles-section .blue-box {
    margin-left: 45%;
}

@media (max-width: 991px) {
    .tiles-section {
        margin-top: 40px;
    }

    .tiles-section .image-wrapper {
        position: relative;
        width: 100%;
        top: 0;
        margin-bottom: 25px;
    }

    .tiles-section .blue-box {
        margin-left: 0;
        border-radius: 0;
        padding: 40px 25px;
    }
}

/* Carousel slider buttons */
.x {
    text-decoration: none;
}

.buttons button#next {
    position: absolute;
    top: 40%;
    right: 15px;
    color: white;
    z-index: 9;
}

.buttons button#prev {
    position: absolute;
    top: 40%;
    left: 15px;
    color: white;
}

.buttons button {
    border: 2px solid #fff;
    background-color: transparent;
    color: rgb(43, 42, 42);
    cursor: pointer;
    padding: 13px 15px;
    border-radius: 50%;
    outline: none;
}

.buttons button:hover {
    background-color: #fff;
    color: #fff;
}

@media (max-width: 500px) {
    .slide.current .content {
        transform: translateY(-300px);
        font-size: 15px;
        margin-top: 400px;
    }
}

.services-item {
    border: 1px solid #a4a4a4;
}

.main_heading {
    color: #151515;
    margin-top: -70px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 0;
}

.text-tranmms {
    margin-top: 50px;
    color: #fff;
    padding-bottom: 0;
}

.block2 .border_right {
    right: 58px;
    background-color: #e06f1b;
}

.block2 .border_left {
    background-color: #e06f1b;
}

.border_left {
    background-color: #d7d7d7;
    display: inherit;
    height: 1px;
    position: absolute;
    bottom: 69px;
    width: 34%;
}

.border_right {
    background-color: #d7d7d7;
    display: block;
    height: 1px;
    position: absolute;
    right: 75px;
    bottom: 69px;
    width: 34%;
}

.carddx {
    background: #ffffff;
    padding: 5px;
    text-align: center;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 16px 32px rgba(82, 82, 82, 0.1);
    border: 1px solid #1471aa52;
}

.staff-member {
    position: relative;
    display: block;
    padding-bottom: 13px;
    margin-bottom: 10px;
}

.staff-member .overlay {
    background: linear-gradient(85deg, rgba(26, 44, 121, 0.8) 30%, rgba(232, 5, 102, 0.9) 100%) !important;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    opacity: 0;
    transition: all 0.4s;
    border-radius: 13px;
}

.gray-light-bg {
    background: #ffffff;
}

.outlineportfolio-btn {
    color: #1471aa;
    display: inline-block;
    border: 1px dashed #fb196b;
    font-weight: 600;
    padding: 2px 17px;
    border-radius: 20px;
}

.stylex {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    box-shadow: 0 6px 10px rgb(82 82 82 / 33%);
    padding: 40px;
    border-radius: 5px;
}

.icon-layout {
    background: #e1f9fd;
    border-radius: 10%;
    border: 1px solid #bcb7b7;
    padding: 20px;
    margin-top: 15px;
}

select {
    height: 57px;
    width: 100%;
    border: 1px solid #aaa;
    padding: 15px 17px 15px 17px;
}

#comment {
    width: 100%;
    height: 100px;
}

#submit {
    background-color: #37af65;
    color: #fff;
    border-radius: 3px;
    border-style: none;
    height: 30px;
    width: 100%;
}

/* Hero Image/Video */
.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-image video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-wrapper:before {
    display: none !important;
}

/* Service card */
.service-card {
    border: 1px solid #eaeaea !important;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
    border-color: #1471aa !important;
}

.btn-get-started {
    background-color: #1471aa;
    color: #ffffff !important;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 0;
    padding: 12px 30px !important;
    border: none;
    font-size: 16px !important;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-get-started:hover {
    color: #ffffff !important;
}

/* Global Button Styles with Center-Out Animation */
.btn,
.promo-form button,
.btn-get-started {
    font-size: 24px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: transparent !important;
    color: #fff !important;
    border: none;
}

.btn::before,
.promo-form button::before,
.btn-get-started::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #1471aa;
    z-index: -2;
}

.btn::after,
.promo-form button::after,
.btn-get-started::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 0;
    padding-bottom: 150%;
    background-color: #151515;
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.4s ease-out;
    z-index: -1;
}

.btn:hover::after,
.promo-form button:hover::after,
.btn-get-started:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Metrics */
.metric-number {
    color: #fff;
    font-weight: 800;
    font-size: 64px;
    display: inline-block;
    margin: 0;
}

.metric-label {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin-top: 5px;
    text-align: center;
}

@media (max-width: 767px) {
    .metric-number {
        font-size: 40px;
    }

    .metric-label {
        font-size: 16px;
        margin-top: 0;
    }

    .metric-box {
        margin-bottom: 25px;
    }

    /* Slider height fix for mobile - removes the large gap */
    .hm-style-1 {
        height: 70vh;
        min-height: 400px;
    }

    /* Reduce the hero content top margin on mobile */
    .hm-style-4 {
        margin-top: 60px;
    }

    /* Reduce the hero description font size on mobile */
    .hm-style-8 {
        font-size: 14px;
        margin-bottom: 25px;
    }
}


/* Services Marquee */
.services-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.services-track {
    display: inline-flex;
    animation: marquee-services 40s linear infinite;
}

.services-track:hover {
    animation-play-state: paused;
}

.services-card-wrapper {
    width: 400px;
    margin: 0 15px;
    white-space: normal;
    flex-shrink: 0;
}

.service-card p {
    text-align: center !important;
}

@keyframes marquee-services {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Industry Cards */
.industry-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
    background-color: #ffffff !important;
}

.industry-card .icon-box {
    transition: all 0.3s ease;
}

.industry-card:hover .icon-box {
    transform: scale(1.1);
}

/* Process Cards */
.horizontal-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-overflow-scrolling: touch;
}

.horizontal-slider::-webkit-scrollbar {
    height: 6px;
}

.horizontal-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.horizontal-slider::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.horizontal-slider::-webkit-scrollbar-thumb:hover {
    background: #1471aa;
}

.slider-item {
    flex: 0 0 85%;
    scroll-snap-align: start;
    max-width: 400px;
}

@media (min-width: 768px) {
    .slider-item {
        flex: 0 0 45%;
    }
}

@media (min-width: 992px) {
    .slider-item {
        flex: 0 0 32%;
    }
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(20, 113, 170, 0.15) !important;
}

.process-card:hover .icon-wrap {
    background: #1471aa !important;
    color: #fff !important;
}

.process-card:hover .icon-wrap i {
    color: #fff !important;
}

i.fa {
    font-style: normal !important;
}

/* Client Marquee */
.client-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.client-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.client-track:hover {
    animation-play-state: paused;
}

.client-card-wrapper {
    display: inline-block;
    width: 350px;
    margin: 0 15px;
    vertical-align: top;
    white-space: normal;
}

.client-card-fixed {
    /*height: 220px;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Testimonial Marquee */
.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.testimonial-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card-wrapper {
    display: inline-block;
    width: 400px;
    margin: 0 15px;
    vertical-align: top;
    white-space: normal;
}

.testimonial-card-fixed {
    height: auto;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Promo Modal */
.promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.promo-overlay.show {
    display: flex;
}

.promo-modal {
    width: min(900px, 92vw);
    background: #fff;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.promo-left {
    background: #1471aa;
    position: relative;
    min-height: 260px;
}

.promo-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.promo-right {
    padding: 28px 26px;
}

.promo-right h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
}

.promo-right p {
    margin: 0 0 16px;
    color: #151515;
}

.promo-form .row {
    display: flex;
    gap: 10px;
}

.promo-form input,
.promo-form button,
.promo-form textarea,
.promo-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e1e1e1;
    font-size: 15px;
}

.promo-form input:focus,
.promo-form textarea:focus,
.promo-form select:focus {
    outline: none;
    border-color: #1471aa;
    box-shadow: 0 0 0 3px rgba(20, 113, 170, .12);
}

.promo-form button {
    border: 0;
    cursor: pointer;
    font-weight: 600;
    color: #fff;
    background: #1471aa;
    transition: all .2s ease-in-out;
    border-radius: 5px;
}

.promo-form button:hover {
    background: #0f5b8a;
}

.promo-form button:active {
    transform: translateY(1px);
}

.promo-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border: 0;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 760px) {
    .promo-modal {
        grid-template-columns: 1fr;
    }

    .promo-left {
        display: none;
    }
}

body.modal-open {
    overflow: hidden;
}


/* ============================================================
   ABOUT US PAGE STYLES (from about-us.php)
   ============================================================ */

#cards .card {
    border-radius: 20px;
    min-height: 100%;
}

.card-body {
    padding: 15px;
}

#cards .heading-border {
    position: absolute;
    width: 100%;
    top: 60%;
}

#cards .card .user-picture img {
    position: absolute;
    top: -20%;
    right: 10%;
    background: #f8f9fa !important;
    padding: 10px;
}

#cards .card .user-content .user-name {
    margin-right: 150px;
}


/* ============================================================
   CONTACT PAGE STYLES (from contact-us.php)
   ============================================================ */

.action {
    background: #054d53;
    border-color: #151515;
}

.form-input::placeholder {
    color: #151515;
    opacity: 1;
}

/* Contact card boxes */
.box-contacts-card {
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.box-contacts-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
}

.box-contacts-card a {
    font-size: 16px;
    color: #151515;
    font-weight: bold;
}

.contact-form-wrap {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e7f0;
    height: 100%;
}


/* ============================================================
   PROJECT / CLIENTS PAGE STYLES (from project.php)
   ============================================================ */

.clients-section {
    padding: 80px 0;
    text-align: center;
}

.clients-subtitle {
    color: #f26522;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.clients-title {
    color: #1471aa;
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.client-card {
    background: #fff;
    border: 1px solid #dbe4ef;
   
    border-radius: 0;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*height: 260px;*/
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(20, 113, 170, 0.1);
}

.client-card img {
    /*max-height: 130px;
    max-width: 240px;
    margin: 0 auto 30px auto;*/
    object-fit: contain;
}

.client-card hr {
    border-top: 1px solid #eaeaea;
    margin: 0 15px 20px 15px;
}

.client-card-text {
    font-size: 16px;
    font-weight: 800;
    color: #333;
    text-transform: uppercase;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

.client-card-text .client-title {
    color: #1471aa;
}

.breadcrumbs-custom-inset {
    margin-bottom: 0;
}

/* Fix inner page banner gap - push content cleanly below fixed floating navbar */
.breadcrumbs-custom {
    padding-top: 155px !important;
    padding-bottom: 50px !important;
}

@media (max-width: 991px) {
    .breadcrumbs-custom {
        padding-top: 140px !important;
        padding-bottom: 40px !important;
    }
}

@media (max-width: 767px) {
    .breadcrumbs-custom {
        padding-top: 130px !important;
        padding-bottom: 35px !important;
    }
}



/* ============================================================
   COMING SOON PAGE STYLES (from coming-soon.php)
   ============================================================ */

.coming-soon-section {
    padding: 100px 0;
    text-align: center;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
}

.simple-container {
    background: #ffffff;
    border-radius: 12px;
    padding: 60px 40px;
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.icon-wrap i {
    font-size: 35px;
    color: #1471aa;
}

.coming-soon-title {
    color: #111111;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.coming-soon-text {
    color: #151515;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.notify-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.notify-input {
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #dce4ec;
    font-size: 15px;
    width: 60%;
    outline: none;
}

.notify-input:focus {
    border-color: #1471aa;
}

.notify-btn {
    background: #1471aa;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notify-btn:hover {
    background: #105986;
}


/* ============================================================
   WHY CHOOSE US PAGE STYLES (from why-choose-us.php)
   ============================================================ */

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(20, 113, 170, 0.15) !important;
}

.feature-card:hover .icon-wrap {
    background: #1471aa !important;
}

.feature-card:hover .icon-wrap i {
    color: #ffffff !important;
}


/* Home Page Extracted Inline Styles */
.hm-style-1 {
    height: 85vh;
    min-height: 650px;
    position: relative;
}

.hm-style-2 {
    position: absolute;
    inset: 0;
    
    z-index: 2;
}

.hm-style-3 {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    position: absolute;
}

.hm-style-4 {
    width: 100%;
    text-align: center !important;
    margin-top: 130px;
    padding: 0;
}

.hm-style-5 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px !important;
    padding: 0;
    line-height: 1.5;
}

.hm-style-6 {
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 20px !important;
}

.hm-style-7 {
    color: #1471aa !important;
}

.hm-style-8 {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    text-align: center;
    line-height: 1.6;
}

.hm-style-9 {
    margin: 0;
    padding: 0;
}

.hm-style-10 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hm-style-11 {
    height: 100%;
}

.hm-style-12 {
    font-weight: 700;
    color: #fff;
}

.hm-style-13 {
    color: #1471aa;
}

.hm-style-14 {
    width: 5%;
    z-index: 100;
}

.hm-style-15 {
    width: 40px;
    height: 40px;
}

.hm-style-16 {
    background-color: #1471aa;
}

.hm-style-17 {
    min-height: 120px;
}

.hm-style-18 {
    background-color: #f8f9fa;
}

.hm-style-19 {
    font-weight: 700;
    color: #151515;
}

.hm-style-20 {
    color: #151515;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hm-style-21 {
    border-radius: 10px;
}

.hm-style-21 .card-title {
   font-size: 23px;
    margin-bottom: 13px;
    color: #151515;
}

.hm-style-22 {
    font-style: normal;
    font-size: 50px;
    color: #1471aa;
    font-style: normal;
}

.hm-style-23 {
    color: #151515;
    font-size: 34px;
}

.hm-style-24 {
    background-color: #ffffff;
}

.hm-style-25 {
    position: relative;
    display: inline-block;
    z-index: 1;
    margin-bottom: 20px;
}

.hm-style-26 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #1471aa;
    border-radius: 15px;
    z-index: 0;
    transform: translate(15px, 15px);
}

.hm-style-27 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(59, 113, 202, 0.1) 0%, rgba(59, 113, 202, 0.05) 100%);
    border-radius: 15px;
    z-index: -1;
    transform: translate(-15px, 15px);
}

.hm-style-28 {
    text-align: left;
}

.hm-style-29 {
    color: #151515;
    font-size: 36px;
    line-height: 1.3;
}

.hm-style-30 {
    color: #151515;
    text-align: left;
}

.hm-style-31 {
    color: #151515;
    text-align: left;
}

.hm-style-32 {
    border-radius: 15px;
    background-color: #fff;
    border: 1px solid #e1eefc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hm-style-33 {
    width: 90px;
    height: 90px;
    background: rgba(20, 113, 170, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hm-style-34 {
    font-style: normal;
    font-size: 42px;
    color: #1471aa;
}

.hm-style-35 {
    color: #111;
}

.hm-style-36 {
    line-height: 1.7;
    font-size: 15px;
    font-weight: 400;
    color: #151515;
    text-align: center;
}

.hm-style-37 {
    color: #a4baf3;
}

.hm-style-38 {
    color: #ffffff;
}

.hm-style-39 {
    background-color: #f2f5fb;
    border-radius: 2px;
    border: 1px solid #e1e7f0;
    text-align: left;
}

.hm-style-40 {
    width: 60px;
    height: 60px;
    background-color: #1471aa;
    border-radius: 50%;
    margin-right: 15px;
}

.hm-style-41 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    font-style: normal;
}

.hm-style-42 {
    color: #1471aa;
    font-size: 18px;
    margin: 0;
}

.hm-style-43 {
    color: #151515;
    font-size: 13px;
}

.hm-style-44 {
    background-color: #1471aa;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(20, 113, 170, 0.2);
}

.hm-style-45 {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.hm-style-46 {
    position: absolute;
    bottom: -80px;
    left: -20px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.hm-style-47 {
    z-index: 1;
}

.hm-style-48 {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    letter-spacing: 1px;
}

.hm-style-49 {
    color: #fff;
    font-size: 40px;
    line-height: 1.2;
}

.hm-style-50 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 30px;
}

.hm-style-51 {
    background: #fff;
    color: #1471aa;
    border-radius: 30px;
    padding: 12px 35px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hm-style-52 {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.hm-style-53 {
    position: absolute;
    right: -10px;
    bottom: -20px;
    font-size: 120px;
    font-weight: 900;
    color: rgba(20, 113, 170, 0.05);
    line-height: 1;
    z-index: 0;
}

.hm-style-54 {
    width: 60px;
    height: 60px;
    background: rgba(20, 113, 170, 0.1);
    color: #1471aa;
    border-radius: 12px;
    font-size: 24px;
    transition: all 0.3s ease;
}

.hm-style-55 {
    color: #111;
}

.hm-style-56 {
    color: #151515;
    font-size: 15px;
    line-height: 1.6;
}

.hm-style-57 {
    /*border: 1px solid #dbe4ef;
    border-bottom: 4px solid #1471aa;*/
    border-radius: 0;
    
    transition: all 0.3s ease;
}

.hm-style-58 {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.hm-style-59 {
    height: 100px;
    background-color: #edf2f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 0 15px;
}

.hm-style-60 {
    color: #1471aa;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.hm-style-61 {
    width: 90%;
    border-top: 1px solid #e1e8f0;
    margin: 0 auto 12px auto;
}

.hm-style-62 {
    color: #111;
    font-size: 16px;
    font-weight: 900 !important;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.hm-style-63 {
    border-radius: 10px;
    border: 1px solid #eaeaea;
}

.hm-style-64 {
    text-align: left;
    padding: 0;
}

.hm-style-65 {
    font-style: normal;
    font-size: 30px;
    color: #1471aa;
}

.hm-style-66 {
    color: #151515;
    font-style: italic;
    font-size: 16px;
}

.hm-style-67 {
    width: 50px;
    height: 50px;
    background-color: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-style-68 {
    font-style: normal;
    color: #fff;
    font-size: 24px;
}

.hm-style-69 {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hm-style-70 {
    width: 100%;
}

.hm-style-71 {
    margin-top: 10px;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

.hm-style-72 {
    height: 100%;
}

.hm-style-73 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    transform: translate(-50%, -50%) scale(1.15);
    pointer-events: none;
    z-index: 1;
}

.hm-style-74 {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hm-style-75 {
    position: relative;
    z-index: 2;
    border-radius: 15px;
}

.hm-style-76 {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.hm-style-77 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}


/* About Us Page Extracted Inline Styles */
.ab-style-1 {
   background: linear-gradient(rgb(0 55 115 / 72%), rgb(0 2 3 / 80%)), url(../images/people_connecting.jpg);
    background-size: cover;
    background-position: center;
}

.ab-style-2 {
    color: #1471aa;
    font-size: 18px;
    letter-spacing: 2px;
}

.ab-style-3 {
    color: #151515;
}

h2.ab-style-3 {
    font-weight: 700 !important;
}

p.ab-style-3 {
    text-align: left !important;
    line-height: 1.8;
}

.ab-style-11 .icon {
    text-align: center;
}

.ab-style-11 h3 {
    text-align: center;
}

.ab-style-4 {
    text-align: left;
}

.ab-style-5 {
    font-size: 45px;
    line-height: 1;

    font-weight: 600;
    text-align: center;
}

.ab-style-6 {
    background-color: #1471aa;
}

.ab-style-7 {
    min-height: 120px;
}

.ab-style-8 {
    color: #fff;
    font-weight: 800;
    font-size: 64px;
    display: inline-block;
    margin: 0;
}

.ab-style-9 {
    color: #fff;
    font-weight: 600;
    font-size: 24px;
    margin-top: 5px;
    text-align: center;
}

.ab-style-10 {
    background-color: #f8f9fa;
}

.ab-style-11 {
    border-radius: 10px;
    border: none;
}

.ab-style-12 {
    font-style: normal;
    font-size: 50px;
    color: #1471aa;
}

.ab-style-13 {
    background-color: #ffffff;
}

.ab-style-14 {
    background: #f0f4fb;
    padding: 70px 0;
}

.ab-style-15 {
    color: #1471aa;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.ab-style-16 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.ab-style-17 {
    width: 80px;
    height: 80px;
    background-color: #e6f0ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.ab-style-18 {
    font-style: normal;
    font-size: 35px;
    color: #1471aa;
}

.ab-style-19 {
    background: #ffffff;
}

.ab-style-20 {
    object-fit: cover;
    border-radius: 10px;
}

.ab-style-21 {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.ab-style-22 {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* About Us Grid Styles */
.ns-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.ns-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eef2f6;
    text-decoration: none !important;
    display: block;
    color: inherit;
    height: 100%;
}

.ns-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(20, 113, 170, 0.15);
    border-color: #1471aa;
}

.ns-card-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(20, 113, 170, 0.15);
    margin-bottom: 15px;
    line-height: 1;
    transition: color 0.3s ease;
}

.ns-card:hover .ns-card-num {
    color: #1471aa;
}

.ns-card-title {
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    font-size: 20px;
    transition: color 0.3s ease;
}

.ns-card:hover .ns-card-title {
    color: #1471aa;
}

.ns-card-desc {
    color: #151515;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Override global justify for centered containers */
.text-center p {
    text-align: center !important;
}

/* Why Partner With Us Styles (Merged) */
.wcu-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.wcu-subtitle {
    color: #1471aa;
    font-size: 18px;
    letter-spacing: 2px;
}

.wcu-title {
    color: #151515;
    font-size: 42px;
}

.wcu-desc {
    color: #151515;
    max-width: 1000px;
}

.wcu-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wcu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.wcu-icon-wrap {
    width: 80px;
    height: 80px;
    background: rgba(20, 113, 170, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wcu-icon {
    font-style: normal !important;
    font-size: 36px;
    color: #1471aa;
    transition: all 0.3s ease;
}

.wcu-card-title {
    color: #111;
}

.wcu-card-desc {
    color: #333333 !important;
    font-weight: 400 !important;
    font-size: 14px;
    line-height: 1.6;
    text-align: center !important;
}

.wcu-card .wcu-icon-wrap {
    text-align: center;
}

.wcu-card .wcu-card-title {
    text-align: center;
}

.wcu-cta-section {
    background-image: linear-gradient(135deg, rgba(20, 113, 170, 0.88), rgba(8, 22, 40, 0.88)), url('../../frontend/images/cta_people_connecting.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    position: relative;
}

.wcu-cta-title {
    color: #fff;
}

.wcu-cta-desc {
    font-size: 18px;
}

.wcu-cta-btn {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 13px 38px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.wcu-cta-btn:hover {
    background-color: #ffffff;
    color: #1471aa;
}

.nav-dl-brochure {
    margin-left: 15px;
}

.footer-social-group {
    margin-top: 20px;
}

/* Enquiry Form Extracted Inline Styles */
.enquiry-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e7f0;
    height: 100%;
}

.enquiry-title {
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    color: #1471aa;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.enquiry-desc {
    font-family: 'Roboto Slab', serif;
    color: #151515;
    max-width: 600px;
    margin: 0 auto;
}

.enquiry-input {
    background: #f9fbfd;
    border: 1px solid #dce4ec;
    border-radius: 5px;
    padding: 15px 20px;
}

.enquiry-textarea {
    min-height: 150px;
}

.enquiry-btn {
    border-radius: 5px;
}

.enquiry-map-wrap {
    height: 100%;
}

.enquiry-map {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 400px;
}

/* Project Extracted Inline Styles */
.project-client-img {
    /*max-height: 120px;*/
    max-width: 100%;
    margin: 0;
    object-fit: contain;
}

/* Contact Us Extracted Inline Styles */
.contact-hero-bg {
   background: linear-gradient(rgb(0 55 115 / 72%), rgb(0 2 3 / 80%)), url(../images/people_connecting.jpg);
    background-size: cover;
    background-position: center;
}

.contact-icon-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* Coming Soon Extracted Inline Styles */
.coming-soon-icon {
    font-style: normal;
}

.coming-soon-link {
    color: #1471aa;
    text-decoration: none;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
}

/* IT Services Extracted Inline Styles */
.it-style-1 {
    text-align: left;
}

.it-style-2 {
    color: #fff;
}

.it-style-3 {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.it-style-4 {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
}

.it-style-5 {
    padding: 35px 0;
	    margin-bottom: 36px;

}

.it-style-6 {
    height: 100%;
}

.it-style-7 {
    color: #151515;
}

.it-style-8 {
    flex-wrap: wrap;
}

.btn-it-service {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 600;
    font-family: 'Roboto Slab', serif;
    border-radius: 4px;
    padding: 12px 30px !important;
    border: 2px solid #ffffff !important;
    font-size: 16px !important;
    display: inline-block;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: none;
}

.btn-it-service:hover {
    background: #ffffff !important;
    color: #1471aa !important;
    text-decoration: none;
}

/* Clients and Contact Us Extracted Inline Styles */
.cl-style-1 {
    font-family: 'Roboto Slab', serif;
}

.cl-style-2 {
    margin-bottom: 20px;
}

.cl-style-3 {
   /* max-width: 800px;*/
    margin: 0 auto 50px auto;
    color: #151515;
    font-size: 18px;
    line-height: 1.7;
    font-family: 'Roboto Slab', serif;
}

.cl-style-4 {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.cl-style-5 {
    height: 100%;
    width: 100%;
    background-color: #f0f4fb;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0 15px;
}

.cl-style-6 {
    color: #1471aa;
    font-family: 'Roboto Slab', serif;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 22px;
    line-height: 1.2;
    word-wrap: break-word;
}

.cl-style-7 {
    margin-top: auto;
}

.cl-style-8 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0 5px;
}

.co-style-1 {
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.co-style-2 {
    width: 100%;
}

.co-style-3 {
    margin-bottom: 20px;
}

.co-style-4 {
    text-align: center;
    width: 100%;
    margin: 0;
}

.co-style-5 {
    font-size: 16px;
    color: #151515;
    
}

.co-style-6 {
    font-size: 16px;
    line-height: 1.6;
    color: #151515;
    text-align: center;
    margin: 0;
    font-weight: bold;
    width: 100%;
}

.co-style-7 {
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e1e7f0;
    height: 100%;
}

.co-style-8 {
    font-weight: 700;
    color: #1471aa;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.co-style-9 {
    color: #151515;
    max-width: 600px;
}

.co-style-10 {
    background: #f9fbfd;
    border: 1px solid #dce4ec;
    border-radius: 5px;
    padding: 15px 20px;
}

.co-style-11 {
    background: #f9fbfd;
    border: 1px solid #dce4ec;
    border-radius: 5px;
    padding: 15px 20px;
    min-height: 150px;
}

.co-style-12 {
    border-radius: 5px;
}

.co-style-13 {
    height: 100%;
}

.co-style-14 {
    border: 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    min-height: 400px;
}

p {
    font-size: 20px;
    font-weight: 300 !important;
    font-family: 'Roboto Slab', serif !important;
}

.service-card-text {
    color: #151515;
    text-align: justify;
}

.testimonial-author-name {
    font-size: 18px;
    color: #151515;
}

/* Solutions Portfolio Styles */
.solutions-portfolio-about {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e1eefc;
}

.solutions-portfolio-about-header {
    background-color: #0b3a7a;
    padding: 10px 20px;
    text-align: center;
}

.portfolio-col-about {
    border-right: 1px solid #e1eefc;
}

.portfolio-col-about:last-child {
    border-right: none;
}

@media (max-width: 991px) {
    .portfolio-col-about:nth-child(3n) { border-right: none; }
}

@media (max-width: 767px) {
    .portfolio-col-about:nth-child(2n) { border-right: none; }
    .portfolio-col-about { border-bottom: 1px solid #e1eefc; }
    .portfolio-col-about:last-child { border-bottom: none; }
}

.portfolio-icon-wrap-about {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #1471aa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.portfolio-icon-wrap-about i {
    color: #1471aa;
}

.solutions-portfolio-about p, 
.solutions-portfolio-about ul,
.solutions-portfolio-about h6,
.solutions-portfolio-about li {
    font-family: 'Roboto Slab', serif !important;
    text-align: left !important;
    font-weight: 500 !important;
}

.solutions-portfolio-about h6 {
    color: #1471aa;
    line-height: 1.2;
    font-size: 14px;
}

.solutions-portfolio-about p,
.solutions-portfolio-about ul {
    font-size: 14px;
    line-height: 1.5;
    color: #343a40;
}

.solutions-portfolio-about-header h4 {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.portfolio-col-btn {
    background-color: #1471aa;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 15px;
    text-decoration: none !important;
}

.portfolio-col-btn:hover {
    background-color: #0b3a7a;
    color: #fff;
}

/* Why Choose Us Styles */
.why-choose-header {
    background-color: #1471aa;
    border-radius: 8px;
}
.why-choose-header h3 {
    font-size: 24px;
    letter-spacing: 0.5px;
}
.why-choose-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 30px;
    background-color: #1471aa;
}
.why-choose-desc {
    font-size: 15px;
    font-weight: 400 !important;
    line-height: 1.5;
}

/* Bulletproof fix for white bar below footer */
html, body {
    background-color: #06111e !important; /* Matches footer bottom panel */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.page {
    background-color: #ffffff; /* Preserves white background for all content inside */
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.footer-section, .footer-variant-2-bottom-panel {
    margin-bottom: 0 !important;
    padding-bottom: 4 !important;
}

/* Core Values Section Styling */
.ab-style-cv-card {
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}
.ab-style-cv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(20, 113, 170, 0.15) !important;
}
.ab-style-cv-card h5, .ab-style-cv-card h6 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.3 !important;
}
.ab-style-cv-icon {
    font-style: normal;
    font-size: 32px;
    color: #1471aa;
}

/* Industry Marquee Slide Animation */
.industry-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.industry-track {
    display: inline-block;
    animation: marquee 35s linear infinite;
}

.industry-track:hover {
    animation-play-state: paused;
}

.industry-card-wrapper {
    display: inline-block;
    width: 240px;
    margin: 0 10px;
    vertical-align: top;
    white-space: normal;
}

.industry-card-fixed {
    height: 135px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    padding: 10px !important;
}

.industry-card-fixed .card-body {
    width: 100% !important;
    overflow: hidden !important;
    padding: 0 !important;
}

.industry-card-fixed h6, .industry-card-fixed .card-title {
    font-size: 13px !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 4px !important;
}

/* Disable justified text alignment across content paragraphs */
p, .hm-style-30, .hm-style-31, .ab-style-4 {
    text-align: left !important;
}