*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:"Jost",sans-serif;
}
.container{
    width:92%;
    max-width:1250px;
    margin:auto;
}

/* ================= TOP BAR ================= */
.top-bar{
    background:#000;
    color:#fff;
    font-size:14px;
}
.top-bar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:6px 0;
}
.top-bar .left{
    display:flex;
    gap:25px;
}
.top-bar .left span{
    display:flex;
    align-items:center;
    gap:8px;
}
.top-bar .right{
    display:flex;
    gap:12px;
}
.top-bar .right a{
    width:34px;
    height:34px;
    border:1px solid #777;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s;
    text-decoration: auto;
}
.top-bar .right a:hover{
    background:#d18b00;
    border-color:#d18b00;
}

/* ================= HEADER ================= */
.header{
    background:#efefef;
    transition:.3s;
}
.header.sticky{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    z-index:999;
}
.header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}
.logo img{
    height:52px;
}

/* ================= NAV ================= */
.nav{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav li{
    position:relative;
}
.nav a{
    text-decoration:none;
    color:#000;
    font-weight:500;
}

/* ================= BUTTON ================= */
.btn{
    background:#d18b00;
    color:#fff;
    padding:12px 26px;
    border-radius:30px;
    text-decoration:none;
}

/* ================= MEGA MENU ================= */
/* PARENT */
.mega-parent {
    position: relative;
}

/* FIXED POSITIONING */
.mega-menu {
    position: absolute;
    left: 213%;
    transform: translateX(-50%);
    top: 110%; /* directly below */

    width: 1100px;
    background: #f3f3f7;
    padding: 20px 40px;
    border-radius: 20px;

    display: none;
    z-index: 999;
}

/* IMPORTANT: create hover bridge */
.mega-parent:hover .mega-menu {
    display: block;
}
/* REMOVE DEFAULT LINK STYLE */
.mega-column a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* HEADING LINKS */
.mega-column h4 a {
    display: inline-block;
    color: #1e4db7;
}

/* HOVER */
.mega-column ul li a:hover {
    color: #1e4db7;
}

/* CONTAINER */
.mega-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* COLUMN */
.mega-column {
    width: 33%;
}

/* HEADINGS */
.mega-column h4 {
    font-size: 18px;
    color: #1e4db7;
    margin-bottom: 15px;
    font-weight: 600;
}

/* SPACE BETWEEN GROUPS */
.mega-column h4.mt {
    margin-top: 25px;
}

/* LIST */
.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* LIST ITEM */
.mega-column ul li {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 15px;
    color: #333;
    margin-bottom: 12px;
    cursor: pointer;

    transition: 0.3s;
}

/* ICON */
.mega-column ul li i {
    width: 26px;
    height: 26px;
    background: #e3e6ff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 12px;
    color: #4b5cff;
}

/* HOVER EFFECT */
.mega-column ul li:hover {
    color: #1e4db7;
    transform: translateX(5px);
}

/* OPTIONAL SHADOW */
.mega-menu {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* ================= MOBILE ================= */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

@media(max-width:992px){

    .nav{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:20px 0;
        display:none;
    }
    .nav.active{
        display:flex;
    }

    .mega-menu{
        position:static;
        width:100%;
        display:none;
    }

    .mega-parent.active .mega-menu{
        display:block;
    }

    .mega-container{
        grid-template-columns:1fr;
    }

    .menu-toggle{
        display:block;
    }

    .btn{
        display:none;
    }
}

.site-footer {
    background: #ffffff;
    color: #000000;
    padding: 56px 0 0 0;
    font-size: 1.05rem;
    margin-top: 0;
}
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px 32px 32px;
    gap: 48px;
}
.footer-col {
    flex: 1 1 0;
    min-width: 180px;
    margin-right: 24px;
}
.footer-logo-col {
    min-width: 260px;
    margin-right: 48px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-logo {
  width: 186px;
  margin-top: -29px;
  margin-bottom: 30px;
}
.footer-company {
    margin-bottom: 18px;
    line-height: 1.6;
}
.footer-title {
    font-weight: 700;
    font-size: 1.18rem;
    margin-bottom: 12px;
    border-bottom: 1px solid #2361a9;
    padding-bottom: 6px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-links li i {
  margin-right: 10px;
  min-width: 20px; /* optional: helps align all icons neatly */
  font-size: 16px;
}
.footer-links a {
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #ffc638;
}
.footer-contact {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.01rem;
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 18px;
}
.footer-social a {
    color: #000000;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
}
.footer-social a:hover {
    color: #ffc638;
    transform: scale(1.15);
}
.footer-bottom {
    text-align: center;
    padding: 18px 0 12px 0;
    background: #0036aa;
    color: #fff;
    font-size: 1.01rem;
    border-top: 1px solid #2361a9;
    margin-top: 0;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom a:hover {
    color: #ffc638;
}
@media (max-width: 1000px) {
    .footer-main {
        flex-direction: column;
        gap: 18px;
        padding: 0 12px 18px 12px;
    }
    .footer-col, .footer-logo-col {
        margin-right: 0;
        min-width: 0;
        align-items: flex-start;
    }
    .footer-logo-col {
        margin-bottom: 18px;
    }
}
/* HERO */
.hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%;
    color: #fff;
}

/* VIDEO */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(5, 15, 30, 0.75); /* dark blue overlay */
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    max-width: 1084px;
    z-index: 2;
}

.hero h1 {
    font-size: 60px;
    line-height: 1.3;
    font-weight: 700;
}

.highlight {
    color: #d69200;
}

.hero p {
    margin-top: 20px;
    font-size: 18px;
    line-height: 1.9em;
    letter-spacing: 1px;
    color: #ffffff;
    font-family: "Heebo", sans-serif;
    margin-right: 192px;
}

/* BUTTONS */
.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn.primary {
    background: #d69200;
    color: #fff;
}

.btn.primary:hover {
    background: #b57c00;
}

.btn.secondary {
    border: 1px solid #fff;
    color: #fff;
}

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

/* FLOATING ICONS */
.floating-icons {
    position: absolute;
    right: 20px;
    bottom: 120px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.email { background: #1e40af; }
.whatsapp { background: #22c55e; }
.call { background: #2563eb; }

/* MOBILE */
@media (max-width: 768px) {

    .hero {
        padding: 0 20px;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 220px;
    }

    .floating-icons {
        right: 10px;
        bottom: 80px;
    }

    .icon {
        width: 45px;
        height: 45px;
    }
}
/* ANNOUNCEMENT BAR */
.announcement {
    width: 100%;
    background: #C78401;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 5;
}

/* MOVING TEXT */
.announcement-track {
    display: inline-flex;
    gap: 80px;
    padding: 12px 0;
    animation: scrollText 25s linear infinite;
}

.announcement-track span {
    font-size: 26px;
    font-weight: 700;
    text-transform: none;
    line-height: 1.3em;
    color: #FFFFFF;
}

/* ANIMATION */
@keyframes scrollText {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .announcement-track span {
        font-size: 14px;
    }

    .announcement-track {
        gap: 40px;
        animation-duration: 12s;
    }
}
.clients-section {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}
.container {
    max-width: 1300px;
    margin: auto;
}
.clients-container {
    max-width: 1200px;
    margin: auto;
}

/* Title */
.title {
    font-size: 45px;
    font-weight: 400;
    color: #111;
    line-height: 1.1em;
}

.title span {
    display: block;
    color: #0036AA;
    font-weight: 800;
    line-height: 1.1em;
}

/* Subtitle */
.subtitle {
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: #000000;
    font-size: 18px;
}

/* Slider */
.logo-slider {
    overflow: hidden;
    margin-top: 50px;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.logo-track {
    display: flex;
    width: 200%;
    animation: slideLogos 10s infinite;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

.slide img {
    width: auto;
    max-width: 1200px;   /* match your design width */
    height: auto;
    display: block;
}

/* Animation */
@keyframes slideLogos {
    0%   { transform: translateX(0); }
    45%  { transform: translateX(0); }

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

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

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }
}

.growth-section {
    position: relative;
    background: url("https://arccsdigitals.com/wp-content/uploads/2026/02/Bg-image.webp") center/cover no-repeat fixed;
    padding: 100px 40px;
    color: #fff;
}

.growth-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.growth-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: auto;
    gap: 40px;
}

/* LEFT */
.growth-left {
    width: 55%;
}

.growth-left h1 {
    font-size: 48px;
    line-height: 1.3;
}

.growth-left span {
    color: #f6a500;
}

.growth-left strong {
    display: block;
    color: #f6a500;
    margin-top: 10px;
}

.growth-left p {
    margin: 25px 0;
    color: #ddd;
    line-height: 1.6;
}

.growth-btn {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #fff;
    border-radius: 25px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

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

/* RIGHT GRID */
.growth-right {
    width: 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* CARDS */
.g-card {
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.g-card.dark {
    background: rgba(255,255,255,0.1);
}

.g-card.yellow {
    background: #f6a500;
    color: #fff;
}

.g-card.light {
    background: #fff;
    color: #000;
}

/* COUNTER FIX */
.g-card h2 {
    font-size: 48px;
    font-weight: 700;
}

.counter-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.plus {
    font-size: 40px;
    font-weight: 700;
}

/* STARS */
.stars {
    color: #f6a500;
    font-size: 18px;
}

/* LOGOS */
.brand-logo {
    width: 120px;
    margin-top: 10px;
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .growth-container {
        flex-direction: column;
    }

    .growth-left, .growth-right {
        width: 100%;
    }

    .growth-left h1 {
        font-size: 32px;
    }
}
.who-we-help {
    padding: 80px 0;
}

.who-we-help-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* LEFT SIDE */

.left-content {
    width: 45%;
}

.left-content h2 {
    font-size: 64px;
    font-weight: 400;
    color: #000;
    padding-bottom: 18px;
    border-bottom: 1px solid #bdbdbd;
    margin-bottom: 50px;
    line-height: 1.1;
}

.left-content h2 span {
    color: #0a3da8;
    font-weight: 700;
}

.video-box {
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
}

.video-box img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

/* RIGHT SIDE */

.right-content {
    width: 55%;
}

.top-boxes {
    display: flex;
    gap: 50px;
    margin-bottom: 70px;
}

.info-box {
    flex: 1;
}

.info-box h3,
.bottom-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    padding-bottom: 16px;
    border-bottom: 1px solid #cfcfcf;
    margin-bottom: 28px;
}

.info-box h4,
.bottom-box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #000;
}

.info-box p,
.bottom-box p {
    font-size: 20px;
    line-height: 1.8;
    color: #222;
    font-weight: 400;
}

.bottom-box {
    width: 100%;
}

/* =========================
   TABLET RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .who-we-help-container {
        flex-direction: column;
        gap: 50px;
    }

    .left-content,
    .right-content {
        width: 100%;
    }

    .top-boxes {
        gap: 30px;
    }

    .left-content h2 {
        font-size: 52px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {
    .who-we-help {
        padding: 60px 0;
    }

    .who-we-help-container {
        width: 92%;
        gap: 40px;
    }

    .left-content h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .top-boxes {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .info-box h3,
    .bottom-box h3 {
        font-size: 24px;
    }

    .info-box h4,
    .bottom-box h4 {
        font-size: 20px;
    }

    .info-box p,
    .bottom-box p {
        font-size: 18px;
        line-height: 1.7;
    }
}
/* =========================
   WHAT WE DO SECTION
========================= */

.what-we-do {
    background: #f5f5f5;
    padding: 80px 0;
    font-family: "Jost", sans-serif;
}

.what-we-do-container {
    width: 92%;
    max-width: 1400px;
    margin: auto;
}

/* TITLE */

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

.section-title h2 {
    font-size: 64px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-title h2 span {
    color: #0a3da8;
    font-weight: 700;
}

.section-title p {
    font-size: 24px;
    color: #333;
    max-width: 950px;
    margin: auto;
    line-height: 1.6;
}

/* SERVICES */

.services-wrapper {
    display: flex;
    gap: 0;
    overflow: hidden;
    background: #fff;
}

.service-card {
    width: 18%;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s ease;
    border-right: 1px solid #eee;
    overflow: hidden;
}

.service-card:last-child {
    border-right: none;
}

.service-card.active {
    width: 46%;
}

.service-content {
    padding: 40px 28px 30px;
}

.service-content h3 {
    font-size: 34px;
    font-weight: 700;
    color: #0a3da8;
    padding-bottom: 15px;
    border-bottom: 1px solid #999;
    margin-bottom: 20px;
    white-space: nowrap;
}

.service-content p {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    display: none;
}

.service-card.active .service-content p {
    display: block;
}

.service-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

/* MOBILE */

@media (max-width: 991px) {
    .services-wrapper {
        flex-direction: column;
    }

    .service-card,
    .service-card.active {
        width: 100%;
    }

    .section-title h2 {
        font-size: 44px;
    }

    .section-title p {
        font-size: 18px;
    }

    .service-content h3 {
        font-size: 26px;
        white-space: normal;
    }

    .service-content p {
        display: block;
        font-size: 18px;
    }

    .service-image img {
        height: 260px;
    }
}
/* =========================
   WHY ARCCS DIGITALS SECTION
========================= */

.why-arccs {
    padding: 80px 0;
    font-family: "Jost", sans-serif;
}

.why-arccs-container {
    width: 92%;
    max-width: 1500px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT SIDE */

.why-video {
    width: 52%;
}

.video-thumbnail {
    position: relative;
    width: 100%;
}

.video-thumbnail img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* PLAY BUTTON */

.play-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 150px;
    background: #0a3da8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 42px;
    color: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.play-btn:hover {
    transform: translateX(-50%) scale(1.05);
}

/* RIGHT SIDE */

.why-content {
    width: 48%;
}

.why-content h2 {
    font-size: 64px;
    font-weight: 400;
    margin-bottom: 40px;
    color: #000;
    line-height: 1.1;
}

.why-content h2 span {
    color: #0a3da8;
    font-weight: 700;
}

.point {
    margin-bottom: 28px;
}

.point h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c88400;
    margin-bottom: 8px;
}

.point p {
    font-size: 19px;
    line-height: 1.7;
    color: #222;
    margin: 0;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1024px) {
    .why-arccs-container {
        flex-direction: column;
        gap: 80px;
    }

    .why-video,
    .why-content {
        width: 100%;
    }

    .why-content h2 {
        font-size: 52px;
    }

    .play-btn {
        width: 130px;
        height: 130px;
        font-size: 36px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {
    .why-arccs {
        padding: 60px 0;
    }

    .why-arccs-container {
        width: 92%;
        gap: 70px;
    }

    .why-content h2 {
        font-size: 38px;
        margin-bottom: 30px;
    }

    .point h3 {
        font-size: 22px;
    }

    .point p {
        font-size: 17px;
        line-height: 1.6;
    }

    .play-btn {
        width: 100px;
        height: 100px;
        font-size: 28px;
        bottom: -30px;
    }
}
/* SECTION */
.brand-cta-section {
    position: relative;
    padding: 100px 80px;
    color: #fff;
    background: url('https://arccsdigitals.com/wp-content/uploads/2026/02/01-3.webp') no-repeat center/cover;
    background-attachment: fixed;
}

/* Overlay for dark gradient bottom */
.brand-cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7));
    z-index: 1;
}

/* CONTAINER */
.brand-cta-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* LEFT CONTENT */
.brand-cta-content {
    max-width: 700px;
}

.brand-cta-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.brand-cta-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
}

/* BUTTON */
.brand-btn {
    background: #1e4ed8;
    color: #fff;
    padding: 16px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.brand-btn:hover {
    background: #163bb5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .brand-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-cta-action {
        margin-top: 20px;
    }

    .brand-cta-content h1 {
        font-size: 36px;
    }
}
.outcomes-section {
    background: #f4f4f4;
    padding: 80px 40px;
    text-align: center;
}

.outcomes-container {
    max-width: 1300px;
    margin: auto;
}

/* TITLE */
.outcomes-title {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
}

.outcomes-title span {
    color: #1e4ed8;
    font-weight: 700;
}

/* SUBTITLE */
.outcomes-subtitle {
    margin-top: 15px;
    font-size: 16px;
    color: #333;
}

/* GRID */
.outcomes-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

/* CARD */
.outcomes-card {
    position: relative;
    border-radius: 12px;
    overflow: visible; /* IMPORTANT */
}

.outcomes-card img {
    width: 100%;
    border-radius: 12px;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* PLAY BUTTON */
.outcomes-play-btn {
    position: absolute;
    left: 50%;
    bottom: -32px; /* pushes it outside like design */
    transform: translateX(-50%);
    
    width: 70px;
    height: 70px;
    background: #1e4ed8;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
}

.outcomes-play-btn::before {
    content: "";
    width: 0;
    height: 0;

    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;

    margin-left: 4px; /* small push for perfect centering */
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .outcomes-title {
        font-size: 30px;
    }
}
/* SECTION */
.industries-section {
    background: #123ea8;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.industries-container{
    max-width: 1300px;
    margin: auto;
}
/* TITLE */
.industries-title {
    font-size: 42px;
    font-weight: 700;
}

.industries-title span {
    color: #f59e0b;
}

/* SUBTITLE */
.industries-subtitle {
    margin-top: 10px;
    font-size: 16px;
    opacity: 0.9;
}

/* SLIDER */
.industries-slider {
    margin-top: 60px;
    overflow: hidden;
    position: relative;
}

.industries-track {
    display: flex;
    width: max-content;
    gap: 80px;
    animation: scrollIndustries 20s linear infinite;
}

/* ITEM */
.industry-item {
    min-width: 220px;
    text-align: center;
}

/* ICON */
.icon-box {
    width: 100px;
    height: 100px;
    background: #f59e0b;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    font-size: 36px;
    color: #fff;
}

/* TEXT */
.industry-item p {
    font-size: 18px;
    line-height: 1.4;
}

/* ANIMATION */
@keyframes scrollIndustries {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.our-process {
    padding: 80px 5%;
    background: #f2f2f4;
}

.container {
    max-width: 1600px;
    margin: auto;
}

/* Heading */

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

.section-heading h2 {
    font-size: 64px;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    line-height: 1;
}

.section-heading h2 span {
    color: #0b3db8;
    font-weight: 700;
}

.section-heading p {
    font-size: 20px;
    color: #222;
    max-width: 1200px;
    margin: auto;
    line-height: 1.7;
}

/* Grid */

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

/* Card */

.process-card {
    background: #dddddd;
    border-radius: 12px;
    padding: 42px 38px;
    min-height: 195px;
    position: relative;
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .number {
    position: absolute;
    top: 28px;
    right: 30px;
    font-size: 20px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
}

.process-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    margin-bottom: 22px;
    line-height: 1.3;
}

.process-card p {
    font-size: 19px;
    line-height: 1.8;
    color: #111;
    max-width: 90%;
}

/* Tablet */

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-heading h2 {
        font-size: 52px;
    }
}

/* Mobile */

@media (max-width: 768px) {
    .our-process {
        padding: 60px 20px;
    }

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

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 38px;
    }

    .section-heading p {
        font-size: 16px;
        line-height: 1.6;
    }

    .process-card {
        padding: 30px 24px;
        min-height: auto;
    }

    .process-card h3 {
        font-size: 24px;
    }

    .process-card p {
        font-size: 16px;
        max-width: 100%;
    }

    .process-card .number {
        font-size: 18px;
        top: 22px;
        right: 22px;
    }
}

/* Section */

.brand-contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 100px 6%;
    display: flex;
    align-items: center;

    /* FIXED BACKGROUND IMAGE */
    background: url("https://arccsdigitals.com/wp-content/uploads/2026/02/Bg-image.webp") center center / cover no-repeat fixed;
}

/* Dark Overlay */

.brand-contact-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Container */

.brand-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    margin: auto;

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

/* Left Content */

.brand-left {
    color: #fff;
}

.small-logo {
    margin-bottom: 30px;
}

.small-logo img {
    width: 52px;
    height: auto;
}

.brand-left h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 35px;
    max-width: 700px;
}

.brand-left h2 span {
    display: block;
}

.brand-left p {
    font-size: 24px;
    line-height: 1.6;
    max-width: 780px;
    color: rgba(255,255,255,0.95);
}

/* Right Form */

.brand-form form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-grid input,
.brand-form textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f1f1f1;
    padding: 22px 28px;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    color: #000000;
}

.form-grid input {
    height: 46px;
}

.brand-form textarea {
    height: 180px;
    resize: none;
    margin-bottom: 40px;
    padding-top: 22px;
}

/* Button */

.brand-form button {
    width: 100%;
    height: 43px;
    font-size: 14px;
    background: #c78401;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

.brand-form button:hover {
    background: #0036aa;
}

/* ============================= */
/* Tablet */
/* ============================= */

@media (max-width: 1200px) {
    .brand-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .brand-left h2 {
        font-size: 54px;
    }

    .brand-left p {
        font-size: 20px;
    }
}

/* ============================= */
/* Mobile */
/* ============================= */

@media (max-width: 768px) {
    .brand-contact-section {
        padding: 70px 20px;
        min-height: auto;
        background-attachment: scroll; /* better mobile support */
    }

    .brand-left h2 {
        font-size: 38px;
        margin-bottom: 20px;
    }

    .brand-left p {
        font-size: 17px;
        line-height: 1.7;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-grid input {
        height: 60px;
        font-size: 16px;
        padding: 16px 20px;
    }

    .brand-form textarea {
        height: 150px;
        font-size: 16px;
        padding: 18px 20px;
    }

    .brand-form button {
        height: 62px;
        font-size: 18px;
    }
}


/* Banner Section */
.inner-banner {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background Video */
.banner-video {
    position: absolute;
    /* top: 50%; */
    /* left: 50%; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* transform: translate(-50%, -50%); */
    z-index: 1;
}

/* Overlay (dark blue effect) */
.banner-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 2;
    background-color: #000000;
}

/* Content */
.banner-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    color: #fff;
    font-family: "Jost", sans-serif;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.85;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
}

/* Title */
.banner-content h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* Tablet */
@media (max-width: 1024px) {
    .inner-banner {
        height: 260px;
    }

    .banner-content h1 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .inner-banner {
        height: 220px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .breadcrumb {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .inner-banner {
        height: 200px;
    }

    .banner-content h1 {
        font-size: 26px;
    }
}


/* About Us page */
.about-section {
    background: #f5f5f5;
    padding: 80px 20px;
    font-family: "Jost", sans-serif;
}

.about-section-container {
    max-width: 1200px;
    margin: auto;
}

.about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.about-left h2 span {
    color: #1e4bb8;
    font-weight: 700;
}

.about-left p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* RIGHT GRID */
.about-right {
    flex: 1;
    display: flex;
    gap: 20px;
}

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

/* IMAGE */
.img-box {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* CARD */
.card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border-radius: 12px;
    color: #fff;
}

.card img.icon {
    width: 40px;
}

.card h3 {
    font-size: 28px;
    margin: 0;
}

.card p {
    margin: 5px 0 0;
    font-size: 14px;
}

/* COLORS */
.about-section-blue {
    background: #1e4bb8;
    justify-content: center;
}

.about-section-yellow {
    background: #c58a00;
    justify-content: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-right {
        flex-direction: column;
    }

    .about-left h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 15px;
    }

    .about-left h2 {
        font-size: 24px;
    }

    .card {
        padding: 15px;
    }

    .card h3 {
        font-size: 22px;
    }
}

.vision-mission {
    background: #f2efff;
    padding: 80px 20px;
    font-family: "Jost", sans-serif;
}

.vision-mission-container {
    max-width: 1200px;
    margin: auto;
}

.vm-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.vm-left {
    flex: 1;
}

.vm-left h2 {
    font-size: 45px;
    line-height: 1.2;
    font-weight: 500;
    color: #111;
}

.vm-left h2 span {
    color: #1e4bb8;
    font-weight: 700;
    display: block;
}

.divider {
    width: 100%;
    height: 1px;
    background: #ccc;
    margin: 25px 0;
}

.vm-left h3 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
}

/* RIGHT */
.vm-right {
    flex: 1;
    display: flex;
    gap: 40px;
}

.vm-box {
    flex: 1;
}

.vm-box h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.vm-box .line {
    width: 100%;
    height: 1px;
    background: #999;
    margin-bottom: 20px;
}

.vm-box h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.vm-box p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .vm-wrapper {
        flex-direction: column;
    }

    .vm-left h2 {
        font-size: 36px;
    }

    .vm-left h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .vm-right {
        flex-direction: column;
    }

    .vm-left h2 {
        font-size: 30px;
    }

    .vm-left h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .vision-mission {
        padding: 50px 15px;
    }

    .vm-left h2 {
        font-size: 24px;
    }

    .vm-left h3 {
        font-size: 18px;
    }
}

.why-section {
    background: #f3f4f7;
    padding: 80px 20px;
    text-align: center;
    font-family: "Jost", sans-serif;
}

.why-section-container {
    max-width: 1200px;
    margin: auto;
}

/* TAG */
.tag {
    display: inline-block;
    background: #e6e7ea;
    color: #333;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 20px;
}

/* TITLE */
.why-section-title {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 50px;
}

.why-section-title span {
    color: #1e4bb8;
    font-weight: 700;
}

/* CARDS */
.why-section-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* SINGLE CARD */
.why-section-card {
    position: relative;
    background: #e9e9eb;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: left;
    flex: 1;
    transition: 0.3s;
}

/* NUMBER */
.why-section-card .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 14px;
    color: #bfbfc4;
    font-weight: 600;
}

/* ICON */
.why-section-card .icon {
    width: 50px;
    margin-bottom: 20px;
}

/* TEXT */
.why-section-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.why-section-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* HOVER EFFECT */
.why-section-card:hover {
    background: #1e4bb8;
    color: #fff;
    transform: translateY(-8px);
}

.why-section-card:hover p {
    color: #eee;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .why-section-cards {
        flex-direction: column;
    }

    .why-section-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .why-section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 50px 15px;
    }

    .why-section-card {
        padding: 25px;
    }
}

/* portfolio */
.portfolio {
    padding: 80px 20px;
    background: #f5f5f5;
    text-align: center;
    font-family: "Jost", sans-serif;
}

.portfolio-container {
    max-width: 1200px;
    margin: auto;
}

/* TABS */
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    background: #c58a00;
    color: #fff;
    transition: 0.3s;
}

/* ACTIVE TAB */
.tab.active {
    background: #1e4bb8;
}

/* CONTENT */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fade 0.5s ease;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* IMAGES */
.grid img {
    width: 100%;
    border-radius: 8px;
    transition: 0.3s;
    cursor: pointer;
}

/* HOVER EFFECT */
.grid img:hover {
    transform: scale(1.05);
}
.animation-video-box {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 8px;
    overflow: hidden;
}

.animation-video-box iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* ANIMATION */
@keyframes fade {
    from {opacity: 0;}
    to {opacity: 1;}
}

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

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .tab {
        width: 100%;
    }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 0px;
}

/* Card Box */
.project-card {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  /*border-radius: 20px;*/
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  background: #fff;
  padding: 20px;
}

/* Image */
.image-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: auto;
  transition: transform 6s linear; /* smooth scrolling */
}

/* On Hover → scroll image down */
.project-card:hover .image-container img {
  transform: translateY(-40%); /* adjust this value based on img height */
}

/* Overlay Button */
.project-card-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all 0.5s ease;
 
}
.project-card:hover .project-card-overlay {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.view-btn {
   /*background-image: linear-gradient(135deg, #7B1315 0%, #F6BD29 100%);*/
  background: #790011;
  border: none;
  padding: 6px 32px;
  border-radius: 10px;
  font-weight: 400px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  color: #fff;
}

.view-btn:hover {
   
background-image: linear-gradient(135deg, #0b2a49 0%, #0b2a49 100%);
  color: #fff;
}

Contact Us Page
.vsw-contact-wrap {
  background: #f4f4f4;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.vsw-contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  padding: 30px 0;
}

/* LEFT */
.vsw-contact-left {
  background: linear-gradient(135deg, #0036AA, #243447);
  color: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  width: 35%;
}

.vsw-contact-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.vsw-contact-title {
  font-size: 32px;
  margin-bottom: 30px;
}

.vsw-contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.vsw-icon-box {
  background: #c68600;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.vsw-icon-box i {
  color: #fff;
  font-size: 16px;
}

.vsw-contact-item h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.vsw-contact-item p {
  font-size: 14px;
  line-height: 1.5;
}

.vsw-divider {
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 15px 0;
}

.vsw-social-icons {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.vsw-social-icons span {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.vsw-social-icons i {
  color: #fff;
  font-size: 14px;
}

/* RIGHT */
.vsw-contact-right {
  width: 65%;
}

.vsw-contact-right form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.vsw-form-row {
  display: flex;
  gap: 20px;
}

.vsw-form-row input,
.vsw-form-row select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: #eee;
  outline: none;
}

.vsw-contact-right textarea {
  width: 100%;
  height: 140px;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #eee;
  resize: none;
}

.vsw-contact-right button {
  background: #c68600;
  color: #fff;
  padding: 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .vsw-contact-container {
    flex-direction: column;
  }

  .vsw-contact-left,
  .vsw-contact-right {
    width: 100%;
  }

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

@media (max-width: 576px) {
  .vsw-contact-title {
    font-size: 24px;
  }

  .vsw-contact-left {
    padding: 25px;
  }

  .vsw-contact-right button {
    width: 100%;
  }
}
/* Case Studies */
.case-study-section {
  padding: 80px 20px;
}

/* Grid */
.case-study-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Outer Card */
.case-study-card {
  background: #dcdcdc;
  padding: 50px;
  border-radius: 12px;
}

/* Inner Card */
.card-inner {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* Title */
.card-inner h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #111;
}

/* Text */
.card-inner p {
  font-size: 20px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Link */
.case-study-link {
  font-size: 17px;
  color: #1a4ed8;
  text-decoration: none;
  font-weight: 500;
}

.case-study-link span {
  margin-left: 8px;
  transition: 0.3s;
}

/* Hover Effect */
.case-study-link:hover span {
  margin-left: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .case-study-container {
    grid-template-columns: 1fr;
  }
}




.hero-section {
  background: #edeaff; /* light grey with slight purple tone */
  padding: 100px 20px;
  text-align: center;
}

/* Content */
.case-study-hero-content {
  max-width: 900px;
  margin: auto;
}

/* Heading */
.case-study-hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.2;
}

/* Paragraph */
.case-study-hero-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #5f6f63; /* slightly greenish grey tone */
}

/* Responsive */
@media (max-width: 768px) {
  .case-study-hero-content h1 {
    font-size: 36px;
  }

  .case-study-hero-content p {
    font-size: 15px;
  }

  .hero-section {
    padding: 60px 15px;
  }
}

/* Section */
/* Section background */
.video-section {
  background: #edeaff;
  padding: 20px 20px;
}

/* Center container */
.video-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

/* Text */
.video-text {
  max-width: 900px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.8;
  color: #6b7d73;
}

/* White card */
.video-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
}

/* Video */
.case-study-video-box {
  max-width: 720px;
  margin: auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.case-study-video-box iframe {
  width: 100%;
  height: 400px;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .video-text {
    font-size: 15px;
  }

  .video-card {
    padding: 20px;
  }

  .case-study-video-box iframe {
    height: 220px;
  }

  .video-section {
    padding: 60px 15px;
  }
}

/* Section Background */
.impact-sec {
    background: #edeaff;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

/* Main Box */
.impact-box {
    background: #e9e9eb;
    padding: 40px 50px;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
}

/* Header */
.impact-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

/* Icon (4 dots) */
.impact-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.impact-icon i {
    position: absolute;
    font-size: 6px;
    color: #4b3df0;
}

/* Positioning dots */
.impact-icon i:nth-child(1) { top: 0; left: 0; }
.impact-icon i:nth-child(2) { top: 0; right: 0; }
.impact-icon i:nth-child(3) { bottom: 0; left: 0; }
.impact-icon i:nth-child(4) { bottom: 0; right: 0; }

/* Title */
.impact-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    color: #000;
}

/* Text */
.impact-text {
    font-size: 16px;
    color: #555;
    margin: 0;
}

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

/* Tablet */
@media (max-width: 768px) {
    .impact-box {
        padding: 30px;
    }

    .impact-header h2 {
        font-size: 24px;
    }

    .impact-text {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .impact-box {
        padding: 20px;
    }

    .impact-header {
        gap: 10px;
    }

    .impact-header h2 {
        font-size: 20px;
    }

    .impact-text {
        font-size: 14px;
    }
}

/* Services pages css */
.anim-service-sec {
    background: #edeaff;
    padding: 80px 20px;
}

.anim-container {
    max-width: 1200px;
    margin: auto;
}

/* Top */
.anim-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.anim-left h2 {
    font-size: 42px;
    margin: 0;
    line-height: 1.2;
}

.anim-left span,
.anim-left strong {
    color: #0036aa;
}

.anim-right p {
    max-width: 420px;
    line-height: 1.6;
    color: #333;
    font-size: 19px;
}

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

/* Card */
.anim-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 38px;
    text-align: center;
    transition: 0.3s;
}

.anim-card:hover {
    transform: translateY(-6px);
}

/* ICON IMAGE */
.anim-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: #eef1ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.anim-icon img {
    width: 81px;
    height: 81px;
    object-fit: contain;
}

/* Text */
.anim-card h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}
.anim-card:hover h3 {
    color: #0036aa;
}
.anim-card p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

/* Button */
.anim-card a {
    display: inline-block;
    background: #C78401;
    color: #fff;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.anim-card a:hover {
    background: #c78401;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

@media (max-width: 992px) {
    .anim-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .anim-top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .anim-grid {
        grid-template-columns: 1fr;
    }

    .anim-left h2 {
        font-size: 30px;
    }
}

/* Section */
.scale-sec {
    background: #f4f2ff;
    padding: 80px 20px;
}

/* Container */
.scale-container {
    max-width: 1300px;
    margin: auto;
}

/* Wrapper */
.scale-wrapper {
    background: #efeff4;
    border-radius: 30px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT */
.scale-left {
    flex: 2;
}

.scale-title {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Stats */
.scale-stats {
    display: flex;
    gap: 50px;
}

/* Item */
.scale-item {
    text-align: center;
}

/* Circle */
.scale-circle {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid #5a5cff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    transition: 0.3s ease;
}

/* Outer faint ring */
.scale-circle::after {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 1px solid #ddd;
}
.scale-circle:hover {
    transform: scale(1.08);
}
/* Number */
.scale-circle h3 {
    font-size: 30px;
    font-weight: 400;
    margin: 0;
}

/* Arrow */
.scale-circle i {
    color: #5a5cff;
    font-size: 14px;
    margin-top: 5px;
}

/* Text */
.scale-item p {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-top: 23px;
}

/* RIGHT BOX */
.scale-right {
    flex: 1;
    background: #e7e4f7;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Right Content */
.scale-right h3 {
    font-size: 40px;
    margin-bottom: 10px;
}

.scale-right p {
    color: #6b7c6f;
    margin-bottom: 25px;
        font-size: 20px;
}

/* Button */
.scale-btn {
    background: #000;
    color: #fff;
    padding: 14px 25px;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    transition: 0.3s;
}

.scale-btn:hover {
    background: #222;
    transform: translateY(-2px);
}

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

/* Tablet */
@media (max-width: 992px) {
    .scale-wrapper {
        flex-direction: column;
    }

    .scale-stats {
        justify-content: space-between;
        flex-wrap: wrap;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .scale-title {
        font-size: 26px;
    }

    .scale-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .scale-circle {
        width: 130px;
        height: 130px;
    }

    .scale-circle::after {
        width: 160px;
        height: 160px;
    }
}

.product-servies {
    background: #ffffff;
    padding: 40px 20px 100px;
    font-family: "Jost", sans-serif;
    text-align: center;
}

.product-servies .product-servies-container {
    max-width: 1200px;
    margin: auto;
}

.product-servies h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1f4fbf;
    margin-bottom: 20px;
}

.product-servies .product-servies-subtitle {
    font-size: 18px;
    color: #333;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.product-servies h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 0 40px;
}

.product-servies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.product-servies-card {
    background: #e9e9e9;
    padding: 30px 25px;
    border-radius: 12px;
    position: relative;
    text-align: left;
    transition: 0.3s;
}

.product-servies-card p {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

.product-servies-card .product-servies-number {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}

.product-servies-card:hover {
    background: #d0d0d0;
}

.product-servies-footer-text {
    margin-top: 40px;
    font-size: 17px;
    color: #333;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .product-servies h2 {
        font-size: 28px;
    }

    .product-servies-grid {
        grid-template-columns: 1fr;
    }

    .product-servies-card {
        padding: 20px;
    }

    .product-servies-card p {
        font-size: 16px;
    }
}

/* SECTION */
.why-servies {
    position: relative;
    background: #ffffff;
    padding: 40px 20px 30px;
    font-family: "Jost", sans-serif;
}

/* TOP LINE */
.why-servies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #b2b2b2;
}

/* PERFECT CENTER CURVE */
.why-servies::after {
    content: "";
    position: absolute;
    top: -49px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    height: 50px;

    border: 1px solid #b2b2b2;
    border-bottom: none;
    border-radius: 200px 200px 0 0;

    background: #ffffff; /* MUST match section */
}

/* CONTAINER */
.why-servies-container {
    max-width: 1200px;
    margin: auto;
}

/* GRID LAYOUT */
.why-servies-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.why-servies-left h2 {
    font-size: 42px;
    font-weight: 500;
    color: #000;
    line-height: 1.2;
}

.why-servies-left h2 span {
    color: #1f4fbf;
    font-weight: 700;
    display: block;
    margin-top: 10px;
}

.why-servies-left p {
    margin-top: 20px;
    font-size: 18px;
    color: #333;
    max-width: 450px;
    line-height: 1.6;
}

/* RIGHT SIDE */
.why-servies-right {
    padding-left: 40px;
    border-left: 1px solid #d0d0d0;
}

.why-servies-right ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-servies-right ul li {
    font-size: 18px;
    margin-bottom: 22px;
    position: relative;
    padding-left: 45px;
}

/* CHECK ICON */
.why-servies-right ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #0036aa;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .why-servies-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-servies-right {
        border-left: none;
        padding-left: 0;
    }

    .why-servies-left h2 {
        font-size: 28px;
    }

    .why-servies-right ul li {
        font-size: 16px;
        padding-left: 40px;
    }

    .why-servies::after {
        width: 200px;
        height: 40px;
        top: -35px;
    }
}

.pa2-section {
    position: relative;
    padding: 50px 20px;
    background: #ffffff; /* TOP WHITE */
    overflow: hidden;
}

/* BOTTOM PURPLE AREA */
.pa2-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%; /* controls where purple starts */
    background: #edeaff;
    z-index: 0;
}

/* MAIN BOX */
.pa2-wrapper {
    max-width: 1300px;
    margin: auto;
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* LEFT */
.pa2-left {
    width: 42%;
    background: #000;
    padding: 60px 40px;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

/* MENU */
.pa2-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.pa2-menu li {
    color: #9a9a9a;
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ACTIVE ITEM (IMPORTANT PART) */
.pa2-menu li.active {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: linear-gradient(90deg, #2f6bff, #C78401);
    color: #fff;

    padding: 14px 20px;
    border-radius: 40px;

    width: 115%; /* THIS CREATES OVERFLOW INTO RIGHT */
    z-index: 5;
}

/* ARROW */
.pa2-arrow {
    width: 38px;
    height: 38px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pa2-arrow i {
    color: #fff;
    font-size: 14px;
}
/* HIDE arrow by default */
.pa2-menu li .pa2-arrow {
    display: none;
}

/* SHOW arrow ONLY in active tab */
.pa2-menu li.active .pa2-arrow {
    display: flex;
}
/* RIGHT */
.pa2-right {
    position: relative;
    width: 58%;
    min-height: 300px; /* prevent jump */
    background: #e5e5e5;
    padding: 53px;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.pa2-right h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pa2-desc {
    font-size: 16px;
    margin-bottom: 25px;
    color: #444;
}

.pa2-content p {
    font-size: 15.5px;
    margin-bottom: 15px;
    line-height: 1.7;
}
/* HIDE ALL TABS */
/* TAB BASE */
.pa2-tab {
    opacity: 0;
    transform: translateY(10px); /* slide from bottom */
    pointer-events: none;

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ACTIVE TAB */
.pa2-tab.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
    z-index: 2;
}
/* EXITING TAB (fade out) */
.pa2-tab.fade-out {
    opacity: 0;
    transform: translateY(-10px);
    z-index: 1;
}

/* CLICK CURSOR */
.pa2-menu li {
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER EFFECT */
.pa2-menu li:hover {
    color: #fff;
}
/* RESPONSIVE */
@media (max-width: 992px) {
    .pa2-section {
        background: #e9e7f0;
    }

    .pa2-wrapper {
        flex-direction: column;
    }

    .pa2-left,
    .pa2-right {
        width: 100%;
    }

    .pa2-menu li.active {
        width: 100%; /* remove overlap in mobile */
    }
}

/* SECTION */
.pas-section {
    background: #edeaff;
    padding: 20px 20px 40px;
    text-align: center;
}

/* CONTAINER */
.pas-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.pas-title {
    font-size: 52px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #000;
}

.pas-title span {
    color: #0036aa;
    font-weight: 800;
}

/* SUBTITLE */
.pas-subtitle {
    font-size: 18px;
    color: #444;
    margin-bottom: 50px;
}

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

/* CARD */
.pas-card {
    background: #ffffff;
    padding: 35px 32px;
    border-radius: 20px;
    transition: 0.3s ease;
}

/* CARD TITLE */
.pas-card h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 29px;
    color: #000000;
    margin-bottom: 15px;
}

/* CARD TEXT */
.pas-card p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}

/* HOVER (subtle like reference) */
.pas-card:hover {
    transform: translateY(-5px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .pas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .pas-title {
        font-size: 28px;
    }

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

/* SECTION */
.indus-section {
    background: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

/* CONTAINER */
.indus-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.indus-title {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.indus-title span {
    color: #1e4db7;
}

/* SUBTITLE */
.indus-subtitle {
    font-size: 17px;
    color: #444;
    margin-bottom: 60px;
}

/* GRID */
.indus-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* ITEM */
.indus-item {
    width: 18%;
    min-width: 180px;
}

/* ICON CIRCLE */
.indus-icon {
    width: 130px;
    height: 130px;
    border: 2px solid #C78401;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: transparent;
}

/* ICON IMAGE */
.indus-icon img {
    width: 118px;
    height: auto;
}

/* TEXT */
.indus-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #111;
    line-height: 1.4;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .indus-grid {
        justify-content: center;
    }

    .indus-item {
        width: 30%;
    }
}

@media (max-width: 576px) {
    .indus-title {
        font-size: 28px;
    }

    .indus-item {
        width: 100%;
    }
}