/* =====================================
   FONT VARIABLES
   ===================================== */

:root {
    --font-heading: "Grift", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --color-black: #000;
    --color-primary: #0068AD;
    --color-white: #fff;

    --container-width: 1400px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
p {
    font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
}

/* this css is temp */

.services-menu { display: none; }

/* this css is temp */


.portfolio-tabs {
    display: none !important;
}


.elementor-section.elementor-section-boxed > .elementor-container,
.e-con.e-parent {
    max-width: 1400px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1439px) {
    .e-con.e-parent,
    .elementor-container {
        max-width: 1140px; /* Standard comfortable desktop width */
    }
}


@media (max-width: 1199px) {
    .e-con.e-parent,
    .elementor-container {
        max-width: 960px;
    }
}

@media (max-width: 1024px) {
    .e-con.e-parent,
    .elementor-container {
        max-width: 100%; 
        width: 100%;
    }
}

/* <=== Mega Menu ----=== */

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: auto;
    padding: 0 20px;
}


/* Announcement Bar Styles */
.announcement-bar {
    width: 100%;
    background-color: #ffffff;
    color: #ffffff;
    padding: 9px 20px 8px 0px;
    text-align: center;
    z-index: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
}
.announcement-bar.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}
.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 15px;
  font-weight: 500;
}
.announcement-icon {
  font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-5px);
  }
  60% {
    transform: translateY(-3px);
  }
}
.announcement-text {
    line-height: 1.5;
    color: black;
}
.announcement-link {
    color: #ff6428;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}
.announcement-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
/* Responsive Design */
@media (max-width: 768px) {
  .announcement-bar {
     display: none;
  }
  
  .announcement-content {
    font-size: 14px;
  }
  
  .announcement-icon {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .announcement-content {
    font-size: 13px;
  }
}



 body.fraud-alert-popup-open {
            overflow: hidden;
        }

        .fraud-alert-popup {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            transition: background 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fraud-alert-popup.active {
            display: flex;
            animation: overlayFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes overlayFadeIn {
            from {
                background: rgba(0, 0, 0, 0);
            }
            to {
                background: rgba(0, 0, 0, 0.6);
            }
        }

        .fraud-alert-popup.closing {
            animation: overlayFadeOut 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes overlayFadeOut {
            from {
                background: rgba(0, 0, 0, 0.6);
            }
            to {
                background: rgba(0, 0, 0, 0);
            }
        }

       .fraud-alert-popup__container {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    margin: auto;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(30px);
    opacity: 0;
}

        .fraud-alert-popup.active .fraud-alert-popup__container {
            animation: popupSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
            animation-delay: 0.1s;
        }

        @keyframes popupSlideIn {
            from {
                transform: scale(0.9) translateY(30px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }

        .fraud-alert-popup.closing .fraud-alert-popup__container {
            animation: popupSlideOut 0.3s cubic-bezier(0.4, 0, 1, 1) forwards;
        }

        @keyframes popupSlideOut {
            from {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
            to {
                transform: scale(0.9) translateY(30px);
                opacity: 0;
            }
        }

       .fraud-alert-popup__close-btn {
    position: absolute;
    top: 20px;
    right: 18px;
    width: 38px;
    padding: 3px 20px;
    height: 40px;
    border-radius: 50%;
    background: black;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: rotate(0deg);
}

        .fraud-alert-popup__close-btn:hover {
            transform: scale(1.1) rotate(90deg);
            background: #333;
        }

        .fraud-alert-popup__close-btn:active {
            transform: scale(0.95) rotate(90deg);
        }

        .fraud-alert-popup__close-btn::before,
        .fraud-alert-popup__close-btn::after {
            content: '';
            position: absolute;
            width: 18px;
            height: 2px;
            background: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fraud-alert-popup__close-btn::before {
            transform: rotate(45deg);
        }

        .fraud-alert-popup__close-btn::after {
            transform: rotate(-45deg);
        }

        .fraud-alert-popup__content {
            padding: 60px 50px 50px 50px;
        }

        .fraud-alert-popup__title {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 16px;
    line-height: 120%;
    color: black;
    font-family: var(--font-heading);
}


       .fraud-alert-popup__text {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 17px;
}
        .fraud-alert-popup__email-link {
            color: #ff6b35;
            text-decoration: underline;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-block;
        }

        .fraud-alert-popup__email-link:hover {
            color: #e55a2b;
            transform: translateX(3px);
        }

        .fraud-alert-popup__demo-info {
            text-align: center;
            padding: 20px;
            background: #f0f0f0;
            border-radius: 8px;
            margin: 20px;
            opacity: 0;
            animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .fraud-alert-popup__demo-info p {
            margin: 0;
            font-size: 14px;
            color: #666;
        }

        /* Scrollbar styling */
        .fraud-alert-popup__container::-webkit-scrollbar {
            width: 8px;
        }

        .fraud-alert-popup__container::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .fraud-alert-popup__container::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
            transition: background 0.3s;
        }

        .fraud-alert-popup__container::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        @media (max-width: 768px) {
            
        img.dau-logo-mark {
    width: 74px;
}
            
 .fraud-alert-popup__container {
    max-width: 600px;
    max-height: 90vh;
    opacity: 0;
}
            
            .fraud-alert-popup__content {
                padding: 30px;
            }

            .fraud-alert-popup__title,
            .fraud-alert-popup__subtitle {
                font-size: 32px;
            }

            .fraud-alert-popup__text {
                font-size: 15px;
            }
        }



#primary {
    margin: 0em 0;
}

.site-container {
    width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    box-sizing: border-box;
}

.brands-logos .e-n-tabs-heading {
    width: 1400px;
    margin: auto;
}

.section-full { 
    width: 100%; 
    display: block; 
}

h1, h2, h3, h4, h5, h6,
.heading,
.font-heading {
    font-family: var(--font-heading);
}

.site-header {
    background: #fff;
    padding: 14px 0px;
    position: sticky;
    top: 0;
    z-index: 90;
    backdrop-filter: blur(50px);
}

.header-container {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.site-logo a {
    text-decoration: none;
    color: #000;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.main-navigation {
    display: flex;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    align-items: center;
}

.nav-menu li {
    position: relative;
    padding: 12px 0px;
}

.nav-menu a {
    text-decoration: none;
    color: #111111;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    font-family: 'SF Pro Display';
}

.nav-menu a:hover {
    color: #0064A7;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    margin: 0.5rem 0 0;
}

.nav-menu li:hover > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    padding: 0;
}

.nav-menu .sub-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    white-space: nowrap;
}

.nav-menu .sub-menu a:hover {
    background: #f5f5f5;
}

.header-cta {
    display: flex;
}

.dauway-logo h2 {
    display: flex;
    gap: 13px;
    align-items: center;
}

.cta-button {
    padding: 10px 20px;
    background: #fff;
    color: #0066cc;
    border: 1px solid;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #000000;
    color: #fff;
    border: 1px solid black;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.mega-menu-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-header {
    margin-bottom: 40px;
    display: none !important;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.menu-item-has-megamenu.mobile-active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Menu Styles */
.menu-item-has-megamenu {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: auto;
    transform: translateX(-64%);
    margin-top: 10px;
    width: 1400px;
    max-width: calc(99vw - 40px);
    display: none;
}

/* Desktop: Mega Menu open when active */
.menu-item-has-megamenu.active .mega-menu {
    display: block;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: 2fr 4fr;
    gap: 1px;
    background-color: black;
    border-radius: 15px;
}

.mega-menu-column {
    background: #000000;
    padding: 30px;
    border-radius: 0px 0px 15px 0px;
}

.mega-menu-left {
    background: #000000;
    border-right: 1px solid #333333;
    border-radius: 0px 0px 0px 15px;
}

/* Left Column - Interactive Items */
.mega-menu-item-wrapper {
    margin-bottom: 12px;
}

.mega-menu-item-wrapper:last-child {
    margin-bottom: 0;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border-radius: 8px;
    text-decoration: none;
    color: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.mega-menu-item:hover,
.mega-menu-item.active {
    background: rgba(0, 0, 0, 0.05);
}

.mega-menu-item.active {
    background: rgba(0, 0, 0, 0.08);
}

.mega-menu-item:hover {
    transform: translateX(5px);
    background-color: #E6F1F8;
    color: black;
}

.mega-menu-item:hover .mega-menu-title {
    color: #000000;
}

.mega-menu-title {
    font-size: 22px;
    font-weight: 500;
    color: white;
    transition: color 0.3s ease;
}

.mega-menu-arrow {
    font-size: 24px;
    opacity: 0.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-menu-item:hover .mega-menu-arrow,
.mega-menu-item.active .mega-menu-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Right Column - Dynamic Content */
.mega-menu-right {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 300px;
}

.mega-menu-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mega-menu-content {
    display: none;
}

.mega-menu-content.active {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    gap: 35px 20px;
}

/* Hide sub-items from left column on desktop */
.mega-menu-left .mega-menu-sub-items {
    display: none;
}

.mega-menu-sub-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
}

.mega-menu-right-item {
    min-width: 200px;
}

.mega-menu-right-item h3 {
    font-family: 'SF Pro Display';
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 5px 0;
    color: #FFFFFF;
}

.mega-menu-right-item p {
    font-size: 14px;
    margin: 0;
    color: #8A8A8A;
    line-height: 1.5;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 10px;
    border: 1px solid black;
    z-index: 1001;
    border-radius: 50px;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: #000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, -1px);
    width: 17px;
}



.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, 1px);
    width: 18px;
}

/* Tablet Responsive */
@media (max-width: 1280px) {
    .mega-menu {
        width: 1000px;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        width: 800px;
    }
    
    .site-container {
        width: 100%;
        padding: 0 20px;
    }
}

/* Mobile and Tablet Responsive - SIDE MENU (RIGHT TO LEFT) */
@media (max-width: 992px) {
    
       .connect-with-us {
        flex-direction: column;   /* stack items */
        gap: 2rem;                /* sane spacing */
        margin: 3rem auto;
    }
    
/*  body {
    margin-top: 60px;
} */

        .mobile-menu-toggle {
        display: flex;
        width: 50px;
    }
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    /* Mobile Menu Overlay - Enhanced Animation */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(0px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
        backdrop-filter: blur(4px);
    }

    /* Slide-in Side Menu from RIGHT - Enhanced Animation */
    .header-right {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 320px;
        max-width: 85vw;
        padding: 18px;
        background: #fff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        z-index: 999;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                    box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        margin-left: 0;
        gap: 0;
        opacity: 0;
    }

    .header-right.active {
        right: 0;
        opacity: 1;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.2);
    }

    /* Fixed header inside mobile menu */
    .mobile-menu-header {
        position: sticky;
        top: 0;
        background: #fff;
        padding: 20px 20px 15px;
        border-bottom: 1px solid #f0f0f0;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: space-between;
        animation: slideInFromTop 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
    }

    /* Close button in mobile menu - Enhanced Animation */
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 28px;
        cursor: pointer;
        padding: 8px;
        color: #333;
        line-height: 1;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
                    color 0.2s ease;
        margin-left: auto;
    }

    .mobile-menu-close:hover {
        transform: rotate(90deg) scale(1.1);
        color: #0064A7;
    }

    /* Scrollable content area - Staggered Animation */
    .mobile-menu-content {
        flex: 1;
        overflow-y: auto;
        overflow-x: hidden;
        padding-bottom: 20px;
    }

  .main-navigation {
        width: 100%;
        padding: 0;
        height: auto;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
        align-items: flex-start;
        width: 100%;
        padding: 0;
    }

    /* Staggered fade-in animation for menu items */
    .nav-menu > li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
        opacity: 0;
        transform: translateX(30px);
        animation: slideInFromRight 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Stagger delay for each menu item */
    .header-right.active .nav-menu > li:nth-child(1) { animation-delay: 0.1s; }
    .header-right.active .nav-menu > li:nth-child(2) { animation-delay: 0.15s; }
    .header-right.active .nav-menu > li:nth-child(3) { animation-delay: 0.2s; }
    .header-right.active .nav-menu > li:nth-child(4) { animation-delay: 0.25s; }
    .header-right.active .nav-menu > li:nth-child(5) { animation-delay: 0.3s; }
    .header-right.active .nav-menu > li:nth-child(6) { animation-delay: 0.35s; }
    .header-right.active .nav-menu > li:nth-child(7) { animation-delay: 0.4s; }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu > li > a {
        display: block;
        padding: 10px 0px;
        width: 100%;
        font-size: 16px;
        transition: color 0.3s ease, transform 0.2s ease;
    }

    .nav-menu > li > a:hover {
        color: #006EB8;
    }

    /* Submenu animations */
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        margin-top: 0;
        background: #f9f9f9;
        border-radius: 0;
        padding: 0;
        display: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu li.active > .sub-menu {
        display: block;
        max-height: 500px;
    }
    
    .nav-menu .sub-menu li {
        border-bottom: 1px solid #ebebeb;
        opacity: 0;
        transform: translateX(20px);
        animation: fadeInSubmenu 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Stagger submenu items */
    .nav-menu li.active > .sub-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li.active > .sub-menu li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu li.active > .sub-menu li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu li.active > .sub-menu li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu li.active > .sub-menu li:nth-child(5) { animation-delay: 0.3s; }
    
    .nav-menu .sub-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu .sub-menu a {
        padding: 14px 20px 14px 35px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .nav-menu .sub-menu a:hover {
        background: #fff;
        padding-left: 40px;
    }

    /* CTA button animation */
    .header-cta {
        width: 100%;
        padding: 15px 20px 0;
        margin-top: 0;
        border-top: 1px solid #f0f0f0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    }

    .cta-button,
    .btn-primary-dau {
        display: block;
        text-align: center;
        width: 100%;
        width: 120px !important;
        height: 38px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 100, 167, 0.2);
    }

    /* Keyframe Animations */
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideInFromTop {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInSubmenu {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Mobile Responsive - ACCORDION STYLES */
@media (max-width: 768px) {
    
    img.auto-rotate {
    width: 40px;
}
    
    .pagenot-heading .elementor-heading-title {
    display: flex;
    gap: 4px;
    align-items: center;
}
    .site-container {
        width: 100%;
        padding: 0px;
    }
    
    .site-header {
        padding: 12px 0;
    }

    .header-container {
        width: 95%;
        gap: 1rem;
        padding: 0 10px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
    
    .site-logo img {
        max-height: 40px;
    }

    /* Slide-in menu width adjustment for mobile */
    .header-right {
        width: 300px;
    }

    /* Mobile menu header */
    .mobile-menu-header {
        padding: 15px 15px 12px;
    }

    /* Top-level menu items styling */
    .nav-menu > li > a:not(.mega-menu-trigger) {
        padding: 15px 20px;
        font-size: 15px;
    }

    /* Services mega menu trigger */
    .menu-item-has-megamenu {
        position: relative;
    }

    .mega-menu-trigger {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        width: 100%;
        font-size: 15px;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        color: #111111;
        font-weight: 500;
        font-family: 'SF Pro Display';
        transition: all 0.3s ease;
    }

    .mega-menu-trigger:hover {
        color: #0064A7;
    }

    .dropdown-arrow {
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 10px;
        margin-left: auto;
        color: #000000;
        margin-left: 6px;
    }

    .menu-item-has-megamenu.mobile-active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    /* Mega menu container - accordion style with smooth animation */
    .mega-menu {
        position: static;
        transform: none;
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
        display: none;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .menu-item-has-megamenu.mobile-active .mega-menu {
        display: block;
        max-height: 2000px;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        gap: 0;
        background: transparent;
        border-radius: 0;
    }
    
    .mega-menu-column {
        padding: 0;
        background: transparent;
    }
    
    .mega-menu-left {
        background: transparent;
        border: none;
        padding: 0;
    }
    
    .mega-menu-item-wrapper {
        margin-bottom: 2px;
        border-bottom: 0px solid #ebebeb;
        background: #f8f9fa;
        overflow: hidden;
        opacity: 0;
        transform: translateY(10px);
        animation: fadeInItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Stagger animation for mega menu items */
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(1) { animation-delay: 0.1s; }
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(2) { animation-delay: 0.15s; }
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(3) { animation-delay: 0.2s; }
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(4) { animation-delay: 0.25s; }
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(5) { animation-delay: 0.3s; }
    .menu-item-has-megamenu.mobile-active .mega-menu-item-wrapper:nth-child(6) { animation-delay: 0.35s; }
    
    .mega-menu-item-wrapper:last-child {
        border-bottom: none;
    }
    
    .mega-menu-item-wrapper.has-sub-items {
        position: relative;
    }
    
    /* Main mega menu items (left column items) */
    .mega-menu-item {
        padding: 14px 20px;
        margin-bottom: 0;
        border-radius: 0;
        background: transparent;
        color: #111111;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border: none;
        text-align: left;
        cursor: pointer;
        font-size: 15px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mega-menu-item:hover {
        transform: none;
        background: #e8eef3;
        border-radius: 8px;
    }
    
    .mega-menu-item.active {
        background: #e8eef3;
        border-radius: 8px;
    }
    
    .mega-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #111111;
        transition: color 0.3s ease;
    }
    
    .mega-menu-arrow {
        font-size: 14px;
        opacity: 0.6;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.3s ease;
        display: inline-block;
        color: #666;
    }

    .mega-menu-arrow img {
        width: 14px;
        height: 14px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Show sub-items in mobile accordion with smooth animation */
    .mega-menu-left .mega-menu-sub-items {
        display: none;
        background: #fff;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-sub-items {
        display: block;
        max-height: 1000px;
    }
    
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-arrow {
        transform: rotate(90deg);
        opacity: 1;
    }

    .mega-menu-item-wrapper.mobile-expanded .mega-menu-arrow img {
        transform: rotate(90deg);
    }
    
    /* Hide desktop right column */
    .mega-menu-right {
        display: none;
    }
    
    /* Sub-items styling (third level) with animation */
    .mega-menu-sub-items {
        display: none;
        flex-direction: column;
        gap: 0;
        grid-template-columns: 1fr;
    }
    
    .mega-menu-right-item {
        padding: 13px 20px 13px 40px;
        margin: 0;
        border-bottom: 1px solid #f0f0f0;
        background: #fff;
        text-decoration: none;
        display: block;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        opacity: 0;
        transform: translateX(15px);
    }

    /* Animate sub-items when expanded */
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item {
        animation: fadeInSubItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Stagger sub-items */
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(1) { animation-delay: 0.1s; }
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(2) { animation-delay: 0.15s; }
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(3) { animation-delay: 0.2s; }
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(4) { animation-delay: 0.25s; }
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(5) { animation-delay: 0.3s; }
    .mega-menu-item-wrapper.mobile-expanded .mega-menu-right-item:nth-child(6) { animation-delay: 0.35s; }

    .mega-menu-right-item:hover {
        background: #f9f9f9;
        transform: translateX(5px);
    }
    
    .mega-menu-right-item:last-child {
        border-bottom: none;
    }
    
    .mega-menu-right-item h3 {
        font-size: 14px;
        margin: 0 0 3px 0;
        font-weight: 500;
        color: #111111;
    }
    
    .mega-menu-right-item p {
        font-size: 12px;
        color: #666;
        line-height: 1.4;
        margin: 0;
    }

    /* Additional keyframe animations */
    @keyframes fadeInItem {
        from {
            opacity: 0;
            transform: translateY(10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInSubItem {
        from {
            opacity: 0;
            transform: translateX(15px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .header-container {
        width: 100%;
        padding: 0px 20px;
    }
    
    .site-header {
        padding: 10px 0;
    }

    .header-right {
        width: 280px;
    }
    
    .site-logo img {
        max-height: 40px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }

    .mobile-menu-header {
        padding: 12px 12px 10px;
    }

    .mega-menu-item {
        padding: 10px;
        font-size: 14px;
    }

    .mega-menu-right-item {
        padding: 12px;
    }

    .mega-menu-title {
        font-size: 16px;
    }

    .mega-menu-right-item h3 {
        font-size: 15px;
    }

    .mega-menu-right-item p {
        font-size: 12px;
    }
    
    .nav-menu > li > a:not(.mega-menu-trigger) {
        padding: 10px 0px;
        font-size: 16px;
    }
    
    .mega-menu-trigger {
        padding: 13px 15px;
        font-size: 14px;
    }
    
    .nav-menu .sub-menu a {
        padding: 12px 15px 12px 30px;
        font-size: 14px;
    }
    
    .header-cta {
        padding: 12px 0px 0;
    }
}

/* <=== Mega Menu End ----=== */
/* <=== Mega Menu End ----=== */



footer {
    background: #000000;
    padding: 70px 0px 0px 0px;
}

.footer-brand img {
    margin-bottom: 12px;
    width: 70px;
}


.footer-content {
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 60px;
    margin-bottom: 5rem;
}
        .footer-brand h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

.footer-brand p {
    color: #8A8A8A;
    line-height: 1.6;
    font-size: 18px;
    font-family: 'SF Pro Display';
    font-weight: 400;
}
       .footer-column h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #FFFFFF;
}

        .footer-column ul {
            list-style: none;
                margin: 0px;

        }

     .footer-column ul li {
    margin-bottom: 5px;
}

        .footer-column ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s 
ease;
}

        .footer-column ul li a:hover {
            color: #fff;
        }

   .footer-locations p {
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

       .footer-locations strong {
    color: #FFFFFF;
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

       .footer-bottom {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #222;
    margin: auto;
}

.brand-head{
	font-weight: 500;
}

       .footer-bottom p {
            color: #FFFFFF;
            font-size: 14px;
                margin-bottom: 0px;

        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: repeat(3, 1fr);
                gap: 40px;
            }

            footer {
                padding: 40px 40px 30px;
            }
        }

        @media (max-width: 768px) {
            
                .loader-heading.animate-to-hero {
    font-size: 28px !important;

}
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            footer {
                padding: 40px 20px 0px 20px;
            }
            
            .footer-bottom {
    text-align: center;
    padding: 20px 0px;
    border-top: 1px solid #222;
    width: auto;
    margin: auto;
}

.mobile-menu-toggle span:nth-child(2) {
    display: none;
}

    .dau-breadcrumbs {
        background: #ffffff;
        padding: 10px 20px !important;
        width: auto !important;
        margin: auto;
        margin-top: 60px !important;
    }
            .footer-brand h1 {
                font-size: 36px;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .loader-heading.animate-to-hero {
    font-size: 26px !important;

}
        }



.dau-btn {
    position: relative;
    color: #0064A7;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 50px; /* needed for hover + mask consistency */
}

.dau-btn:hover {
    background-color: #000;
    color: #fff;
}

.dau-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    border-radius: 300px;
    border: 2px solid transparent;

    /* Gradient border */
    background: linear-gradient(
        90deg,
        #0842AA 0%,
        #40BBF9 24.52%,
        #40BBF9 70.37%,
        #0842AA 100%
    ) border-box;

    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;

    pointer-events: none; /* prevents hover glitches */
}


.dau-btn-dark {
    position: relative;
    color: #ffffff;
    outline: none;
    background: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    border-radius: 50px;
}

.dau-btn-dark:hover {
    background-color: #000;
    color: #fff;
    border-color: 2px solid white !important;

}

.ast-separate-container.ast-desktop .ast-blog-layout-4-grid .ast-row {
    margin-left: -1em;
    margin-right: -1em;
    width: 1400px;
    margin: auto;
}

body.archive .ast-archive-description {
    margin: auto;
}

.ast-blog-layout-4-grid .ast-row {
    display: flex;
    flex-wrap: wrap;
    flex-flow: row wrap;
    align-items: stretch;
    justify-content: space-between;
}

.ast-blog-layout-4-grid .ast-article-post {
    width: 31%;
    margin-bottom: 2em;
    border-bottom: 0;
    background-color: transparent;
}
.dau-btn-dark::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 300px;
    border: 2px solid transparent;

/* Gradient border */
background: linear-gradient(
    150.49deg,
    #000000 0.12%,
    #0068AD 47.9%,
    #40BBF9 82.85%,
    #CBFAF8 112.54%
) border-box;

    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: destination-out;
    mask-composite: exclude;

    pointer-events: none;
}

/* Remove gradient border on hover */
.dau-btn:hover::before,
.dau-btn-dark:hover::before {
    opacity: 0;        /* hide the fake border */
}

.button-img:hover path {
    fill: black;
}

.button-img-light:hover path {
    fill: white;
}

.dau-btn-large {
    padding: 10px 32px 15px 32px;
    font-size: 20px;
    line-height: 35px;
    text-decoration: none !important;
}

/* Base */
.dauways{
    background:#1F1F1F;
    position:relative;
}

.dauways:hover{
    background:linear-gradient(
        150.49deg,
        #000000 0.12%,
        #0068AD 47.9%,
        #40BBF9 82.85%,
        #CBFAF8 112.54%
    );

    background-size:300% 300%;
    animation:gradientMove 2s linear infinite;
}

.dauways:hover .descrptions-clr p{
    color:#fff;
    transition:color .3s linear;
}

@keyframes gradientMove{
    0%   { background-position:0% 50%; }
    50%  { background-position:100% 50%; }
    100% { background-position:0% 50%; }
}


  .dau-breadcrumbs {
    background: #ffffff;
    padding: 1rem 0px;
    /* border-radius: 8px; */
    /* box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); */
    margin-bottom: 2rem;
    width: 1400px;
    margin: auto;
}
    
   .breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    font-size: 16px;
}
    
    .breadcrumb-back,
    .breadcrumb-home {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        transition: all 0.2s ease;
        color: #6b7280;
        text-decoration: none;
    }
    
    .breadcrumb-back:hover,
    .breadcrumb-home:hover {
        background-color: #f3f4f6;
        color: #111827;
    }
    
    .breadcrumb-separator {
        display: inline-flex;
        color: #9ca3af;
    }
    
    .breadcrumb-link {
        transition: all 0.2s ease;
        color: #6b7280;
        text-decoration: none;
    }
    
    .breadcrumb-link:hover {
        background-color: #f9fafb;
        color: #111827;
    }
    
    .breadcrumb-current {
    border-radius: 6px;
    color: #111827;
    font-weight: 500;
}

.breadcrumb-back img {
    transform: rotate(180deg);
}

    
    @media (max-width: 768px) {
        .breadcrumb-container {
            font-size: 0.8125rem;
        }
        
      .breadcrumb-back, .breadcrumb-home {
        width: 16px;
        height: 16px;
        margin-bottom: 0px;
    }
        
        .breadcrumb-back svg,
        .breadcrumb-home svg {
            width: 18px;
            height: 18px;
        }
    }

.across-clr .elementor-heading-title span {
    color: black;
}

.connect-with-us {
    display: flex;
    align-items: center;
    gap: 15rem;
    margin: 5rem auto;
}

.connect-with-us-left {
    width: 55%;
}

.connect-with-us-right{
    width: 45%;
}

        .connect-with-us-left h1 {
    font-size: 52px;
    font-weight: 200;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #000;
}

   .connect-with-us-left p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 17px;
}

.connect-with-us-button {
    display: inline-block;
    padding: 10px 26px;
    font-size: 18px;
    color: #0064A7;
    background: transparent;
    border: 0px solid #0066cc;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    cursor: pointer;
}

      .connect-with-us-button:hover {
    background: #000000;
    color: #fff;
}

        .connect-with-us-contact-list {
            margin-top: 80px;
        }

        .connect-with-us-contact-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 10px;
            border-bottom: 1px solid #e0e0e0;
        }

.connect-with-us-contact-item:hover {
    background-color: #E6F3FD;
    padding: 16px 10px;
    border-radius: 8px;
}

.connect-with-us-contact-item:hover .connect-with-us-arrow {
    background-color: white;
    padding: 10px 8px;
    width: 31px;
    border-radius: 50px;
}
.connect-with-us-contact-item h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin: 0px;
    font-family: 'SF Pro Display';
}
        .connect-with-us-contact-link {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
            color: #000;
            font-size: 18px;
        }

        .connect-with-us-contact-link:hover {
            color: #0066cc;
        }

        .connect-with-us-arrow {
            width: 24px;
            height: 24px;
            stroke: currentColor;
        }

.connect-with-us-right {
    background: #E6F3FD;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid border: 1px solid #E9ECF5;
    border: 1px solid #E9ECF5;
}

.connect-with-us-right h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #040C25;
    font-family: 'SF Pro Display';
    text-align: center;
}

.cf7-steps-wrapper p {
    margin-bottom: 16px !important;
}



/* Labels */
.home-forms-container label, .home-forms-container legend {
    color: #040C25;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 5px;
    line-height: 22px;
    display: block;
}

.home-forms-container select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23A1A1A1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 10px center;
    padding-right: 56px !important;
    cursor: pointer;
}

/* Inputs, selects, textarea */
.home-forms-container input[type=email],
.home-forms-container input[type=number],
.home-forms-container input[type=password],
.home-forms-container input[type=reset],
.home-forms-container input[type=search],
.home-forms-container input[type=tel],
.home-forms-container input[type=text],
.home-forms-container input[type=url],
.home-forms-container select,
.home-forms-container textarea {
    color: #575C6D;
    padding: 12px 16px !important;
    font-size: 18px;
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    outline: none !important;
    font-weight: 400;
    height: 48px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    font-family: 'SF Pro Display';
    margin-top: 0px;
}

.home-forms-container br {
    display: none;
}

/* Hover, focus, active — SAME STYLE */
.home-forms-container input:focus,
.home-forms-container input:hover,
.home-forms-container input:active,
.home-forms-container select:focus,
.home-forms-container select:hover,
.home-forms-container select:active,
.home-forms-container textarea:focus,
.home-forms-container textarea:hover,
.home-forms-container textarea:active {
    border: 1px solid #E8E8E8;
    background-color: #FFFFFF;
    box-shadow: 0px 1px 2px 0px #1018280D;
    color: #575C6D;
}

        .connect-with-us-form-group {
            margin-bottom: 24px;
        }

        .connect-with-us-form-group label {
            display: block;
            font-size: 16px;
            margin-bottom: 8px;
            color: #000;
        }

        .connect-with-us-form-group input,
        .connect-with-us-form-group select {
            width: 100%;
            padding: 16px 20px;
            font-size: 16px;
            border: none;
            border-radius: 8px;
            background: #fff;
            color: #000;
        }

        .connect-with-us-form-group input::placeholder {
            color: #999;
        }

        .connect-with-us-form-group select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            cursor: pointer;
        }

        .connect-with-us-submit {
            width: 100%;
            padding: 18px;
            font-size: 18px;
            color: #0066cc;
            background: transparent;
            border: 2px solid #0066cc;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 16px;
        }

        .connect-with-us-submit:hover {
            background: #0066cc;
            color: #fff;
        }

.connect-with-us-right p {
    margin-bottom: 20px !important;
}

span.wpcf7-spinner {
    display: none;
}

        /* Contact Form 7 specific styles */
        .wpcf7-form-control-wrap {
            display: block;
            width: 100%;
        }

        .wpcf7-not-valid-tip {
            color: #dc3232;
            font-size: 14px;
            margin-top: 4px;
        }

        .wpcf7-response-output {
            margin: 20px 0;
            padding: 12px;
            border-radius: 8px;
        }

        @media (max-width: 1024px) {
            .connect-with-us {
                grid-template-columns: 1fr;
                gap: 30px;
                padding: 60px 40px;
            }
        }

        @media (max-width: 768px) {
            .connect-with-us {
                padding: 30px 20px;
            }
            
            .connect-with-us-left {
    width: 100%;
}
                .connect-with-us {
        margin: 0rem auto !important;
    }

          .connect-with-us-left h1 {
        font-size: 32px;
        margin-bottom: 0px;
    }

            .connect-with-us-right {
                padding: 40px 30px;
            }
            
            .connect-with-us-left p {
        font-size: 16px;
        line-height: 1.6;
        color: #333;
        margin-bottom: 10px;
        margin-top: 10px;
    }
            
            .connect-with-us-contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #333333;
    font-size: 20px;
    justify-content: space-between;
}
            .connect-with-us-contact-item {
    display: block;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0px;
    border-bottom: 1px solid #e0e0e0;
}
            .connect-with-us-contact-list {
    margin-top: 30px;
}
            .connect-with-us-right {
    width: 100%;
}
            
        .connect-with-us-right {
    background: #E6F3FD;
    border-radius: 15px;
    padding: 22px;
    border: 1px solid border: 1px solid #E9ECF5;
    border: 1px solid #E9ECF5;
}
            .contact-btn {
    width: 140px !important;
    height: 40px;
}
               .connect-with-us-right h2 {
        font-size: 26px;
        font-weight: 600;
    }
        
            .gradient-btn {
    position: relative;
    padding: 10px 26px;
    width: 100%;
    font-size: 16px;
    color: #0064A7;
    font-family: 'SF Pro Display';
    background: #ffffff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    height: 39px;
    overflow: hidden;
    transition: all 0.3s ease;
}
            
        .home-forms-container input[type=email], .home-forms-container input[type=number], .home-forms-container input[type=password], .home-forms-container input[type=reset], .home-forms-container input[type=search], .home-forms-container input[type=tel], .home-forms-container input[type=text], .home-forms-container input[type=url], .home-forms-container select, .home-forms-container textarea {
    color: #575C6D;
    padding: 7px 16px !important;
    font-size: 16px;
    background-color: #FFFFFF;
    border: 1px solid #E8E8E8;
    border-radius: 8px;
    outline: none !important;
    font-weight: 400;
    height: 44px;
    box-shadow: 0px 1px 2px 0px #1018280D;
    font-family: 'SF Pro Display';
    margin-top: 0px;
}
        }


        .marquee-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .marquee-container::before,
        .marquee-container::after {
            content: '';
            position: absolute;
            top: 0;
            width: 100px;
            height: 100%;
            z-index: 2;
        }

        .marquee-container::before {
            left: 0;
            background: linear-gradient(to right, rgba(255, 255, 255, 1), transparent);
        }

        .marquee-container::after {
            right: 0;
            background: linear-gradient(to left, rgba(255, 255, 255, 1), transparent);
        }

        .marquee {
            display: flex;
            animation: scroll 60s linear infinite;
            width: fit-content;
        }

        .marquee-content {
            display: flex;
            align-items: center;
            white-space: nowrap;
        }

.tech-item {
    font-weight: 500;
    font-size: 28px;
    font-family: 'SF Pro Display';
    color: #003051;
    padding: 0 55px;
    text-transform: uppercase;
    letter-spacing: 0px;
}

     .separator {
    color: #0068AD;
    font-size: 20px;
    font-weight: bold;
}

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

        .marquee:hover {
            animation-play-state: paused;
        }






.cf7-steps-wrapper {
    margin: auto;
    padding: 0px;
}

.form-step{
  display:none;
}

.form-step.active{
  display:block;
}

.form-input, .form-textarea{
  width:100%;
  padding:10px;
  margin:8px 0 16px;
  border:1px solid #ccc;
  border-radius:4px;
}

.form-progress-bar{
  display:flex;
  justify-content:space-between;
  margin-bottom:25px;
}

.progress-step{
  text-align:center;
  width:50%;
  position:relative;
  color:#999;
}

.progress-step.active{
  color:#000;
  font-weight:600;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ddd;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -1px;
    margin-top: 11px;
}

.progress-step.active .step-number{
  background:#000;
  color:#fff;
}

.btn-next, .btn-previous, .btn-submit {
    padding: 11px 29px;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    /* background: #000; */
    color: #0066cc;
    height: 46px;
    font-size: 18px;
}
/* Hide default file upload button */
.wpcf7-file::-webkit-file-upload-button {
    display: none;
}

.wpcf7-file::file-selector-button {
    display: none;
}
.wpcf7 input[type=file].wpcf7-form-control {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
    width: 100%;
    border-radius: 0px;
    border: 0px;
    padding: 12px 0px 10px 0px;
    box-shadow: u;
    box-shadow: unset;
    border-bottom: 1px solid #8A8A8A;
    height: 48px;
}

img.file-choose {
    width: 22px;
}

.file-upload-label br {
    display: none;
}
.btn-previous {
    background: #ffffff;
    margin-right: 10px;
}

.nav-buttons{
  margin-top:15px;
}


/* Hide default checkbox */
.interest-checkbox input[type="checkbox"]{
    display:none;
}

/* Style labels as buttons */
.interest-checkbox .wpcf7-list-item label{
    display:inline-block;
}

.interest-checkbox .wpcf7-list-item label span {
    display: inline-block;
    padding: 10px 16px;
    border: 1px solid #000000;
    border-radius: 40px;
    color: #000000;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.25s ease;
    user-select: none;
    margin-bottom: 15px;
}

/* Hover effect */
.interest-checkbox .wpcf7-list-item label span:hover{
    background: #000000;
    color: #fff;
    border-color: white;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0 10px 0px 0em;
}

.interest-checkbox input[type="checkbox"]:checked + span {
    background: #000000;
    color: #fff;
    border-color: white;
}

h3.heading-cf7 {
    font-family: var(--font-heading);
    font-size: 38px;
    color: #000000;
    font-weight: 500;
    margin-left: -50px;
    margin-bottom: 40px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.heading-cf7 span {
    font-family: var(--font-heading);
    font-size: 25px;
    color: #0064A7;
    font-weight: 300;
}


/* HARD BLOCK: hide all steps */
.form-step{
    display:none!important;
}

/* ONLY show active step */
.form-step.active{
    display:block!important;
}


.contact_form-box label, .contact_form-box legend {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 1px;
    line-height: 22px;
    font-family: 'SF Pro Display';
    display: block;
}
/* Select dropdowns */
.contact_form-box select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23A1A1A1' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: right 10px center;
    padding-right: 56px !important;
    cursor: pointer;
}

.contact_form-box input[type=email], .contact_form-box input[type=number], .contact_form-box input[type=password], .contact_form-box input[type=reset], .contact_form-box input[type=search], .contact_form-box input[type=tel], .contact_form-box input[type=text], .contact_form-box input[type=url], .contact_form-box select, .contact_form-box textarea {
    color: #000000;
    padding: 8px 0px !important;
    font-size: 20px;
    background-color: #FFFFFF;
    border: none;
    border-bottom: 1px solid #8A8A8A;
    border-radius: 0;
    outline: none !important;
    font-weight: 500;
    height: 48px;
    box-shadow: none;
    font-family: 'SF Pro Display';
    margin-top: 0px;
    /* margin-bottom: 0px; */
}

.contact_form-box br {
    display: none;
}

/* Hover, focus, active — SAME STYLE */
.contact_form-box input:focus,
.contact_form-box input:hover,
.contact_form-box input:active,
.contact_form-box select:focus,
.contact_form-box select:hover,
.contact_form-box select:active,
.contact_form-box textarea:focus,
.contact_form-box textarea:hover,
.contact_form-box textarea:active {
    border: none;
    border-bottom: 1px solid #8A8A8A;
    background-color: #FFFFFF;
    box-shadow: none;
    color: #000000;
}

.nav-buttons p {
    display: flex;
    align-items: center;
}

     .form-progress-bar::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0px;
    right: 0px;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.form-progress-bar::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 0px;
    height: 2px;
    background: #004E83;
    z-index: 2;
    transition: width 0.4s ease;
    width: 0%;
}
        .form-progress-bar.step-2::after {
            width: calc(100% - 0px);
        }

        .progress-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            z-index: 3;
            flex: 1;
        }

.progress-step.active .step-number {
    background: #004E83;
    border-color: #0066cc;
    color: white;
}
        .step-label {
            font-size: 18px;
            color: #999;
            text-align: center;
            font-weight: 500;
            margin-top: 8px;
        }

        .progress-step.active .step-label {
            color: #000000;
            font-weight: 600;
        }

.form-progress-bar p {
    margin-bottom: 0px;
}


/* Email input */
.newsletter-pill input[type="email"] {
    flex: 1;
    border: none !important;
    outline: none;
    padding: 14px 18px;
    font-size: 18px;
    border-radius: 50px;
    background: transparent;
}

/* Remove CF7 defaults */
.newsletter-pill .wpcf7-form-control-wrap {
    flex: 1;
}
.newsletter-pill input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 100%;
    border-radius: 50px;
    background-color: #000000;
    margin-top: 10px;
    color: #ffffff;
    font-size: 15px;
    padding: 11px;
    border: 1px solid #40BBF9;
}

.newsletter-pill.blogs-single-news {
    margin-bottom: 0px;
}

/* Button hover effect */
.newsletter-pill input[type="submit"]:hover {
    background: #1e7cff;
    color: #fff;
}

/* Mobile fix – keep layout tight */
@media (max-width: 480px) {
    .newsletter-pill input[type="submit"] {
        padding: 8px 18px;
        font-size: 16px;
    }

    .newsletter-pill input[type="email"] {
        font-size: 16px;
        padding: 12px 14px;
    }
}

.blogs-single-news input[type="email"] {
    color: #ffffff;
    flex: 1;
    outline: none !important;
    padding: 5px 8px 8px 18px !important;
    font-size: 12px;
    line-height: 15px !important;
    border-radius: 50px !important;
    background: #161616 !important;
    border: 2px solid #333333 !important;
    height: 40px;
}

.newsletter-pill p {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.newsletter-pill .wpcf7-form-control-wrap {
    width: 70%;
}

.newsletter-pill .wpcf7-form-control.wpcf7-submit {
    width: 30% !important;
    margin-top: 0px !important;
}

/* PLACEHOLDER */
.blogs-single-news input[type="email"]::placeholder{
    color: #9a9a9a;
    opacity: 1; /* force visibility */
}

/* HOVER */
.blogs-single-news input[type="email"]:hover{
    border-color: #555555 !important;
}

/* FOCUS */
.blogs-single-news input[type="email"]:focus{
    border-color: #ffffff !important;
    background: #161616 !important;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.15);
}

/* ACTIVE */
.blogs-single-news input[type="email"]:active{
    border-color: #ffffff !important;
}

/* REMOVE YELLOW AUTOFILL BULLSHIT (Chrome) */
.blogs-single-news input[type="email"]:-webkit-autofill{
    -webkit-text-fill-color: #ffffff !important;
    -webkit-box-shadow: 0 0 0px 1000px #161616 inset !important;
}


.image-marquee-container {
            width: 100%;
            overflow: hidden;
            padding: 0px 0;
        }

        .image-marquee-content {
            display: flex;
            animation: scroll 20s linear infinite;
        }

.image-marquee-content img {
    height: 400px !important;
    width: 424px;
    margin: 0 15px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.blogs-single-news br {
    display: none;
}

.newsletter-pill input[type="submit"]:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}
.blogs-single-news p {
    margin: 0px;
}
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .image-marquee-content:hover {
            animation-play-state: paused;
        }


@media (min-width: 993px) {
    .ast-separate-container #primary, .ast-separate-container.ast-left-sidebar #primary, .ast-separate-container.ast-right-sidebar #primary {
        margin: 0em 0 !important;
        padding: 0;
    }
}

.auto-rotate {
    display: inline-block;
    width: auto;
    max-width: 100%;
    
    animation: spin 10s linear infinite;

    transform-origin: center center;
    transform-box: fill-box;
}

.auto-rotate:hover {
    animation-play-state: paused;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.pagenot-heading .elementor-heading-title {
    display: flex;
    gap: 13px;
    align-items: center;
}

.color-whit .tech-item {
    color: white;
    font-size: 26px;
}
.marquee-container-black .marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgb(0 0 0), transparent);
}

.marquee-container-black .marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgb(0 0 0), transparent);
}

.single-blogs-tags .elementor-post-info__terms-list-item {
    background-color: #E6F1F8;
    color: #000000 !important;
    border-radius: 50px;
    padding: 9px 18px;
    line-height: 50px;
}

.elementor-toc__list-wrapper {
    list-style: none;
    padding: 0;
    margin: 0px;
}

.elementor-icon-list-item a {
    text-decoration: none !important;
}

a {
    text-decoration: none !important;
}

@media (min-width: 1201px) {
.ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single, .ast-separate-container .ast-author-box, .ast-separate-container .ast-404-layout-1, .ast-separate-container .no-results
 {
        padding: 0em !important;
    }
}

.ast-separate-container #primary {
    padding: 0em 0;
    margin: 0;
    border: 0;
}

@media (max-width: 544px) {
    .ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single, .ast-separate-container .comments-title, .ast-separate-container .ast-archive-description {
        padding: 0px;
    }
}

a.elementor-post-info__terms-list-item {
    text-decoration: none !important;
}
.tagsmeta .elementor-post-info__terms-list-item {
    background-color: #0000004D;
    padding: 7px 15px;
    border: 1px solid #FFFFFF26;
    backdrop-filter: blur(40px);
    border-radius: 50px;
}
h1.entry-title {
    display: none !important;
}


.entry-content .wp-audio-shortcode, .entry-content .wp-embedded-audio, .entry-content .wp-embedded-video, .entry-content .wp-video, .entry-content p {
    margin-bottom: 0px;
}


.post-tags-buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: #E6F1F8;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: capitalize;
    transition: all 0.2s ease;
}

.tag-btn:hover{
    background: black;
    color: #fff;
}


.portfolio-wireframe {
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between rows */
  overflow: hidden;
}

.portfolio-wireframe .image-marquee-container {
  overflow: hidden;
  width: 100%;
}

.portfolio-wireframe .image-marquee {
  display: flex;
  gap: 20px;
  animation: marquee-left 20s linear infinite;
}

.portfolio-wireframe .image-marquee-container.right .image-marquee {
  animation: marquee-right 20s linear infinite;
}

/* Scroll Left */
@keyframes marquee-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Scroll Right */
@keyframes marquee-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.portfolio-wireframe .image-marquee img {
  height: 300px; /* adjust size */
  flex-shrink: 0;
}

        /* Process Cards */
        .portfolio-process-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

 .portfolio-process-card {
    background: #1F1F1F; /* default background */
    border-radius: 40px;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #333333; /* default border */
}

/* Hover effect */
.portfolio-process-card:hover {
    background: linear-gradient(150.49deg, #000000 0.12%, #0068AD 47.9%, #40BBF9 82.85%, #CBFAF8 112.54%);
    border: 1px solid #247FD1;
}


        .portfolio-process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #004e92 0%, #0077be 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .portfolio-process-card:hover::before {
            opacity: 1;
        }

        .portfolio-process-card > * {
            position: relative;
            z-index: 1;
        }

       .portfolio-card-icon {
    width: 62px;
    height: 62px;
    border-radius: 50px;
    border: 1px solid #545454;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: all 0.4s ease;
}

.portfolio-card-icon img {
    width: 25px;
}


        .portfolio-process-card:hover .portfolio-card-icon {
                border: 1px solid white;

        }

        .portfolio-card-icon svg {
            width: 20px;
            height: 20px;
            stroke: #fff;
        }

      .portfolio-card-title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 29px;
    transition: all 0.4s ease;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

        .portfolio-card-steps {
    list-style: none;
    margin: 0px;
}
.portfolio-card-step {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    background: #333333;
    border-radius: 50px;
    color: white;
    font-size: 18px;
    transition: all 0.4s ease;
}

/* Set widths for each step */
.portfolio-card-step:nth-child(1) { width: 100%; }
.portfolio-card-step:nth-child(2) { width: 90%; }
.portfolio-card-step:nth-child(3) { width: 80%; }
.portfolio-card-step:nth-child(4) { width: 70%; }
.portfolio-card-step:nth-child(5) { width: 60%; }
        .portfolio-process-card:hover .portfolio-card-step {
            background: rgba(255, 255, 255, 0.15);
        }

.portfolio-step-number {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 14px;
    margin-right: 12px;
    transition: all 0.4s ease;
}

        .portfolio-process-card:hover .portfolio-step-number {
            background: #fff;
            color: #0077be;
        }

        /* Approach Section */
        .portfolio-approach-section {
            background: #000;
            color: #fff;
            padding: 80px 20px 0;
        }

        .portfolio-approach-header {
            display: grid;
            grid-template-columns: 200px 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .portfolio-approach-header h2 {
            font-size: 48px;
            font-weight: 400;
        }

        .portfolio-approach-description {
            max-width: 700px;
            font-size: 16px;
            line-height: 1.8;
            color: #ccc;
        }

        /* Marquee Section */
        .portfolio-marquee-wrapper {
            overflow: hidden;
            padding: 30px 0;
            position: relative;
        }

        .portfolio-marquee {
            display: flex;
            gap: 30px;
            animation: scroll 30s linear infinite;
        }

        .portfolio-marquee-item {
            flex-shrink: 0;
            background: #1a1a1a;
            border-radius: 15px;
            padding: 20px;
            min-width: 300px;
            height: 200px;
        }

        .portfolio-marquee.portfolio-marquee-reverse {
            animation: scrollReverse 30s linear infinite;
        }

.gradient-btn {
    position: relative;
    padding: 10px 26px;
    width: 100%;
    font-size: 18px;
    color: #0064A7;
    font-family: 'SF Pro Display';
    background: #ffffff;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    height: 44px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gradient-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 1px;
    background: linear-gradient(
        90deg,
        #0842AA 0%,
        #40BBF9 25%,
        #40BBF9 70%,
        #0842AA 100%
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.gradient-btn:hover {
    background: #000;
    color: #fff;
}




  /* ==============================================
     1. PRIMARY LINK (White -> Black)
     ==============================================
  */
 .btn-primary-dau {
    position: relative;
    width: 150px;
    height: 46px;
    cursor: pointer;
    background: #ffffff;
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 500ms cubic-bezier(0.3, 0, 0.9, 1);
    box-shadow: inset 0 0 0 2px transparent;
    border: none;
    outline: none;
}

  .btn-primary-dau:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 0 2px #000000; /* Hover: Black border */
  }

  /* Slide-up Black Background */
  .btn-primary-dau::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000000;
    transform: translateY(100%);
    transition: transform 500ms cubic-bezier(0.3, 0, 0.9, 1);
    z-index: 1;
  }

  /* Masked Gradient Border (Normal State) */
  .btn-primary-dau::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(90deg, #0842AA 0%, #40BBF9 24.52%, #40BBF9 70.37%, #0842AA 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    transition: transform 500ms cubic-bezier(0.3, 0, 0.9, 1);
  }

  .btn-primary-dau:hover::before { transform: translateY(0); }
  .btn-primary-dau:hover::after { opacity: 0; }

 .btn-primary-dau span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    font-family: 'SF Pro Display';
    z-index: 3;
    transition: transform 500ms cubic-bezier(0.3, 0, 0.9, 1), color 400ms cubic-bezier(0.8, 0, 0.9, 1);
}

.btn-primary-dau .top {
    color: #0064A7;
    transform: translateY(0);
}  .btn-primary-dau .bottom { color: #ffffff; transform: translateY(100%); }
  .btn-primary-dau:hover .top { transform: translateY(-100%); }
  .btn-primary-dau:hover .bottom { transform: translateY(0); }


  /* ==============================================
     2. SECONDARY LINK (Black -> White)
     ==============================================
  */
  .btn-secondary-dau {
    position: relative;
    width: 170px;
    height: 54px;
    cursor: pointer;
    background: #000000; /* Normal: Black BG */
    border-radius: 100px;
    overflow: hidden;
    display: flex; /* Required for <a> to behave like a button */
    align-items: center;
    justify-content: center;
    text-decoration: none; /* Removes link underline */
    transition: transform 600ms cubic-bezier(0.8, 0, 0.18, 1);
    
    /* Prepare for black border on hover */
    box-shadow: inset 0 0 0 2px transparent;
    border: none;
    outline: none;
  }

  .btn-secondary-dau:hover {
    transform: scale(1.02);
    box-shadow: inset 0 0 0 2px #000000; /* Hover: Black border */
  }

  /* Slide-up White Background */
  .btn-secondary-dau::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: translateY(100%);
    transition: transform 600ms cubic-bezier(0.8, 0, 0.18, 1);
    z-index: 1;
  }

  /* Masked Gradient Border (Normal State) */
 .btn-secondary-dau::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 2px;
    background: linear-gradient(90deg, #c2c2c2 0%, #40BBF9 24.52%, #40BBF9 70.37%, #c2c2c2 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 2;
    transition: opacity 600ms cubic-bezier(0.8, 0, 0.18, 1);
}

  .btn-secondary-dau:hover::before { transform: translateY(0); }
  .btn-secondary-dau:hover::after { opacity: 0; }

  /* Text Logic */
  .btn-secondary-dau span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    font-family: 'SF Pro Display';
    z-index: 3;
    transition: transform 600ms cubic-bezier(0.8, 0, 0.18, 1), color 600ms cubic-bezier(0.8, 0, 0.18, 1);
  }

  .btn-secondary-dau .top { color: #ffffff; transform: translateY(0); }
.btn-secondary-dau .bottom {
    color: #0064A7;
    transform: translateY(100%);
}  .btn-secondary-dau:hover .top { transform: translateY(-100%); }
  .btn-secondary-dau:hover .bottom { transform: translateY(0); }


@media (max-width: 768px) {

.tech-item {
    font-weight: 500;
    font-size: 15px !important;
    font-family: 'SF Pro Display';
    color: #003051;
    padding: 0 14px;
    text-transform: uppercase;
    letter-spacing: 0px;
}
    
.btn-secondary-dau span {
    font-size: 14px;
}
    
.btn-primary-dau span {
    font-size: 14px;
}
    
.btn-secondary-dau {
    position: relative;
    height: 42px;
}
    
.btn-secondary-dau {
    position: relative;
    height: 42px;
}
}


.contact-btn {
    width: 180px;
}
.dau-btn-large {
    width: 184px;
    height: 54px;
    margin-left: auto;
}

.dau-btn-large span {
    font-size: 21px;
    height: 56px;
    width: 183px;
}

.reel-carosal {
    height: 450px;
    overflow: hidden; /* REQUIRED for radius to work */
}

.reel-carosal video {
    width: 100%;
    height: 450px !important;
    object-fit: cover !important;
    border-radius: 0px;
}




/* Mobile responsive styles */
@media (max-width: 768px) {
    
    .brands-logos .e-n-tabs-heading {
        width: -webkit-fill-available;
        margin: auto;
    }
    
    .reel-carosal {
    height: 300px;
    overflow: hidden; /* REQUIRED for radius to work */
}

.reel-carosal video {
    width: 100%;
    height: 300px !important;
    object-fit: cover !important;
    border-radius: 0px;
}

    
  .form-progress-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 15px 10px;
  }

  .progress-step {
    display: flex;
    align-items: center;
    position: relative;
  }

  .progress-step p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 10px 16px;
    background: #fff;
    border: 2px solid #1e5a8e;
    border-radius: 25px;
    white-space: nowrap;
  }
    
.btn-next, .btn-previous, .btn-submit {
    padding: 5px 23px;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    /* background: #000; */
    color: #0066cc;
    height: 38px;
    font-size: 16px;
}

  .progress-step .step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #1e5a8e;
    color: white;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
    order: -1;
  }

  .progress-step .step-label {
    color: #1e5a8e;
    font-weight: 600;
    font-size: 12px;
  }

  .progress-step.active p {
    background: #1e5a8e;
    border-color: #1e5a8e;
  }

  .progress-step.active .step-number {
    background: white;
    color: #1e5a8e;
  }

  .progress-step.active .step-label {
    color: white;
  }

  .progress-step:not(:last-child)::after {
    content: '';
    width: 20px;
    height: 2px;
    background: #1e5a8e;
    margin: 0 -2px;
  }

  .progress-step:first-child p {
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
  }

  .progress-step:last-child p {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
  }
    
    .form-progress-bar::before {
    display: none;
}
    
    .form-progress-bar::after {
        display: none;
}
    
    .progress-step:not(:last-child)::after {
          display: none;
    }
    
}

@media (max-width: 480px) {
    .interest-checkbox .wpcf7-list-item label span {
    padding: 5px 13px;
    font-size: 16px;
    margin-bottom: 15px;
}
    
.btn-next, .btn-previous, .btn-submit {
    padding: 5px 23px;
    cursor: pointer;
    border: 0;
    border-radius: 50px;
    /* background: #000; */
    color: #0066cc;
    height: 38px;
    font-size: 16px;
}
.form-step.contact_form-box {
        margin-top: 1rem !important;
        width: 90%;
        margin: auto;
    }
h3.heading-cf7 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #000000;
    font-weight: 500;
    margin-left: 0px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}
    
.contact_form-box label, .contact_form-box legend {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1px;
    line-height: 22px;
    font-family: 'SF Pro Display';
    display: block;
}
    
.contact_form-box input[type=email], .contact_form-box input[type=number], .contact_form-box input[type=password], .contact_form-box input[type=reset], .contact_form-box input[type=search], .contact_form-box input[type=tel], .contact_form-box input[type=text], .contact_form-box input[type=url], .contact_form-box select, .contact_form-box textarea {
    color: #000000;
    padding: 8px 0px !important;
    font-size: 16px;
    height: 35px;
    margin-top: 0px;
}
    
.form-progress-bar {
        padding: 0px 0px;
        width: 90%;
        margin: auto;
        margin-left: 5px;
    }

  .progress-step p {
    padding: 8px 12px;
    gap: 6px;
  }

    .progress-step .step-number {
        width: 24px;
        padding: 4px 0px !important;
        height: 24px;
        line-height: 6px;
        font-size: 12px;
    }
.step-number {
    margin-top: 0;
}
 .progress-step .step-label {
        font-size: 14px;
        margin: 0px;
    }

  .progress-step:not(:last-child)::after {
    width: 15px;
  }
    
img.brand-logo {
    width: 59px;
}
}



.e-n-tabs-heading.e-n-tabs-heading.e-n-tabs-heading.e-n-tabs-heading {
    overflow-x: auto;
    /* enable horizontal scrolling */
    display: flex;
    flex-wrap: nowrap;
    justify-content: start;
}

.e-n-tabs-heading>.e-n-tab-title {
    white-space: nowrap;
    margin-bottom: 0px !important;
}

.e-n-tabs-content .e-n-tab-title {
    display: none;
    /* don't display mobile tab titles */
    margin-bottom: 0;
}

/* Desktop scroll bar styling, if you want the horizontal scroll on desktop as well */
@media (min-width:1025px) {
    .e-n-tabs-heading::-webkit-scrollbar-track {
        background-color: #dedede;
    }

    .e-n-tabs-heading::-webkit-scrollbar {
        height: 8px;
    }

    .e-n-tabs-heading::-webkit-scrollbar-thumb {
        background-color: #aeaeae;
    }
}

/* optional: make the tabs titles sticky */
.e-n-tabs-heading {
    position: sticky;
    top: 0;
    z-index: 9;
    background-color: #fff;
}


.ast-article-single figure, .ast-article-single img:not(figure img) {
    box-shadow: none !important;
}




/* Reset for portfolio component */
.formate-portofolio * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Container */
.formate-portofolio {
    background: #ffffff;
    color: #000000;
    width: 100%;
    overflow: hidden;
}

.formate-portofolio-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px 0px 80px 0px;
}

.formate-portofolio-text {
    font-size: 25px;
    line-height: 42px;
    color: #333333;
    font-weight: 400;
    width: 80%;
}

/* Color Blocks Section */
.formate-portofolio-colors {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    width: 100%;
}

.formate-portofolio-color-block {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
}


.formate-portofolio-color-name {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.2;
    font-family: var(--font-heading);
}

.formate-portofolio-color-code {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
    text-transform: uppercase;
}

.formate-portofolio-typography {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 0px;
}

.formate-portofolio-typo-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.formate-portofolio-typo-title {
    font-size: 62px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
    margin: 0;
}

.formate-portofolio-typo-subtitle {
    font-size: 18px;
    color: #666666;
    font-weight: 400;
}

/* Divider Line */
.formate-portofolio-divider {
    height: 1px;
    background-color: #e0e0e0;
    margin: 1px 0;
    width: 100%;
}

.formate-portofolio-font-row {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    padding: 30px 100px;
    gap: 40px;
}

.formate-portofolio-font-weight {
    font-size: 48px;
    color: #000000;
    line-height: 1;
}

/* Font Weight Classes */
.formate-portofolio-font-regular {
    font-weight: 400;
}

.formate-portofolio-font-medium {
    font-weight: 500;
}

.formate-portofolio-font-bold {
    font-weight: 700;
}

/* Font Sample Text */
.formate-portofolio-font-sample {
    font-size: 32px;
    color: #000000;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* Error Message */
.formate-portofolio-error {
    padding: 20px;
    background: #fee;
    border-left: 4px solid #c00;
    color: #c00;
    font-size: 16px;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .formate-portofolio-intro,
    .formate-portofolio-typography {
        padding: 60px 40px;
    }
    
    .formate-portofolio-typo-title {
        font-size: 56px;
    }
    
    .formate-portofolio-font-weight {
        font-size: 40px;
    }
    
    .formate-portofolio-font-sample {
        font-size: 28px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    
    .portfolio-wireframe .image-marquee img {
    height: 120px;
    flex-shrink: 0;
}
    
    .approach-title {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    width: 100% !important;
    color: white;
}
    
    .approach-description {
    width: 100% !important;
}
    .formate-portofolio-colors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .formate-portofolio-color-block {
        height: 350px;
        padding: 30px;
    }
    
    .formate-portofolio-color-name {
        font-size: 24px;
    }
    
    .formate-portofolio-color-code {
        font-size: 16px;
    }
    
    .formate-portofolio-font-row {
        grid-template-columns: 1fr;
        gap: 9px;
        padding: 20px 0;
    }

    .formate-portofolio-intro,
    .formate-portofolio-typography {
        padding: 40px 30px;
    }

    .formate-portofolio-text {
        font-size: 18px;
    }

    .formate-portofolio-typo-title {
        font-size: 48px;
    }
    
    .formate-portofolio-typo-subtitle {
        font-size: 14px;
    }
    
    .formate-portofolio-font-weight {
        font-size: 26px;
    }
    
    .formate-portofolio-font-sample {
        font-size: 18px;
    }
    
    .formate-portofolio-divider {
        margin: 1px 0;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .formate-portofolio-colors {
        grid-template-columns: 1fr;
    }
    
    .formate-portofolio-typography {
    margin-top: 2rem;
   }
       .formate-portofolio-intro, .formate-portofolio-typography {
        padding: 0px 20px;
    }

    
    .formate-portofolio-typo-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}
       .formate-portofolio-text {
        font-size: 16px;
        line-height: 27px;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    .formate-portofolio-typo-title {
        font-size: 36px;
    }
    
       .formate-portofolio-color-block {
        height: 140px;
        padding: 20px;
    }
}




/* Portfolio Approach Marquee Section */
.approach-section {
    /* padding: 80px 20px; */
    margin: 0 auto;
}

.approach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    gap: 40px;
}


.approach-title {
    flex-shrink: 0;
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 400;
    width: 30%;
    color: white;
}

.approach-description {
     font-family: "SF Pro Display", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #B0B0B0;
    width: 70%;
    margin-bottom: 0px;
}

.portfolio-wireframe {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.image-marquee-container.left .image-marquee {
    animation: scrollLeft 40s linear infinite;
}

.image-marquee-container.right .image-marquee {
    animation: scrollRight 40s linear infinite;
}

.image-marquee {
    display: flex;
    gap: 24px;
    width: fit-content;
}


@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.image-marquee-container:hover .image-marquee {
    animation-play-state: paused;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .approach-section {
        padding: 0px 20px;
    }
    
   .approach-header {
        flex-direction: column;
        margin-bottom: 30px;
        gap: 10px;
    }

    .approach-title {
        font-size: 42px;
    }

    .approach-description {
        font-size: 16px;
    }

    .image-marquee img {
        height: 200px;
    }
    
    .portfolio-process-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 0px;
}
    
.portfolio-card-title {
    font-size: 18px;
    margin-bottom: 22px;
}

.portfolio-card-icon {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    border: 1px solid #545454;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 11px;
    transition: all 0.4s ease;
}

.portfolio-process-card {
    background: #1F1F1F;
    border-radius: 18px;
    padding: 20px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid #333333;
}

.portfolio-card-step {
    display: flex;
    align-items: center;
    padding: 6px 10px;
    margin-bottom: 8px;
    background: #333333;
    border-radius: 49px;
    color: white;
    font-size: 15px;
    transition: all 0.4s ease;
}

.portfolio-step-number {
    width: 24px;
    height: 24px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    line-height: 14px;
    margin-right: 12px;
    transition: all 0.4s ease;
}
}

@media (max-width: 480px) {
    .approach-title {
        font-size: 32px;
    }

    .image-marquee img {
        height: 150px;
    }
}



/* Portfolio Challenge & Goal - Frontend Styles */
/* File: portfolio-challenge-goal.css */

.pcg-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Challenge Section */
.pcg-challenge-section {
    padding: 5rem 0px;
    background: #fff;
    width: 1400px;
    margin: auto;
}

.pcg-challenge-header {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 60px;
    justify-content: space-between;
}

.pcg-challenge-title {
    font-size: 52px;
    font-weight: 400;
    white-space: nowrap;
    color: black;
}
.pcg-challenge-subtitle {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
}

.pcg-challenge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pcg-challenge-card {
    background: #E6F1F8;
    border-radius: 30px;
    padding: 25px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
}

.pcg-card-number {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 100px;
    line-height: 35px;
    font-family: var(--font-heading);
    color: black;
}

.pcg-card-title {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.3;
    color: black;
    font-family: var(--font-heading);
}

.pcg-card-description {
    font-size: 20px;
    color: #545454;
    font-family: 'SF Pro Display';
    line-height: 30px;
    letter-spacing: 0.41px;
}

/* Goal Section */
.pcg-goal-section {
    background: #000000;
    padding: 5rem 0px;
    color: #fff;
}
.pcg-goal-content {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    width: 1400px;
    margin: auto;
}

.pcg-goal-left {
    flex: 0 0 45%;
}

.pcg-goal-title {
    font-size: 52px;
    font-weight: 400;
    white-space: nowrap;
    color: white;
    margin-bottom: 1rem;
}
.pcg-goal-description {
    font-size: 24px;
    line-height: 1.6;
    width: 70%;
    color: #ccc;
}

.pcg-goal-right {
    flex: 1;
}

.pcg-goal-list {
    list-style: none;
}

.pcg-goal-item {
    border-bottom: 1px solid #8A8A8A;
    padding: 30px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.pcg-goal-item:hover {
    background: #1E6BB8;
    border-color: #1E6BB8;
    padding: 30px 28px;
    border-radius: 28px;
}

.pcg-goal-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    transition: margin 0.3s ease;
}

.pcg-goal-item:hover .pcg-goal-item-header {
    margin-bottom: 16px;
}

.pcg-goal-item:hover .pcg-goal-item-title {
    color: #fff;
}

.pcg-goal-item-number {
    font-size: 32px;
    color: #1E6BB8;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pcg-goal-item:hover .pcg-goal-item-number {
    color: #fff;
}

.pcg-goal-item-title {
    font-size: 32px;
    font-weight: 400;
    white-space: nowrap;
    color: #8A8A8A;
    line-height: 48px;
    font-family: 'SF Pro Display';
    letter-spacing: 0px;
}

.pcg-goal-item-description {
    font-size: 20px;
    line-height: 1.6;
    color: #fff;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    padding-left: 44px;
}

.pcg-goal-item-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0;
    transition: margin 0.3s ease;
}

.pcg-goal-item-number {
    font-size: 22px;
    color: #1E6BB8;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pcg-goal-item {
    border-bottom: 1px solid #8A8A8A;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
}

.pcg-goal-item:hover {
    background: #1E6BB8;
    border-color: #1E6BB8;
    padding: 15px;
    border-radius: 18px;
}


.pcg-goal-item:hover .pcg-goal-item-description {
    max-height: 200px;
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .pcg-challenge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pcg-goal-content {
        flex-direction: column;
        gap: 20px;
        width: auto;
    }

    .pcg-goal-left {
        flex: 1;
    }
}

@media (max-width: 768px) {
   .pcg-challenge-header {
        flex-direction: column;
        gap: 10px;
        align-items: baseline;
    }
    
    .pcg-challenge-subtitle {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    max-width: auto;
}
    
    .pcg-challenge-card {
    background: #E6F1F8;
    border-radius: 16px;
    padding: 25px;
    min-height: auto;
    display: flex;
    flex-direction: column;
}
    
    .pcg-card-description {
    font-size: 16px;
    color: #545454;
    font-family: 'SF Pro Display';
    line-height: 23px;
    letter-spacing: 0.41px;
}
    .pcg-card-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 6px;
    line-height: 1.3;
    color: black;
    font-family: var(--font-heading);
}
    
    .pcg-card-number {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 35px;
    font-family: var(--font-heading);
    color: black;
}
    
    .pcg-challenge-header {
    margin-bottom: 20px;
}
    
    .pcg-goal-item-title {
    font-size: 20px;
    font-weight: 400;
    white-space: pre-wrap;
    color: #8A8A8A;
    line-height: 32px;
    letter-spacing: 0px;
}

    .pcg-challenge-grid {
        grid-template-columns: 1fr;
    }

       .pcg-challenge-section, .pcg-goal-section {
        padding: 40px 20px;
        width: auto;
    }

       .pcg-goal-title {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .pcg-goal-description {
    font-size: 16px;
    line-height: 1.6;
    width: 100%;
    color: #ccc;
}
    
    .pcg-goal-title {
        font-size: 32px;
    }

    .pcg-goal-item-description {
        padding-left: 0;
    }
}



/* Portfolio Outcome - Frontend Styles */
/* File: portfolio-outcome.css */

.pco-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Outcome Section */
.pco-outcome-section {
    background: #000;
    padding: 5rem 0px;
    color: #fff;
}

.pco-outcome-header {
    text-align: center;
    margin-bottom: 4rem;
}

.pco-outcome-title {
    font-size: 52px;
    font-weight: 400;
    color: white;
    margin-bottom: 13px;
    font-family: var(--font-heading);
}
.pco-outcome-description {
    font-size: 22px;
    line-height: 1.6;
    color: #B0B0B0;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.pco-outcome-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.pco-outcome-card {
    background: #1F1F1F;
    border-radius: 40px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 0px solid #333;
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.pco-outcome-card:hover {
    background: #252525;
    border-color: #444;
    transform: translateY(-2px);
}
.pco-outcome-card-number {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    color: #FFFFFF;
    width: 25%;
    font-family: var(--font-heading);
}

.pco-outcome-card-text {
    font-size: 18px;
    line-height: 31px;
    color: #FFFFFF;
    width: 70%;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pco-outcome-section {
        padding: 40px 20px;
    }
    
    .pco-outcome-description {
    font-size: 16px;
    line-height: 1.6;
    color: #B0B0B0;
    font-weight: 400;
    max-width: auto;
    margin: 0 auto;
}
    
    .pco-outcome-card {
    background: #1F1F1F;
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 0px solid #333;
    height: 180px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
    
    .pco-outcome-card-text {
    font-size: 16px;
    line-height: 26px;
    color: #FFFFFF;
    font-weight: 400;
    letter-spacing: 0.3px;
}
    .pco-outcome-header {
    text-align: left;
    margin-bottom: 2rem;
}

   .pco-outcome-title {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .pco-outcome-grid {
        grid-template-columns: 1fr;
    }
}


.job-popup-form .wpcf7-form p {
    margin-bottom: 20px;
}

.job-popup-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.job-popup-form input[type="text"],
.job-popup-form input[type="email"],
.job-popup-form input[type="tel"],
.job-popup-form input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s ease;
        margin-top: 10px;
}

.job-popup-form input[type="text"]:focus,
.job-popup-form input[type="email"]:focus,
.job-popup-form input[type="tel"]:focus {
    outline: none;
    border-color: #0066cc;
}

.job-popup-form input[type="submit"] {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.job-popup-form input[type="submit"]:hover {
    background-color: #0052a3;
}

.job-popup-form .wpcf7-form p:last-child {
    margin-bottom: 0;
}

.job-popup-form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 13px;
    margin-top: 5px;
}

.job-popup-form .wpcf7-response-output {
    padding: 15px;
    border-radius: 4px;
    margin-top: 20px;
}

.job-form-fields br {
    display: none;
}




/* ========================================
   What Breaks at Scale Section
   ======================================== */

.what-breaks-section {
    padding: 5rem 0px;
}

.what-breaks-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
}

.breaks-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

/* Left Content */
.breaks-left-content {
    padding-right: 40px;
}

.breaks-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 20px;
}
.breaks-description {
    font-size: 20px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 0px;
}

.breaks-description p {
    margin-bottom: 15px;
}

/* Right Content - List Items */
.breaks-right-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.breaks-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.breaks-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 20px;
    border-radius: 0px;
    transition: all 0.3s ease;
    border-bottom: 1px solid #545454;
    margin-bottom: 0px !important;
}
.breaks-item:not(:last-child) {
    margin-bottom: 16px;
}


.breaks-number {
    font-size: 28px;
    font-weight: 400;
    color: #0066cc;
    flex-shrink: 0;
    font-style: italic;
    min-width: 40px;
}

.breaks-item.highlight {
    background-color: #0066cc;
    border-color: #0066cc;
    border-radius: 20px;
    border-bottom: 2px solid #545454;
}

.breaks-item.highlight .breaks-text {
	color: white;
}

.breaks-item.highlight ..breaks-number {
	color: white;
}

.breaks-item:hover {
    background-color: #0066cc;
    border-color: #0066cc;
    border-radius: 20px;
    border-bottom: 2px solid #545454;
}

.breaks-item:hover .breaks-text {
    color: white;
}

.breaks-item:hover .breaks-number, .breaks-text {
    color: white;
}

.breaks-text {
    font-size: 24px;
    line-height: 1.4;
    color: #8A8A8A;
    font-weight: 400;
    margin: 0;
}

.breaks-item.highlight .breaks-number {
    color: white;
}
/* Responsive Design */
@media (max-width: 1024px) {
    .breaks-content-wrapper {
        gap: 40px;
    }
    
    .breaks-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .what-breaks-section {
        padding: 40px 20px;
    }
	
	.breaks-item.highlight {
    border-radius: 10px;
}
    
    .breaks-content-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .breaks-left-content {
        padding-right: 0;
    }
    
    .breaks-title {
        font-size: 32px;
    }
    
    .breaks-item {
        padding: 14px;
    }
    
    .breaks-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .breaks-title {
        font-size: 32px;
    }
	
	.breaks-description {
    font-size: 16px;
    line-height: 1.4;
}
    
    .breaks-number {
        font-size: 18px;
        min-width: 35px;
    }
    
    .breaks-text {
        font-size: 15px;
    }
}

/* ========================================
   SECTION 2: APPROACH/SOLUTIONS - GRID LAYOUT
   ======================================== */

.approach-section {
    padding: 5rem 0px;
    background-color: #000000;
    color: #ffffff;
}

.approach-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
}

.approach-main-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 60px;
}

/* Grid Layout */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.approach-card {
    background-color: #1F1F1F;
    border-radius: 30px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-height: 380px;
    transition: all 0.3s ease;
    border: 0px solid rgba(255, 255, 255, 0.1);
}

.approach-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 102, 204, 0.5);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.approach-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 6rem;
}

.approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-card-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
}

.approach-card-description {
    font-size: 18px;
    line-height: 1.6;
    color: #8A8A8A;
    margin: 0;
    flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .approach-section {
        padding: 40px 20px;
    }
    
    .approach-main-title {
        font-size: 32px;
        margin-bottom: 26px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .approach-card {
        padding: 30px;
        min-height: auto;
    }
    
    .approach-card-title {
        font-size: 32px;
    }
    
    .approach-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .approach-main-title {
        font-size: 32px;
    }
    
    .approach-card {
        padding: 24px;
    }
    
    .approach-card-title {
        font-size: 26px;
    }
    
    .approach-card-description {
        font-size: 16px;
    }
}


/* ========================================
   What We Refuse to Do Section
   ======================================== */

.refuse-section {
    padding: 5rem 0px;
}

.refuse-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.refuse-title {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 50px;
}

/* Grid Layout */
.refuse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* Card Styles */
.refuse-card {
    background-color: #E6F1F8;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.3s ease;
}

.refuse-card:hover {
    background-color: #E6F1F8;
    transform: translateY(-3px);
}

.refuse-number {
    font-size: 30px;
    font-weight: 400;
    color: #000000;
    line-height: 1;
    margin-bottom: 1rem;
}

.refuse-text {
    font-size: 23px;
    line-height: 1.4;
    color: #000000;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .refuse-title {
        font-size: 40px;
    }
    
    .refuse-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .refuse-section {
        padding: 40px 0px;
    }
    
    .refuse-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .refuse-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .refuse-card {
        padding: 18px;
    }
    
    .refuse-number {
        font-size: 28px;
    }
    
    .refuse-text {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .refuse-title {
        font-size: 32px;
    }
    
    .refuse-card {
        padding: 18px;
    }
    
    .refuse-number {
        font-size: 24px;
    }
    
    .refuse-text {
        font-size: 16px;
    }
}



/* ========================================
   Outcomes We Optimise For Section
   ======================================== */

.outcomes-section {
    padding: 5rem 0;
    background-color: #000000;
    color: #ffffff;
}

.outcomes-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
}

.outcomes-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 5rem;
}

/* Grid Layout */
.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.outcome-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.outcome-icon {
    width: 30px;
    height: 30px;
    color: #ffffff;
    flex-shrink: 0;
}

.outcome-icon svg {
    width: 100%;
    height: 100%;
}

.outcome-title {
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    font-family: 'SF Pro Display';
}

h3.outcome-title span {
    color: #8A8A8A;
}

.outcome-description {
    font-size: 16px;
    line-height: 1.5;
    color: #999999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
}

@media (max-width: 768px) {
   .outcomes-section {
        padding: 40px 20px;
    }
    
    .outcomes-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .outcome-title {
        font-size: 16px;
    }
    
    .outcome-description {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .outcomes-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .outcome-icon {
        width: 25px;
        height: 25px;
    }
    
    .outcome-title {
        font-size: 16px;
    }
    
    .outcome-description {
        font-size: 14px;
    }
}


/* ========================================
   SECTION 5: PROUD TO WORK WITH - LOGOS MARQUEE
   ======================================== */

.logos-section {
    padding: 4rem 0rem;
    overflow: hidden;
}

.logos-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0px;
}

.logos-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 60px;
    text-align: left;
}

/* Marquee Wrapper */
.logos-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade effect on edges */
.logos-marquee-wrapper::before,
.logos-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f5f5f5 0%, transparent 100%);
}

.logos-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f5f5f5 0%, transparent 100%);
}

/* Marquee Container */
.logos-marquee {
    display: flex;
    width: 100%;
}

/* Logos Track */
.logos-track {
    display: flex;
    align-items: center;
    gap: 60px;
    animation: marquee 40s linear infinite;
    width: fit-content;
}

/* Pause animation on hover */
.logos-marquee:hover .logos-track {
    animation-play-state: paused;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Logo Item */
.logo-item {
    flex-shrink: 0;
    width: 130px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0px;
    transition: all 0.3s ease;
}

.logo-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-item:hover img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
       .logos-section {
        padding: 30px 20px;
    }
    
    .logos-title {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .logos-track {
        gap: 0px !important;
        animation: marquee 30s linear infinite;
    }
    
    .logo-item {
        width: 140px;
        height: 60px;
        padding: 15px;
    }
    
    .logos-marquee-wrapper::before,
    .logos-marquee-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .logos-title {
        font-size: 28px;
    }
    
    .logos-track {
        gap: 6px !important;
        animation: marquee 25s linear infinite;
    }
    
    .logo-item {
        width: 100px;
        height: 50px;
        padding: 10px;
    }
    
    .logos-marquee-wrapper::before,
    .logos-marquee-wrapper::after {
        width: 30px;
    }
}



.tags-portfolio .elementor-post-info__terms-list-item {
    background-color: #E6F1F8;
    color: black;
    border: 1px solid #002E4D0F;
    backdrop-filter: blur(7px);
    margin-right: 0px;
    padding: 5px 10px;
    border-radius: 5px;
    line-height: 13px;
    font-size: 14px;
}

.line-clamp h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5; /* Adjust based on your design */
}

.ast-separate-container .ast-article-single:not(.ast-related-post), .ast-separate-container .error-404, .ast-separate-container .no-results, .single.ast-separate-container .site-main .ast-author-meta, .ast-separate-container .related-posts-title-wrapper, .ast-separate-container .comments-count-wrapper, .ast-box-layout.ast-plain-container .site-content, .ast-padded-layout.ast-plain-container .site-content, .ast-separate-container .ast-archive-description, .ast-separate-container .comments-area {
    border-radius: 20px !important;
}



    .ast-separate-container .ast-article-post, .ast-separate-container .ast-article-single, .ast-separate-container .ast-author-box, .ast-separate-container .ast-404-layout-1, .ast-separate-container .no-results {
        border-radius: 20px !important;
    }


/* ============================================
   SINGLE BLOG POST CONTENT - COMPLETE STYLING
   ============================================ */

/* Main Content Container */
.single-post .elementor-widget-theme-post-content,
.single-post .elementor-post__content {
    margin: 0 auto;
    padding: 0 20px;
    line-height: 1.8;
}

/* ============================================
   HEADINGS
   ============================================ */
.single-post .elementor-widget-theme-post-content h1 {
    font-size: 36px;
    line-height: 1.3;
    margin: 30px 0 20px;
    font-weight: 700;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content h2 {
    font-size: 30px;
    line-height: 1.4;
    margin: 20px 0 1px;
    font-weight: 700;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content h3 {
    font-size: 28px;
    line-height: 1.4;
    margin: 10px 0 1px;
    font-weight: 700;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content h4 {
    font-size: 24px;
    line-height: 1.5;
    margin: 10px 0 1px;
    font-weight: 600;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content h5 {
    font-size: 20px;
    line-height: 1.5;
    margin: 10px 0 1px;
    font-weight: 600;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content h6 {
    font-size: 18px;
    line-height: 1.6;
    margin: 10px 0 1px;
    font-weight: 600;
    text-align: left;
}

/* ============================================
   PARAGRAPHS & TEXT
   ============================================ */
.single-post .elementor-widget-theme-post-content p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 0px;
    text-align: left;
    /* font-family: 'SF Pro Display'; */
    color: #000000;
}

.single-post .elementor-widget-theme-post-content span {
    font-size: inherit;
    line-height: inherit;
}

.single-post .elementor-widget-theme-post-content strong,
.single-post .elementor-widget-theme-post-content b {
    font-weight: 700;
}

.single-post .elementor-widget-theme-post-content em,
.single-post .elementor-widget-theme-post-content i {
    font-style: italic;
}

/* ============================================
   LINKS
   ============================================ */
.single-post .elementor-widget-theme-post-content a {
    color: #0073aa;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.single-post .elementor-widget-theme-post-content a:hover {
    color: #005177;
}

/* ============================================
   LISTS
   ============================================ */
.single-post .elementor-widget-theme-post-content ul,
.single-post .elementor-widget-theme-post-content ol {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 20px;
    padding-left: 40px;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content ul li,
.single-post .elementor-widget-theme-post-content ol li {
    margin-bottom: 3px;
}

.single-post .elementor-widget-theme-post-content ul ul,
.single-post .elementor-widget-theme-post-content ol ol,
.single-post .elementor-widget-theme-post-content ul ol,
.single-post .elementor-widget-theme-post-content ol ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ============================================
   IMAGES
   ============================================ */
.single-post .elementor-widget-theme-post-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 10px auto;
    border-radius: 4px;
}

.single-post .elementor-widget-theme-post-content figure {
    margin: 10px 0;
    text-align: center;
}

.single-post .elementor-widget-theme-post-content figcaption {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-style: italic;
    text-align: center;
}

/* ============================================
   BLOCKQUOTES
   ============================================ */
.single-post .elementor-widget-theme-post-content blockquote {
    font-size: 19px;
    line-height: 1.7;
    margin: 30px 0;
    padding: 20px 30px;
    border-left: 4px solid #0073aa;
    background: #f9f9f9;
    font-style: italic;
    text-align: left;
}

.single-post .elementor-widget-theme-post-content blockquote p {
    margin: 0;
}

.single-post .elementor-widget-theme-post-content blockquote cite {
    display: block;
    margin-top: 10px;
    font-size: 15px;
    color: #666;
    font-style: normal;
}

/* ============================================
   TABLES
   ============================================ */
.single-post .elementor-widget-theme-post-content table {
    width: 100%;
    margin: 19px 0;
    border-collapse: collapse;
    border-spacing: 0;
    font-size: 16px;
    line-height: 1.6;
}

.single-post .elementor-widget-theme-post-content table th {
    background: #f5f5f5;
    font-weight: 700;
    font-size: 16px;
    padding: 4px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.single-post .elementor-widget-theme-post-content table td {
    padding: 8px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 14px;
    vertical-align: top;
}

.single-post .elementor-widget-theme-post-content table tr:nth-child(even) {
    background: #fafafa;
}

.single-post .elementor-widget-theme-post-content table tr:hover {
    background: #f0f0f0;
}

/* ============================================
   CODE & PRE
   ============================================ */
.single-post .elementor-widget-theme-post-content code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    padding: 2px 6px;
    background: #f4f4f4;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: #c7254e;
}

.single-post .elementor-widget-theme-post-content pre {
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    line-height: 1.6;
    padding: 20px;
    background: #2d2d2d;
    color: #f8f8f2;
    border-radius: 4px;
    overflow-x: auto;
    margin: 30px 0;
}

.single-post .elementor-widget-theme-post-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    font-size: 14px;
}

/* ============================================
   HORIZONTAL RULE
   ============================================ */
.single-post .elementor-widget-theme-post-content hr {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 40px 0;
}

/* ============================================
   BUTTONS & INPUTS
   ============================================ */
.single-post .elementor-widget-theme-post-content button,
.single-post .elementor-widget-theme-post-content input[type="submit"],
.single-post .elementor-widget-theme-post-content input[type="button"] {
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 4px;
    cursor: pointer;
}

.single-post .elementor-widget-theme-post-content input[type="text"],
.single-post .elementor-widget-theme-post-content input[type="email"],
.single-post .elementor-widget-theme-post-content textarea {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* ============================================
   DIVS & SECTIONS
   ============================================ */
.single-post .elementor-widget-theme-post-content div {
    text-align: left;
}

.single-post .elementor-widget-theme-post-content section {
    margin: 30px 0;
}

/* ============================================
   SMALL TEXT & SUBSCRIPT/SUPERSCRIPT
   ============================================ */
.single-post .elementor-widget-theme-post-content small {
    font-size: 14px;
}

.single-post .elementor-widget-theme-post-content sub,
.single-post .elementor-widget-theme-post-content sup {
    font-size: 12px;
}

/* ============================================
   DEFINITION LISTS
   ============================================ */
.single-post .elementor-widget-theme-post-content dl {
    margin: 20px 0;
}

.single-post .elementor-widget-theme-post-content dt {
    font-weight: 700;
    font-size: 17px;
    margin-top: 15px;
}

.single-post .elementor-widget-theme-post-content dd {
    font-size: 16px;
    margin-left: 20px;
    margin-bottom: 10px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 768px) {
    .single-post .elementor-widget-theme-post-content,
    .single-post .elementor-post__content {
        padding: 0px;
    }
    
    .single-post .elementor-widget-theme-post-content h1 {
        font-size: 30px;
    }
    
    .single-post .elementor-widget-theme-post-content h2 {
        font-size: 26px;
    }
    
    .single-post .elementor-widget-theme-post-content h3 {
        font-size: 23px;
    }
    
    .single-post .elementor-widget-theme-post-content h4 {
        font-size: 20px;
    }
    
    .single-post .elementor-widget-theme-post-content h5 {
        font-size: 18px;
    }
    
    .single-post .elementor-widget-theme-post-content h6 {
        font-size: 16px;
    }
    
    .single-post .elementor-widget-theme-post-content p,
    .single-post .elementor-widget-theme-post-content ul,
    .single-post .elementor-widget-theme-post-content ol {
        font-size: 16px;
    }
    
    .single-post .elementor-widget-theme-post-content table {
        font-size: 14px;
    }
    
    .single-post .elementor-widget-theme-post-content table th,
    .single-post .elementor-widget-theme-post-content table td {
        padding: 8px 10px;
        font-size: 14px;
    }
}

/* Mobile */
@media (max-width: 480px) {
	
	
.sumtics-inline-heading {
    font-family: 'SF Pro Display';
    margin-top: 0px;
    font-size: 18px !important;
    margin-bottom: 8px !important;
}
	
	
    .sumtics-button {
        padding: 1px 15px !important;
        border: none;
        border-radius: 6px !important;
        font-size: 10px !important;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        min-width: 82px !important;
        margin-bottom: 0rem !important;
        margin-top: 0px;
    }
	
	
    .single-post .elementor-widget-theme-post-content h1 {
        font-size: 26px;
    }
    
    .single-post .elementor-widget-theme-post-content h2 {
        font-size: 23px;
    }
    
    .single-post .elementor-widget-theme-post-content h3 {
        font-size: 20px;
    }
    
    .single-post .elementor-widget-theme-post-content h4 {
        font-size: 18px;
    }
    
    .single-post .elementor-widget-theme-post-content p,
    .single-post .elementor-widget-theme-post-content ul,
    .single-post .elementor-widget-theme-post-content ol {
        font-size: 15px;
    }
    
    .single-post .elementor-widget-theme-post-content blockquote {
        font-size: 17px;
        padding: 15px 20px;
    }
    
    .single-post .elementor-widget-theme-post-content table {
        font-size: 13px;
    }
    
    .single-post .elementor-widget-theme-post-content table th,
    .single-post .elementor-widget-theme-post-content table td {
        padding: 6px 8px;
        font-size: 13px;
    }
}



.sumtics-button {
    padding: 1px 15px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 100px;
    margin-bottom: 1rem;
    margin-top: 4px;
}

h3.sumtics-inline-heading {
    font-family: 'SF Pro Display';
    font-size: 25px !important;
    margin-bottom: 8px !important;
}

span.sumtics-button-label {
    color: white;
}


.sumtics-style-minimal .sumtics-button, .sumtics-button-minimal {
    background: #000000 !important;
    box-shadow: none !important;
    padding: 0px 15px !important;
}