@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  /**
    @Font-Family Declaration
  */
  --bk-ff-body: "Montserrat", sans-serif;
  --bk-ff-heading:"Montserrat", sans-serif;
  --bk-ff-fontawesome: "Font Awesome 6 Pro";
  /**
    @Font-weight Declaration
  */
  --bk-fw-normal: normal;
  --bk-fw-thin: 100;
  --bk-fw-elight: 200;
  --bk-fw-light: 300;
  --bk-fw-regular: 400;
  --bk-fw-medium: 500;
  --bk-fw-sbold: 600;
  --bk-fw-bold: 700;
  --bk-fw-ebold: 800;
  --bk-fw-black: 900;
  /**
    @Font-Size Declaration
  */
  --bk-fs-body: 15px;
  --bk-fs-p: 15px;
  --bk-fs-h1: 72px;
  --bk-fs-h2: 48px;
  --bk-fs-h3: 32px;
  --bk-fs-h4: 24px;
  --bk-fs-h5: 20px;
  --bk-fs-h6: 18px;
  /**
    @Color Declaration
  */
  --bs-bg-opacity: 0.1;
  --secondcolor:#034eae;
  --bk-color-common-white: #fff;
  --bk-color-common-white-2: #a9b0b8;
  --bk-color-common-black: #000000;
  --bk-color-common-black-2: #676e7a;
  --bk-color-common-black-3: #969ca5;
  --bk-color-heading-primary: #05214b;
  --bk-color-text-body: #000;
  --bk-color-text-body-2: #333;
  --bk-color-theme-primary: #1174eb;
  --bk-color-theme-dark: #051229;
  --bk-color-theme-bg: #e1e8f0;
  --bk-color-theme-bg-2: #dfecfd;
  --bk-color-border-1: #27354d;
  --bk-color-border-2: #ced7e0;
  --bk-color-border-3: #d7d8db;
  --bk-color-red-1: #ff0000;
}
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--bk-ff-body);
}
body,
html {
  position: relative;
}

body {
  font-family: var(--bk-ff-body);
  font-size: var(--bk-fs-body);
  font-weight: normal;
  color: var(--bk-color-text-body);
  background-color: var(--bk-color-common-white);
  line-height: 1.6;
}
html.bikham,
html.bikham body {
  height: auto;
}
img, svg {
    vertical-align: middle;
    max-width: 100%;
}
/* Header base */
.main-header {
  background-color: #fff;
  width: 100%;
  border-bottom: 0;
  transition: all 0.3s ease;
}

/* Sticky behavior */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

/* Add shadow when scrolling */
.sticky-header.scrolled {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  background-color: #ffffff; /* optional: turn white on scroll */
}

/* Logo */
.logo img {
  max-height: 40px;
}

/* Responsive */
@media (max-width: 768px) {
  .logo img {
    max-height: 32px;
  }
}
/* Default (Desktop) */
/* ===================================
   HERO BANNER PREMIUM ANIMATION
=================================== */

.hero-banner{
    position:relative;
    width:100%;
    min-height:345px;
    background:#e5f0fd;
    display:flex;
    align-items:center;
    overflow:hidden;
}

/* Animated Background Glow */
.hero-banner::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:radial-gradient(circle,
    rgba(6,99,215,0.18),
    transparent 70%);
    top:-150px;
    right:-100px;
    animation:heroGlow 8s ease-in-out infinite;
    pointer-events:none;
}

/* Floating Shapes */
.hero-banner::after{
    content:"";
    position:absolute;
    width:250px;
    height:250px;
    background:radial-gradient(circle,
    rgba(255,255,255,0.45),
    transparent 70%);
    bottom:-100px;
    left:-80px;
    animation:heroGlow2 10s ease-in-out infinite;
    pointer-events:none;
}

/* ===================================
   HERO CONTENT
=================================== */

.hero-content{
    text-align:left;
    color:#002d5b;
    position:relative;
    z-index:2;
}

/* INITIAL STATE */
.hero-content h1,
.hero-content p,
.hero-content .btn-apply{
    opacity:0;
}

/* HEADING */
.hero-content h1{
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:0.8rem;
    line-height:1.2;
    font-family:var(--bk-ff-heading);

    transform:
        translateY(60px)
        rotateX(20deg);

    transition:
        all 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* PARAGRAPH */
.hero-content p{
    font-size:1.2rem;
    line-height:1.6;
    font-weight:500;
    text-align:left;
    max-width:530px;
    font-family:var(--bk-ff-heading);
    color:#000;
    margin:0 0 1rem 0;

    transform:
        translateY(50px);

    transition:
        all 1s ease;

    transition-delay:0.3s;
}

/* BUTTON */
.btn-apply{
    background:linear-gradient(90deg,#0663d7,#034ead);
    padding: 6px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;font-size:15px;
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0.4rem;font-weight:600;
color:#fff;text-decoration:none;transform:
        translateY(0)
        rotateX(0)
        scale(1);
}
.submit-btn-wrapper{
    padding-bottom:30px;
    margin-top:0;
}
/* SHOW ANIMATION */
.hero-banner.show .hero-content h1,
.hero-banner.show .hero-content p,
.hero-banner.show .hero-content .btn-apply{
    opacity:1;
    transform:
        translateY(0)
        rotateX(0)
        scale(1);
}

/* BUTTON HOVER */
.btn-apply:hover{
    background-position:right; box-shadow:0 12px 30px rgba(6,99,215,0.25);}

/* BUTTON SHINE */
.btn-apply::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.4),
            transparent
        );

    transition:0.7s;
}

.btn-apply:hover::before{
    left:100%;
}

/* ARROW */
.arrow{
    margin-left:10px;
    font-size:1.2rem;
    transition:transform 0.3s ease;
}

.btn-apply:hover .arrow{
    transform:translateX(5px);
}

/* ===================================
   HERO IMAGE
=================================== */

.hero-img-wrap{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    position:relative;
    z-index:2;
}

/* INITIAL */
.hero-img{
    max-width:100%;
    height:auto;

    opacity:0;

    transform:
        translateX(80px)
        scale(0.8)
        rotate(-4deg);

    filter:
        blur(10px);

    transition:
        all 1.4s cubic-bezier(0.22,1,0.36,1);

    transition-delay:0.5s;
}

/* SHOW */
.hero-banner.show .hero-img{
    opacity:1;

    transform:
        translateX(0)
        scale(1)
        rotate(0);

    filter:blur(0);

    animation:
        heroFloat 5s ease-in-out infinite;
}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes heroFloat{
    0%,100%{
        transform:
            translateY(0px);
    }
    50%{
        transform:
            translateY(-14px);
    }
}

@keyframes heroGlow{
    0%,100%{
        transform:scale(1);
        opacity:0.8;
    }
    50%{
        transform:scale(1.15);
        opacity:1;
    }
}

@keyframes heroGlow2{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-30px);
    }
}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

    .hero-content h1{
        font-size:2rem;
    }

    .hero-content p{
        font-size:1.05rem;
    }
}

/* MOBILE */
@media(max-width:767px){

    .hero-banner{
        padding:40px 0;
        text-align:center;
    }

    .hero-content{
        text-align:center;
        margin-bottom:25px;
    }

    .hero-content h1{
        font-size:1.6rem;
        text-align:center;
    }

    .hero-content p{
        font-size:0.9rem;
        max-width:100%;
        text-align:center;
    }

    .btn-apply{
        padding:8px 18px;
        font-size:0.85rem;
    }

    .hero-img-wrap{
        display:flex;
        justify-content:center !important;
        align-items:center;
        text-align:center;
        margin-top:20px;
    }

    .hero-img{
        display:block;
        margin:0 auto;
        max-width:100%;
        height:auto;
    }
}
.section-title {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}
.section-title h2 {
    font-size: 32px;
	line-height:42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
    position: relative;
    color: #05214b;font-family:var(--bk-ff-heading);
}
.section-titleleft {
    text-align: left;
    padding-bottom: 10px;
    position: relative;
}
.section-titleleft h2 {
    font-size: 32px;
	line-height:42px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: none;
    position: relative;
    color: #05214b;font-family:var(--bk-ff-heading);
}
.section-title p{font-family:var(--bk-ff-body);font-size:14px;color:#000;line-height:24pt;margin-bottom:10px;}
 .features{
    padding:20px 0px;
}

.containerinn{
    display:grid;
    grid-template-columns:repeat(5, 1fr);
    gap:20px;
    max-width:1300px;
    margin:auto;
}

/* FEATURE CARD */
.feature-card{
    background:#fff;
    border-radius:12px;
    padding:26px 50px;
    text-align:center;
    border:2px solid #51abf7;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);

    /* ANIMATION START */
    opacity:0;
    transform:
        translateY(80px)
        scale(0.85)
        rotateX(10deg);

    filter:blur(8px);

    transition:
        all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SHOW ON SCROLL */
.feature-card.show{
    opacity:1;
    transform:
        translateY(0)
        scale(1)
        rotateX(0);

    filter:blur(0);
}

/* STAGGER EFFECT */
.feature-card:nth-child(1){transition-delay:0.1s;}
.feature-card:nth-child(2){transition-delay:0.3s;}
.feature-card:nth-child(3){transition-delay:0.5s;}
.feature-card:nth-child(4){transition-delay:0.7s;}
.feature-card:nth-child(5){transition-delay:0.9s;}

/* PREMIUM HOVER */
.feature-card:hover{
    transform:
        translateY(-10px)
        scale(1.03);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.12);
}

/* ICON CIRCLE */
.feature-card .icon-circle{
   width: 70px;
  height: 70px;
    margin:0 auto 24px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;

    animation:pulseGlow 3s ease-in-out infinite;
}

/* OUTER SOFT RING */
.feature-card .icon-circle::before{
    content:"";
    position:absolute;
    inset:-10px;
    border-radius:50%;
    z-index:1;
    opacity:0.15;
}

/* ICON */
.feature-card .icon{
    font-size:28px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}

.feature-card .icon{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-card .icon img{
    width: 62px;
    height: 50px;
    object-fit:contain;
    object-position:center;
    display:block;
    margin:auto;
}
/* COLOR THEMES */
.blue .icon-circle{
    background:#eaf4ff;
}

.blue .icon-circle::before{
    background:#3b82f6;
}

/* TITLE */
.feature-card h3{
    font-size:0.9em;
    margin:0;
    color:#000;
    letter-spacing:0;
    font-weight:500;
    line-height:1.4;
}

/* CARD COLOR */
.blue{
    border-color:#cfe8ff;
    background:#f2f8ff;
}

/* ANIMATIONS */
@keyframes floatIcon{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-6px);
    }
}

@keyframes pulseGlow{
    0%,100%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
}

/* MOBILE */
@media(max-width:768px){

    .containerinn{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:24px 20px;
    }
}

@media(max-width:480px){

    .containerinn{
        grid-template-columns:1fr;
    }
}

 /* Card */
.stat-card {
  background: linear-gradient(135deg, #f5f7fe, #faf9fe);
  border-radius: 50px;
  padding: 0px 10px 0px 0px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Circle Wrapper (for gradient ring effect) */
.circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 6px; /* thickness of gradient ring */
  background: linear-gradient(145deg, #f5faf9, #f5faf9);
  display: flex;
  align-items: center;
  justify-content: center;border:6px solid #d0ecf0;
}

/* Inner circle */
.circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f5faf9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #1fa67a;
}

/* Green variant */
.circle.green {
  background: linear-gradient(145deg, #f5faf9, #f5faf9);
}

/* Percentage */
.circle span {
  font-size: 30px;
  font-weight: 700;
  color: #05a544;
}

/* Line */
.line {
  width: 40px;
  height: 4px;
  background: #cfe6f4;margin-left:-24px;
}

/* Text */
.stat-card p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

/* -------- Responsive -------- */

/* Tablet */
@media (max-width: 991px) {
  .circle {
    min-width: 100px;
    height: 100px;
  }

  .circle span {
    font-size: 20px;
  }

  .stat-card p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .stat-card {
    flex-direction: column;
    text-align: center;
    border-radius: 20px;
    padding: 20px;
  }

  .line {
    display: none;
  }

  .circle {
    margin-bottom: 10px;
  }

  .stat-card p {
    font-size: 15px;
  }
}
.circle {
  transition: transform 0.3s ease;
}

.stat-card:hover .circle {
  transform: scale(1.05);
}
/* LEFT CARD */
.glass-card{
    position:relative;
    box-shadow:0 2px 8px 0 rgba(58,57,68,20%);
    border-radius:20px;
    overflow:hidden;

    opacity:0;
    transform:
        translateX(-80px)
        rotate(-2deg)
        scale(0.92);

    filter:blur(10px);

    transition:
        all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* SHOW ON SCROLL */
.glass-card.show{
    opacity:1;
    transform:
        translateX(0)
        rotate(0deg)
        scale(1);

    filter:blur(0);
}

/* PREMIUM HOVER */
.glass-card:hover{
    transform:
        translateY(-8px)
        scale(1.02);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.12);
}

/* HEADER */
.glass-header{
    box-shadow:inset 0 -8px 15px rgba(123,208,198,0.15);
    position:relative;
    overflow:hidden;
}

/* BOTTOM CURVE */
.glass-header::after{
    content:"";
    position:absolute;
    bottom:-15px;
    left:0;
    width:100%;
    height:50px;
    background:url("../images/header-btm.png") no-repeat center bottom;
    background-size:contain;
    pointer-events:none;
}

/* GLOW EFFECT */
.glass-header::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:82px;
    background:
        radial-gradient(circle,
        rgba(0,180,140,0.15),
        transparent 70%);

    animation:headerGlow 4s ease-in-out infinite;
}

/* LIST ITEMS */
.rating-list li{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 20px;

    opacity:0;
    transform:translateY(20px);

    transition:
        all 0.6s ease;
}

/* SHOW EACH ITEM */
.glass-card.show .rating-list li{
    opacity:1;
    transform:translateY(0);
}

/* STAGGER */
.glass-card.show .rating-list li:nth-child(1){transition-delay:0.2s;}
.glass-card.show .rating-list li:nth-child(2){transition-delay:0.4s;}
.glass-card.show .rating-list li:nth-child(3){transition-delay:0.6s;}
.glass-card.show .rating-list li:nth-child(4){transition-delay:0.8s;}
.glass-card.show .rating-list li:nth-child(5){transition-delay:1s;}
.glass-card.show .rating-list li:nth-child(6){transition-delay:1.2s;}

/* FLOATING RATING */
.rating{
    animation:floatRating 3s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes headerGlow{
    0%,100%{
        opacity:0.7;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.05);
    }
}

@keyframes floatRating{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* MOBILE */
@media(max-width:767px){

    .glass-card{
        margin-bottom:30px;
    }

    .rating-list li{
        padding:12px 15px;
        font-size:14px;
    }
}
/* LOGO BOX (fake icon like image) */
.logo-box {
  position:relative;
}

/* BRAND */
.brand {
  color: #1f8f5f;
  font-weight: 700;
  font-size: 20px;
}

/* RATING */
.rating {
  color: #1f8f5f;
  font-weight: 600;
  font-size: 16px;
}

.rating span {
  margin-left: 6px;
  color: #000;
  font-weight: 600;
}

/* LIST BASE */
.rating-list {
  padding: 0;
  margin: 0;
}

/* ROW STYLE */
.rating-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  font-size: 16px;line-height:24px;
  border-radius: 0;Font-weight:600;
}

/* ODD ROWS */
.rating-list li:nth-child(odd) {
  background-color: #eff3f9;
}
.rating-list li:last-child {
    border-radius: 0 0 10px 10px;
}
/* EVEN ROWS */
.rating-list li:nth-child(even) {
  background-color: #ffffff;
}
.rating-list li span span:last-child {
    color: #000;
}
.rating-list li span{margin-left:10px;}
/* spacing between rows */
.rating-list li + li {
  margin-top: 0;
}

/* right side rating */
.rating-list li span:last-child {
  color: #1f8f5f;
  font-weight: 600;
}
/* RIGHT SIDE */

/* pill background */
.stat-item {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #f3f6fb, #eef2f7);
  border-radius: 60px;
  padding: 12px 25px;
  position: relative;
  overflow: hidden;
}

/* glow trail */
.stat-item::before {
  content: "";
  position: absolute;
  left: 60px;
  width: 120px;
  height: 100%;
  background: radial-gradient(circle, rgba(123,208,198,0.35), transparent 70%);
}
.colortxt{color:#05214b!important;}
.bkm-does{
    max-width:1200px;
    margin:20px auto;
    overflow:hidden;
}

/* DEFAULT HIDDEN STATE */
.bkm-does p{
    font-size:18px;
    line-height:30px;
    text-align:center;
    color:#000;
    margin-bottom:20px;
    font-weight:500;

    opacity:0;
    transform:translateY(50px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* ACTIVE ON SCROLL */
.bkm-does p.show{
    opacity:1;
    transform:translateY(0);
}

/* STAGGER DELAY */
.bkm-does p:nth-child(1){transition-delay:0.1s;}
.bkm-does p:nth-child(2){transition-delay:0.2s;}
.bkm-does p:nth-child(3){transition-delay:0.3s;}
.bkm-does p:nth-child(4){transition-delay:0.4s;}
.bkm-does p:nth-child(5){transition-delay:0.5s;}
.bkm-does p:nth-child(6){transition-delay:0.6s;}
.bkm-does p:nth-child(7){transition-delay:0.7s;}

/* SPECIAL QUOTE */
.bkm-does p.quotetxt{
    color:#05193c;
    font-family:'Montserrat';
    font-size:24pt;
    font-weight:700;
    padding:20px 0;

    transform:scale(0.7);
    filter:blur(8px);
}

/* QUOTE SHOW */
.bkm-does p.quotetxt.show{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
    transition:
        all 1.2s ease;
}

/* FLOATING QUOTE ICONS */
.bkm-does p.quotetxt img{
    width:40px;
    animation:floatQuote 3s ease-in-out infinite;
}

.bkm-does p.quotetxt.show::after{
    width:240px;
}

/* OPTIONAL GOLD TEXT */
.colortxt{
    color:#05214b !important;
    font-weight:700 !important;
}

/* FLOAT EFFECT */
@keyframes floatQuote{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
}
.glow-text{
    text-shadow:
    0 0 10px rgba(245,180,0,0.3),
    0 0 20px rgba(245,180,0,0.2);
}
/* OPTIONAL GOLD TEXT */
.colortxt{
    color:#05214b !important;
    font-weight:700 !important;
}
.nobtmmg{margin-bottom:-2px!important;}
/* =========================
   DIGITAL HQ SECTION
========================= */

.digital-hq{
    padding:40px 0;
    overflow:hidden;
}

.position-relative{
    position:relative !important;
}

/* TEXT */
.digital-hq p{
    font-size:16px;
    line-height:28px;
    text-align:left;
    color:#000;
    margin-bottom:20px;
    font-weight:500;

    opacity:0;
    transform:translateY(40px);
    transition:
        all 0.9s ease;
}

/* SHOW TEXT */
.digital-hq.show p{
    opacity:1;
    transform:translateY(0);
}

/* STAGGER */
.digital-hq.show p:nth-of-type(1){transition-delay:0.2s;}
.digital-hq.show p:nth-of-type(2){transition-delay:0.4s;}
.digital-hq.show p:nth-of-type(3){transition-delay:0.6s;}

/* IMAGES */
.digital-hq img{
    max-width:100%;
    display:block;
    border-radius:18px;

    opacity:0;
    transform:
        scale(0.9)
        translateX(-60px);

    filter:blur(8px);

    transition:
        all 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* IMAGE SHOW */
.digital-hq.show img{
    opacity:1;
    transform:
        scale(1)
        translateX(0);

    filter:blur(0);
}

/* IMAGE STAGGER */
.digital-hq.show img:nth-child(1){
    transition-delay:0.2s;
}

.digital-hq.show img:nth-child(2){
    transition-delay:0.6s;
}

/* DIGITAL BOX */
.digitalhqbox{
    background:#ebf2fd;
    padding:20px 74px;
    border-radius:20px;
    max-width:100%;

    opacity:0;
    transform:
        translateY(50px)
        scale(0.9);

    transition:
        all 1s ease;

    transition-delay:0.8s;
}

/* BOX SHOW */
.digital-hq.show .digitalhqbox{
    opacity:1;
    transform:
        translateY(0)
        scale(1);
}

/* BOX TEXT */
.digitalhqbox p{
    font-size:18px;
    line-height:34px;
    text-align:center;
    color:#05214b;
    margin-bottom:0;
    font-weight:500;
}

/* PLAY BUTTON AREA */
.rs-feature-video{
    position:absolute;
    left:-8%;
    top:30%;
    right:0;
    z-index:100;
    opacity:0;
    transform:scale(0.5);

    transition:
        all 1s ease;

    transition-delay:1s;
}

/* SHOW PLAY BUTTON */
.digital-hq.show .rs-feature-video{
    opacity:1;
    transform:scale(1);
}

/* PLAY BUTTON */
.rs-play-btn{
    width:80px;
    height:80px;
    font-size:26px;
    background:#1174eb;
    display:inline-flex;
    border-radius:50%;
    color:#fff !important;
    justify-content:center;
    align-items:center;
    position:relative;
    z-index:1;
    text-decoration:none;

    animation:floatPlay 3s ease-in-out infinite;
}

.rs-play-btn:hover{
    color:#fff;
    text-decoration:none;
    transform:scale(1.08);
}

/* PULSE */
.rs-play-btn::before{
    background:#1174eb;
    content:"";
    position:absolute;
    width:80px;
    height:80px;
    z-index:-1;
    left:50%;
    top:50%;
    transform:translateX(-50%) translateY(-50%);
    display:block;
    border-radius:50%;
    animation:rs-pulse-border 1500ms ease-out infinite;
}

.rs-play-btn::after{
    content:"";
    position:absolute;
    z-index:1;
    left:50%;
    top:50%;
    transform:translateX(-50%) translateY(-50%);
    display:block;
    border-radius:50%;
    transition:all 200ms;
}

/* FLOAT */
@keyframes floatPlay{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-8px);
    }
}

/* PULSE */
@keyframes rs-pulse-border{
    0%{
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity:1;
    }
    100%{
        transform:translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity:0;
    }
}

/* VIDEO POPUP */
.video-popup{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.85);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:99999999;
}

.video-popup.show{
    display:flex;
    animation:fadeIn .25s ease-in-out;
}

.video-popup-content{
    position:relative;
    max-width:900px;
    width:90%;
    background:transparent;
}

.video-popup video{
    width:100%;
    border-radius:10px;
    display:block;
}

.popup-close{
    position:absolute;
    top:-15px;
    right:-15px;
    width:30px;
    height:30px;
    background:#1174eb;
    color:#fff;
    border:none;
    border-radius:50%;
    font-size:28px;
    cursor:pointer;
    z-index:100000000;
    line-height:30px;
}

.popup-close:hover{
    background:#000;
}

/* FADE */
@keyframes fadeIn{
    from{opacity:0;}
    to{opacity:1;}
}

/* MOBILE */
@media(max-width:768px){

    .digitalhqbox{
        padding:20px;
    }

    .rs-feature-video{
        left:0;
        top:35%;
    }

    .rs-play-btn{
        width:65px;
        height:65px;
        font-size:22px;
    }

    .digital-hq p{
        font-size:16px;
        line-height:28px;
    }
}
:root {
    --primary-blue: #077df5;
    --text-dark: #000;
    --circle-size: 600px; /* Base size of the ring */
    --icon-size: 80px;
}

.containercc {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-wrapper {
    position: relative;
    width: var(--circle-size);
    height: var(--circle-size);
}

/* Decorative Rings */
.ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid #e0e0e0;
    z-index: 1;
}

.outer-ring {
    width: 100%;
    height: 100%;
    border-color: var(--primary-blue);
    opacity: 0.6;
}

.inner-ring {
    width: 85%;
    height: 85%;
}

/* Center Text Styling */
.center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.center-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    font-weight: 600;text-align:center;
}
.center-text h2 strong{color:#077af4;font-weight:700;}
/* Positioner for Items */
.item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    z-index: 20;
}

/* Icon Circle Styling */
.icon-circleepic {
    position: absolute;
    width: var(--icon-size);
    height: var(--icon-size);
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 2rem;
    transform: translate(-50%, -50%);
    /* This moves icons to the perimeter of the circle */
    left: calc(cos(var(--angle)) * (var(--circle-size) / 2));
    top: calc(sin(var(--angle)) * (var(--circle-size) / 2));
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.icon-circleepic img{width:60px;}
/* Content (Labels) Placement */
.content {
    position: absolute;
    width: 300px;
    transform: translateY(-50%);
    /* Matches icon position but adds offset */
    left: calc(cos(var(--angle)) * (var(--circle-size) / 2));
    top: calc(sin(var(--angle)) * (var(--circle-size) / 2));
}

.align-left {
    padding-left: 60px;
    text-align: left;
}

.align-right {
    padding-right: 60px;
    text-align: right;
    left: auto;
    right: calc(cos(var(--angle)) * (var(--circle-size) / -2));
}

.content strong {
    display: block;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.content strong span {
    color: var(--primary-blue);font-size:30px;
}

.content p {
    font-size:1rem;
    color: #000;
    line-height: 1.2;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    :root {
        --circle-size: 350px;
        --icon-size: 60px;
    }
    .center-text h2 { font-size: 1.5rem; }
    .content { width: 150px; }
    .content strong { font-size: 1.1rem; }
}

@media (max-width: 768px) {

    :root{
        --circle-size: 100%;
        --icon-size: 70px;
    }

    /* Hide rings on mobile */
    .ring{
        display:none;
    }

    .containercc{
        padding:20px 15px;
        display:block;
        height:auto;
    }

    .circle-wrapper{
        width:100%;
        height:auto;
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:35px;
    }

    /* Mobile Heading */
    .center-text{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        transform:none !important;
        margin:0 auto 10px;
        text-align:center;
        width:100%;
    }

    .center-text h2{
        font-size:32px;
        line-height:42px;
        text-align:center;
    }

    /* Reset all items */
    .item{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        width:100%;
        height:auto !important;

        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
    }

    /* Reset icon positioning */
    .icon-circleepic{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        transform:none !important;

        margin:0 auto 15px;
        width:70px;
        height:70px;
    }

    .icon-circleepic img{
        width:52px;
    }

    /* Reset content */
    .content{
        position:relative !important;
        top:auto !important;
        left:auto !important;
        right:auto !important;
        transform:none !important;

        width:100% !important;
        max-width:320px;
        padding:0 !important;
        margin:0 auto;
        text-align:center !important;
    }

    .content strong{
        font-size:24px;
        line-height:32px;
        display:block;
        margin-bottom:10px;
    }

    .content strong span{
        font-size:28px;
    }

    .content p{
        font-size:14px;
        line-height:24px;
        margin:0 auto;
        color:#000;
    }
}
/* =========================
   EPICAL SECTION ANIMATIONS
========================= */

/* Rotate Rings */
.outer-ring {
    animation: rotateClockwise 18s linear infinite;
}

.inner-ring {
    animation: rotateAntiClockwise 14s linear infinite;
}

/* Floating Icons */
.icon-circleepic {
    animation: floatIcon 3s ease-in-out infinite;
    transition: all 0.4s ease;
}

/* Hover Effect */
.item:hover .icon-circleepic {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 10px 25px rgba(7, 125, 245, 0.35);
}

.item:hover .content strong {
    color: #077df5;
}

/* Fade-up Animation */
.item {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

/* Delay each item */
.item:nth-child(4) { animation-delay: 0.2s; }
.item:nth-child(5) { animation-delay: 0.4s; }
.item:nth-child(6) { animation-delay: 0.6s; }
.item:nth-child(7) { animation-delay: 0.8s; }
.item:nth-child(8) { animation-delay: 1s; }
.item:nth-child(9) { animation-delay: 1.2s; }

/* Center Text Animation */
.center-text h2 {
    animation: fadeUp 1s ease;
}

/* Icon Pulse */
.icon-circleepic::before {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(7,125,245,0.3);
    animation: pulseRing 2s infinite;
}

/* =========================
   KEYFRAMES
========================= */

@keyframes rotateClockwise {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateAntiClockwise {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes floatIcon {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-8px);
    }
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media(max-width:768px){

    .outer-ring,
    .inner-ring{
        animation:none;
    }

    .icon-circleepic{
        animation: floatMobile 3s ease-in-out infinite;
    }

    @keyframes floatMobile{
        0%{ transform:translateY(0px); }
        50%{ transform:translateY(-6px); }
        100%{ transform:translateY(0px); }
    }

    .item{
        animation: fadeUp 0.8s ease forwards;
    }

    .item:hover .icon-circleepic{
        transform: scale(1.05);
    }
}

.benefits {
  padding: 40px 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Cover entire card */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.2),
    transparent
  );
  transition: background 0.4s ease;
}

/* TITLE */
.overlay h3 {
  margin: 0;
  font-size: 20px;
}

/* HIDDEN TEXT */
.overlay p {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* HOVER EFFECT */
.card:hover img {
  transform: scale(1.05);
}

/* Darker overlay on hover */
.card:hover .overlay {
  background: rgba(0, 0, 0, 0.7);
}

.card:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}
.overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  z-index: 0;
}

.card:hover .overlay::before {
  background: rgba(0,0,0,0.6);
}

.overlay h3,
.overlay p {
  position: relative;
  z-index: 1;
}

/* ---------------- RESPONSIVE ---------------- */

/* Tablet */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   CEO SECTION
========================= */
.ceo-section{
    background: linear-gradient(to right, #faf9f9, #fafafa, #fbfafa);
    position:relative;
    overflow:hidden;
}

/* IMAGE */
.ceo-section img{
    max-width:100%;
    opacity:0;
    transform:translateX(-80px) scale(0.9);
    transition:all 1s ease;
}

/* TEXT */
.ceo-section p{
    font-size:16px;
    line-height:26px;
    text-align:left;
    color:#000;
    margin:0 0 16px 0;
    font-weight:500;

    opacity:0;
    transform:translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

/* ACTIVE STATE */
.ceo-section.show img{
    opacity:1;
    transform:translateX(0) scale(1);
}

.ceo-section.show p{
    opacity:1;
    transform:translateY(0);
}

/* STAGGER EFFECT */
.ceo-section.show p:nth-of-type(1){transition-delay:0.2s;}
.ceo-section.show p:nth-of-type(2){transition-delay:0.4s;}
.ceo-section.show p:nth-of-type(3){transition-delay:0.6s;}
.ceo-section.show p:nth-of-type(4){transition-delay:0.8s;}

/* SPACING */
.mt-34{
    margin-top:3.4rem !important;
}

/* =========================
   QUOTE CARD
========================= */
.ceo-section .quote-card{
    background:#faf9f9;
    padding:20px 50px;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    max-width:100%;
    position:relative;
    border-top-left-radius:10px;

    opacity:0;
    transform:scale(0.8);
    filter:blur(10px);
    transition:all 1.2s ease;
    transition-delay:1s;
}

/* QUOTE CARD SHOW */
.ceo-section.show .quote-card{
    opacity:1;
    transform:scale(1);
    filter:blur(0);
}

/* SOFT LIGHT EFFECT */
.ceo-section .quote-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:120px;
    height:120px;
    background:radial-gradient(circle at top left,
    rgba(173,216,230,0.4), transparent);
    border-radius:25px 0 0 0;
    pointer-events:none;
}

/* GOLD LINE ANIMATION */

.ceo-section.show .quote-card::after{
    width:180px;
}

/* QUOTE TEXT */
.ceo-section .quote-text{
    color:#00235a;
    font-size:30px;
    font-weight:700;
    font-style:italic;
    margin:0 0 10px 0;
    font-family:"Times New Roman";
    line-height:1.4;
    text-align:center;

    animation:floatText 4s ease-in-out infinite;
}

/* ATTRIBUTION */
.ceo-section .quote-attribution{
    text-align:right;
    color:#333;
}

.ceo-section .author{
    display:block;
    font-size:18px;
    font-weight:600;
    font-family:Montserrat,sans-serif;
}

.ceo-section .title{
    display:block;
    font-size:14px;
    color:#777;
    font-family:Montserrat,sans-serif;
    margin-top:4px;
}

/* FLOAT EFFECT */
@keyframes floatText{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-5px);
    }
}

/* MOBILE */
@media(max-width:767px){

    .ceo-section .quote-card{
        padding:20px;
    }

    .ceo-section .quote-text{
        font-size:22px;
    }

    .mt-34{
        margin-top:2rem !important;
    }
}
@media (min-width:100px) and (max-width:767px){
.section-titleleft {    text-align: center;}
.digital-hq p{text-align:center;}
.icon-circleepic {position:relative; left: 0;top: 0;right: 0; margin: 0 auto 10px auto;}	
}
.love-section {
  padding: 120px 0 40px 0;
  background: url(../images/lovebikhambg.png);
  position: relative;
  background-repeat:no-repeat;
  background-position:100%;
  background-size:cover;
  overflow: hidden;
}

 .love-section .title {
  font-size: 42px;
  font-weight: 700;
  color: #0b2c5f;
  margin-bottom: 20px;
}

 .love-section .desc {
  color: #000;
  line-height:30px;font-size:16px;
  margin-bottom: 20px;
}

 .love-section .sub-title {
  font-weight: 700;
  margin-top: 20px;
}

/* MONITOR */
 .love-section .monitor {
  background: #fff;
  padding: 15px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  position: relative;
}

 .love-section .video-wrapper {
  position: relative;
  cursor: pointer;
}

/* PLAY BUTTON */
 .love-section .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 80px;
  height: 80px;
  font-size: 26px;
  
  background: #fff;
  color: #1174eb;
  border-radius: 50%;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
  z-index: 1;
  text-decoration: none;
}

/* Pulse animation layer */
.love-section .play-btn::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  
  z-index: -1;
  animation: rs-pulse-border 1500ms ease-out infinite;
}

/* Optional inner circle layer (same as your first section) */
.love-section .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Hover (optional) */
.love-section .play-btn:hover {
  color: #fff;
  background: #0b5ed7;
}

/* AVATARS */
 .love-section .avatar {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.love-section .avatarbig{width:120px;height:120px;}
.love-section .avatarmed{width:84px;height:84px;}
/* Positioning */
 .love-section .avatar1 { top: -90px; left: 8%; }
 .love-section .avatar2 { top: -80px; right: 32%; }
 .love-section .avatar3 { top: -45px; left: 30%; }
 .love-section .avatar4 { top: -70px; right: 8%; }

/* RESPONSIVE */
@media (max-width: 991px) {
 .love-section   .title {
    font-size: 32px;
  }

  .love-section  .avatar {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  .love-section {
    padding: 50px 15px;
  }

   .love-section .avatar {
    display: none; /* cleaner mobile */
  }
}
.pddleft{padding-left:142px;}
/* Section Fade In */
.love-section {
    animation: sectionFade 1.2s ease;
}

/* ===================================
   LOVE SECTION SCROLL ANIMATION
=================================== */

/* DEFAULT HIDDEN */
.love-section .section-titleleft,
.love-section .desc,
.love-section .sub-title,
.love-section .monitor,
.love-section .col-lg-6.position-relative.text-center img{
    opacity:0;
}

/* LEFT CONTENT */
.love-section .section-titleleft,
.love-section .desc,
.love-section .sub-title{
    transform:translateX(-50px);
    transition:
        all 1s ease;
}

/* SHOW */
.love-section.show .section-titleleft,
.love-section.show .desc,
.love-section.show .sub-title{
    opacity:1;
    transform:translateX(0);
}

/* STAGGER */
.love-section.show .section-titleleft{
    transition-delay:0.2s;
}

.love-section.show .desc:nth-of-type(1){
    transition-delay:0.5s;
}

.love-section.show .sub-title{
    transition-delay:0.8s;
}

.love-section.show .desc:nth-of-type(2){
    transition-delay:1s;
}

/* MONITOR */
.love-section .monitor,
.love-section .col-lg-6.position-relative.text-center img{
    transform:
        translateY(60px)
        scale(0.9);

    filter:blur(8px);

    transition:
        all 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* SHOW */
.love-section.show .monitor,
.love-section.show .col-lg-6.position-relative.text-center img{
    opacity:1;
    transform:
        translateY(0)
        scale(1);

    filter:blur(0);
}

/* MONITOR HOVER */
.love-section .monitor:hover{
    transform:translateY(0);
    transition:all 0.4s ease;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

/* VIDEO ZOOM */
.love-section .video-wrapper img{
    transition:transform 0.8s ease;
}

.love-section .monitor:hover .video-wrapper img{
    transform:scale(1.05);
}

/* PLAY BUTTON */
.love-section .play-btn{
    animation:playFloat 3s ease-in-out infinite;
    transition:all 0.4s ease;
}

.love-section .play-btn:hover{
    transform:translate(-50%, -50%) scale(1.12);
}

/* AVATARS */
.love-section .avatar{
    animation:avatarFloat 4s ease-in-out infinite;
    transition:all 0.4s ease;
}

.love-section .avatar1{
    animation-delay:0s;
}

.love-section .avatar2{
    animation-delay:1s;
}

.love-section .avatar3{
    animation-delay:2s;
}

.love-section .avatar4{
    animation-delay:1.5s;
}

.love-section .avatar:hover{
    transform:scale(1.08);
    z-index:5;
}

/* GLOW BORDER */
.love-section .monitor::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:20px;
    padding:2px;

    background:linear-gradient(
        45deg,
        rgba(17,116,235,0.5),
        rgba(255,255,255,0.2),
        rgba(17,116,235,0.5)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;
            mask-composite:exclude;

    animation:borderGlow 4s linear infinite;
    pointer-events:none;
}

/* KEYFRAMES */
@keyframes playFloat{
    0%{
        transform:translate(-50%, -50%) translateY(0px);
    }
    50%{
        transform:translate(-50%, -50%) translateY(-8px);
    }
    100%{
        transform:translate(-50%, -50%) translateY(0px);
    }
}

@keyframes avatarFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

@keyframes borderGlow{
    0%{
        filter:hue-rotate(0deg);
    }
    100%{
        filter:hue-rotate(360deg);
    }
}
/* MOBILE */
@media(max-width:768px){

    .love-section .play-btn{
        width:65px;
        height:65px;
        font-size:22px;
    }

    .love-section .play-btn::before{
        width:65px;
        height:65px;
    }

    .love-section .monitor:hover{
        transform:none;
    }

    .love-section .video-wrapper img{
        transform:none !important;
    }
}
/* Layout */
.social-section {
  background: url('../images/socialbg.png') no-repeat center center;
  background-size: cover;
  background-position:50% center;
  background-repeat:no-repeat;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* Optional soft overlay (for better text visibility) */
.social-icons {
  content: "";
  position: relative;
  inset: 0;
  /*background: url(../images/siconsbg.png);*/
  background:transparent;
  background-size:contain;
  background-position:51% 0px;
  background-repeat:no-repeat;
  z-index: 0;height:158px;
}

/* Make sure content stays above background */
.social-section .container {
  position: relative;
  z-index: 2;
}

/* Icon Circle */
.social-section .icon-circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.social-section .icon-circle img{width:100px;}
/* Platform Colors */
.fb { background: transparent}
.x { background: transparent; }
.insta { 
  background: transparent;
}
.linkedin { background:transparent; }
/* ===================================
   SOCIAL SECTION PREMIUM ANIMATION
=================================== */

/* Section Entrance */
.social-section {
    animation: socialFade 1.2s ease;
}

/* Title Animation */
.social-section .section-titleleft {
    opacity: 0;
    animation: fadeDown 1s ease forwards;
}

/* Icons Row */
.social-section .social-icons {
    position: relative;
}

/* Social Items */
.social-section .social-item {
    opacity: 0;
    transform: translateY(60px);

    animation: socialPop 1s ease forwards;
}

/* Delay Each Icon */
.social-section .social-item:nth-child(1) {
    animation-delay: 0.2s;
}

.social-section .social-item:nth-child(2) {
    animation-delay: 0.4s;
}

.social-section .social-item:nth-child(3) {
    animation-delay: 0.6s;
}

.social-section .social-item:nth-child(4) {
    animation-delay: 0.8s;
}

/* Icon Circle Effects */
.social-section .icon-circle {
    position: relative;
    transition: all 0.4s ease;

    animation: iconFloat 4s ease-in-out infinite;
}

/* Different Floating Timing */
.social-section .social-item:nth-child(1) .icon-circle {
    animation-delay: 0s;
}

.social-section .social-item:nth-child(2) .icon-circle {
    animation-delay: 1s;
}

.social-section .social-item:nth-child(3) .icon-circle {
    animation-delay: 2s;
}

.social-section .social-item:nth-child(4) .icon-circle {
    animation-delay: 3s;
}

/* Image Smooth Effect */
.social-section .icon-circle img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12));
}

/* Hover Animation */
.social-section .social-item:hover .icon-circle {
    transform: translateY(-12px) scale(1.08);
}

.social-section .social-item:hover img {
    transform: scale(1.08) rotate(4deg);
    filter: drop-shadow(0 18px 30px rgba(0,0,0,0.18));
}

/* Glow Effect */
.social-section .icon-circle::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: radial-gradient(
        rgba(17,116,235,0.15),
        transparent 70%
    );

    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.social-section .social-item:hover .icon-circle::before {
    opacity: 1;
    transform: scale(1.2);
}

/* Rotating Soft Ring */
.social-section .icon-circle::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.35);
    z-index: -1;
    animation: rotateRing 12s linear infinite;
}
/* Background Floating Effect */
.social-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        rgba(17,116,235,0.12),
        transparent 70%
    );

    top: -120px;
    right: -120px;
    border-radius: 50%;

    animation: bgMove 8s ease-in-out infinite;
}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes socialFade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialPop {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconFloat {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

@keyframes rotateRing {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes bgMove {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===================================
   MOBILE OPTIMIZATION
=================================== */

@media(max-width:768px){

    .social-section {
        padding: 60px 0;
    }

    .social-section .icon-circle {
        width: 80px;
        height: 80px;
    }

    .social-section .icon-circle img {
        width: 75px;
    }

    .social-section .social-item:hover .icon-circle {
        transform: scale(1.05);
    }

    .social-section::before {
        width: 250px;
        height: 250px;
    }
}
/* =========================
   MOBILE SOCIAL ICON FIX
========================= */
@media (max-width: 768px) {

    .social-section .social-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .social-section .social-item {
        width: 45%;
        display: flex;
        justify-content: center;
    }

}
/* Cards */
.info-card {
  position: absolute;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;font-weight:500;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  white-space: nowrap;text-align:left;
}
.info-card i{font-size:20px;color:#040814;display:block;text-align:left;margin-bottom:10px;}
/* Card Positions */
.left { right: 112%;  top: 15%;}
.right { left: 120%; top: 20%; }
.top { bottom: 110%; left: 148%; transform: translateX(-50%); }
.bottom { top: 94%; left: 50%; transform: translateX(-50%); }

/* Social item wrapper */
.social-item {
  position: relative;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
.social-icons{height:auto;}
    .social-icon{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        align-items:center;
        gap:20px;
    }

    .social-icon a{
        width:45%;
        text-align:center;
    }
.social-section .icon-circle {
    width: 100px;
height: 92px;}
   .social-section .icon-circle img {
    width: 84px;
}
.social-section{padding:40px 0 20px 0;}
}
.cta-banner {
  background-color: #0b2f5b;
  border-radius: 12px;
  padding: 20px 30px;
  color: #fff;margin:30px 0;
}

/* Icon Circle */
.icon-box {
  width: 90px;
  height: 90px;
  background-color: #0048a4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box img {
  width: 82px;
  height: 82px;
}

/* Text */
.cta-text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
}

/* Button */
.cta-btn {
  background-color: #e9eef5;
  color: #0b2f5b;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.35s ease;
}

.cta-btn:hover {
    background-color: #d6e0ef;
  color: #0b2f5b;

  box-shadow:
    0 0 12px #4f8cff,
    0 0 24px rgba(79, 140, 255, 0.6);

  transform: translateY(-3px) scale(1.02);
}

/* Responsive */
@media (max-width: 768px) {

  .cta-banner{
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 20px 20px;
  }

  /* Left section */
  .cta-banner .d-flex{
    flex-direction: column;
    width: 100%;
  }

  /* Hide icon */
  .icon-box{
    display: none !important;
  }

  /* Text */
  .cta-text{
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }

  /* Button below text */
  .cta-btn{
    width: auto;
    margin-top: 5px;
  }

}
/* Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2f5b;
}

.section-subtitle {
  color: #333;
  font-size: 16px;
}

/* ===================================
   OPEN ROLES PREMIUM ANIMATION
=================================== */

.open-roles-section{
    background:#dfe8f6;
    border-radius:20px;
    padding:30px;
    position:relative;
    overflow:hidden;

    opacity:0;
    transform:
        translateY(60px)
        scale(0.96);

    transition:
        all 1.2s cubic-bezier(0.22,1,0.36,1);
}

/* SHOW */
.open-roles-section.show{
    opacity:1;
    transform:
        translateY(0)
        scale(1);
}

/* BACKGROUND GLOW */
.open-roles-section::before{
    content:"";
    position:absolute;
    width:400px;
    height:400px;
    background:
        radial-gradient(circle,
        rgba(45,108,223,0.12),
        transparent 70%);

    top:-180px;
    right:-100px;

    animation:rolesGlow 8s ease-in-out infinite;
    pointer-events:none;
}

/* ===================================
   JOB CARD
=================================== */

.job-card{
    background:#fff;
    border-radius:12px;
    padding:18px 20px;
    margin-bottom:15px;
    border:2px solid #cdd7e8;
    position:relative;
    overflow:hidden;

    opacity:0;

    transform:
        translateY(50px)
        scale(0.92);

    transition:
        all 1s cubic-bezier(0.22,1,0.36,1);

    transition-delay:0.3s;
}

/* SHOW */
.open-roles-section.show .job-card{
    opacity:1;

    transform:
        translateY(0)
        scale(1);
}

/* HOVER */
.job-card:hover{
    transform:
        translateY(-6px)
        scale(1.01);

    box-shadow:
        0 18px 40px rgba(0,0,0,0.08);
}

/* SHINE EFFECT */
.job-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-120%;
    width:100%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.55),
            transparent
        );

    transition:0.9s;
}

.job-card:hover::before{
    left:120%;
}

/* ===================================
   ICON
=================================== */

.job-icon{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;

    animation:iconFloat 4s ease-in-out infinite;
}

.job-icon img{
    width:26px;
}

.job-icon.blue{
    background:#dbe9ff;
}

.job-icon.red{
    background:#ffe5e5;
}
.job-icon.purple{background:#edecff;}
/* ===================================
   TEXT
=================================== */

.job-title{
    font-size:18px;
    font-weight:600;
    color:#000;
    line-height:28px;
}

.job-meta{
    font-size:14px;
    color:#555;
    flex-wrap:wrap;
}

.job-meta span{
    margin:0 6px;
}

/* ===================================
   BUTTON
=================================== */

.apply-btn{
    background:
        linear-gradient(90deg,#2d6cdf,#0b4bb3);

    color:#fff;
    border-radius:8px;
    padding:10px 20px;
    font-size:14px;
    white-space:nowrap;
    font-weight:600;
    position:relative;
    overflow:hidden;

    transition:
        all 0.4s ease;
}

.apply-btn i{
    padding-left:5px;
    transition:transform 0.3s ease;
}

/* HOVER */
.apply-btn:hover{
    color:#fff;

    transform:
        translateY(-2px)
        scale(1.03);

    box-shadow:
        0 10px 24px rgba(11,75,179,0.25);
}

.apply-btn:hover i{
    transform:translateX(5px);
}

/* BUTTON SHINE */
.apply-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.4),
            transparent
        );

    transition:0.7s;
}

.apply-btn:hover::before{
    left:100%;
}

/* ===================================
   TRUSTED LOGOS
=================================== */

.logos img{
    max-height:100px;
    width:auto;

    opacity:0;

    transform:
        translateY(40px)
        scale(0.9);

    transition:
        all 0.8s ease;
}

/* SHOW LOGOS */
.open-roles-section.show .logos img{
    opacity:1;

    transform:
        translateY(0)
        scale(1);
}

/* STAGGER */
.open-roles-section.show .logos .col-4:nth-child(1) img{
    transition-delay:0.5s;
}

.open-roles-section.show .logos .col-4:nth-child(2) img{
    transition-delay:0.7s;
}

.open-roles-section.show .logos .col-4:nth-child(3) img{
    transition-delay:0.9s;
}

/* ===================================
   KEYFRAMES
=================================== */

@keyframes iconFloat{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-6px);
    }
}

@keyframes rolesGlow{
    0%,100%{
        transform:scale(1);
        opacity:0.7;
    }
    50%{
        transform:scale(1.12);
        opacity:1;
    }
}

/* ===================================
   TABLET
=================================== */

@media(max-width:991px){

    .job-card{
        gap:20px;
    }

    .job-title{
        font-size:16px;
    }
}

/* ===================================
   MOBILE
=================================== */

@media(max-width:768px){

    .open-roles-section{
        padding:20px 15px;
        border-radius:16px;
    }

    .job-card{
        flex-direction:column;
        align-items:flex-start !important;
        padding:18px 15px;
        gap:18px;
    }

    .job-card > .d-flex{
        width:100%;
        align-items:flex-start !important;
        flex-direction:column;
        gap:15px !important;
    }

    .job-card .d-flex.align-items-center.gap-3{
        flex-direction:row !important;
        align-items:flex-start !important;
        width:100%;
    }

    .job-card .d-flex.align-items-center.flex-wrap.gap-4{
        flex-direction:column;
        align-items:flex-start !important;
        gap:8px !important;
        width:100%;
    }

    .job-title{
        font-size:16px;
        line-height:26px;
    }

    .job-meta{
        font-size:13px;
        line-height:24px;
    }

    .job-meta span{
        margin:0 4px;
    }

    .apply-btn{
        width:100%;
        text-align:center;
        padding:12px 18px;
        font-size:14px;
    }

    .logos{
        row-gap:20px;
    }

    .logos img{
        max-height:70px;
    }
}

/* ===================================
   SMALL MOBILE
=================================== */

@media(max-width:480px){

    .job-title{
        font-size:15px;
    }

    .job-meta{
        font-size:12px;
    }

    .logos img{
        max-height:60px;
    }
}
/* Card Base Styling */
.process-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    position: relative;
    margin-top: 60px; /* Proper space for icon */
    border: 1px solid transparent;
    transition: transform 0.3s ease;
    height: 80%;
}

/* Floating Icon Wrapper */
.icon-wrapper {
    width: 100px;
    height: 100px;
    background: #031428;
    border-radius: 50%;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    z-index: 2;
}

.icon-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

/* Card body spacing */
.process-card .card-body {
    padding-top: 40px;
}

/* Step Number */
.step-number {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid #fff;
    color: #fff;
    font-size: 14px;
}

/* Step 1 */
.step-1 {
    background: #eaf3ff;
    border-color: #9cc3ff;
}
.step-1 .step-number {
    background: #0bbbf4;
    box-shadow: 0 0 10px rgba(11, 187, 244, 0.6);
}

/* Step 2 */
.step-2 {
    background: #eafaf1;
    border-color: #8fe3b5;
}
.step-2 .step-number {
    background: #33df80;
    box-shadow: 0 0 10px rgba(38, 225, 133, 0.6);
}

/* Step 3 */
.step-3 {
    background: #f3efff;
    border-color: #cbb7ff;
}
.step-3 .step-number {
    background: #9f7aea;
    box-shadow: 0 0 10px rgba(159, 122, 234, 0.6);
}

/* Step 4 */
.step-4 {
    background: #fff3e8;
    border-color: #ffc999;
}
.step-4 .step-number {
    background: #ed8936;
    box-shadow: 0 0 10px rgba(237, 137, 54, 0.6);
}

.text-process {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
}

/* =========================
   MOBILE RESPONSIVE FIX
========================= */

@media (max-width: 991px) {

    .process-card {
        margin-top: 70px;
        padding: 20px 18px;
    }

    .icon-wrapper {
        width: 90px;
        height: 90px;
        top: -45px;
    }

    .process-card .card-body {
        padding-top: 35px;
    }

    .process-card h4 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .text-process {
        font-size: 14px;
        line-height: 22px;
    }
}

@media (max-width: 767px) {

    .hire-section .row {
        row-gap: 0 !important;
    }

    .process-card {
        max-width: 100%;
        margin-top: 50px;
    }

    .icon-wrapper {
        width: 85px;
        height: 85px;
        top: -42px;
    }

    .process-card .card-body {
        padding-top: 30px;
    }

    .process-card h4 {
        font-size: 22px;
    }

    .text-process {
        font-size: 14px;
        line-height: 21px;
    }

    .step-number {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .process-card {
        padding: 18px 15px;
        border-radius: 18px;
    }

    .icon-wrapper {
        width: 78px;
        height: 78px;
        top: -39px;
    }

    .process-card h4 {
        font-size: 20px;
    }

    .text-process {
        font-size: 13px;
        line-height: 20px;
    }
}
/* ===================================
   HIRING PROCESS PREMIUM ANIMATION
=================================== */

/* Section Entrance */
.hire-section {
    position: relative;
    overflow: hidden;
}

/* Title Animation */
.hire-section .section-title {
    opacity: 0;
    animation: fadeDown 1s ease forwards;
}

/* Card Entrance Animation */
.process-card {
    opacity:0;
    transform:
        translateY(60px)
        scale(0.9);

    transition:
        all 0.9s cubic-bezier(0.22,1,0.36,1);
}
/* SHOW ON SCROLL */
.hire-section.show .process-card{
    opacity:1;
    transform:
        translateY(0)
        scale(1);
}
/* Sequential Delays */
.col-lg-3:nth-child(1) .process-card {
    animation-delay: 0.2s;
}

.col-lg-3:nth-child(2) .process-card {
    animation-delay: 0.4s;
}

.col-lg-3:nth-child(3) .process-card {
    animation-delay: 0.6s;
}

.col-lg-3:nth-child(4) .process-card {
    animation-delay: 0.8s;
}

/* Hover Animation */
.process-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Floating Icon Animation */
.icon-wrapper {
    animation: floatIcon 4s ease-in-out infinite;
    transition: all 0.4s ease;
}

/* Different Floating Delay */
.col-lg-3:nth-child(1) .icon-wrapper {
    animation-delay: 0s;
}

.col-lg-3:nth-child(2) .icon-wrapper {
    animation-delay: 1s;
}

.col-lg-3:nth-child(3) .icon-wrapper {
    animation-delay: 2s;
}

.col-lg-3:nth-child(4) .icon-wrapper {
    animation-delay: 3s;
}

/* Icon Hover Glow */
.process-card:hover .icon-wrapper {
    transform: translateX(-50%) scale(1.08);
    box-shadow: 0 18px 35px rgba(0,0,0,0.25);
}

/* Image Smooth Zoom */
.icon-wrapper img {
    transition: transform 0.5s ease;
}

.process-card:hover .icon-wrapper img {
    transform: scale(1.08) rotate(4deg);
}

/* Step Number Pulse */
.step-number {
    animation: pulseStep 2.5s infinite;
}

/* Glowing Border Effect */
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;

    border-radius: 20px;
    padding: 1.5px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.4),
        rgba(255,255,255,0),
        rgba(255,255,255,0.3)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.4s ease;

    pointer-events: none;
}

.process-card:hover::before {
    opacity: 1;
}

/* Animated Background Glow */
.process-card::after {
    content: "";
    position: absolute;

    width: 200px;
    height: 200px;

    background: radial-gradient(
        rgba(255,255,255,0.2),
        transparent 70%
    );

    top: -80px;
    right: -80px;

    border-radius: 50%;
    opacity: 0;

    transition: opacity 0.4s ease;
}

.process-card:hover::after {
    opacity: 1;
}

/* Connecting Line Animation */
.hire-section .row {
    position: relative;
}

.hire-section .row::before {
    content: "";
    position: absolute;
    top: 65%;
    left: 10%;
    width: 80%;
    height: 3px;

    background: linear-gradient(
        to right,
        #0bbbf4,
        #33df80,
        #9f7aea,
        #ed8936
    );

    z-index: 0;
    opacity: 0.25;

    animation: flowLine 6s linear infinite;
}
/* STAGGER EFFECT */
.hire-section.show .step-1{
    transition-delay:0.1s;
}

.hire-section.show .step-2{
    transition-delay:0.3s;
}

.hire-section.show .step-3{
    transition-delay:0.5s;
}

.hire-section.show .step-4{
    transition-delay:0.7s;
}
/* ===================================
   KEYFRAMES
=================================== */

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(80px) scale(0.92);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes floatIcon {
    0% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
    100% {
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes pulseStep {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes flowLine {
    0% {
        background-position: 0%;
    }
    100% {
        background-position: 100%;
    }
}

/* ===================================
   MOBILE OPTIMIZATION
=================================== */

@media(max-width:991px){

    .hire-section .row::before{
        display:none;
    }

    .process-card{
        animation-duration:0.8s;
    }

    .process-card:hover{
        transform: translateY(-8px);
    }
}

@media(max-width:767px){

    .icon-wrapper{
        animation-duration:3s;
    }

    .process-card:hover .icon-wrapper{
        transform: translateX(-50%) scale(1.04);
    }
}
.lifeAtBikhamSwiper {
  width: 100%;
  padding: 40px 0;
}

.lifeAtBikhamSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.lifeAtBikhamSwiper .swiper-slide img {
  width: 100%;
  max-width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
}

/* VERY IMPORTANT FIX */
.swiper-wrapper {
  align-items: center;
}

.swiper {
  overflow: hidden;
}

/* Arrows */
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{bottom:0;}
.testimonial-section {
  width: 100%;
  margin: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 30px 0 rgba(1, 6, 20, 0.1);
  height: 100%;
  transition: 0.3s;
}
.read-more-state {
  display: none;
}

.read-more-target {
  opacity: 0;
  max-height: 0;
  font-size: 0;
  transition: .25s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  font-size: inherit;
  max-height: 999em;
}

.read-more-state ~ .read-more-trigger:before {
  content: 'Read More';
}

.read-more-state:checked ~ .read-more-trigger:before {
  content: 'Read Less';
}

.read-more-trigger {
  cursor: pointer;
  display:block;
    text-align:center;
    margin-top:15px;
  padding: 0 .5em;
  color: #0663d7 !important;
  font-size: 16px;font-weight:600;
  line-height: 2;text-transform:uppercase;
  border: 0;background:transparent !important;
  border-radius: .25em;
}
.read-more-target {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  display: inline;
  transition: all .4s ease;
}

.read-more-state:checked ~ .read-more-wrap .read-more-target {
  opacity: 1;
  max-height: 500px;
}
.mt-40{margin-top:40px;}
.testimonialSwiper{
    padding:20px 5px 70px;
    overflow:hidden;
    position:relative;
}

/* PROFILE */
.profile{
    margin-bottom:15px;
}

.profile p{
    margin:10px 0 0;
    font-size:20px;
    font-weight:700;
    color:#05214b;
}

.stars i{
    color:#ffc107;
    font-size:14px;
}

/* TEXT */
.read-more-wrap{
    font-size:16px;
    line-height:28px;
    color:#444;
    margin-bottom:0;
}

/* NAVIGATION */
.swiper-button-next,
.swiper-button-prev{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    color:#2c96d2;
    top:45%;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:20px;
    font-weight:700;
}

/* PAGINATION */
.swiper-pagination{
    bottom:0 !important;
}

.swiper-pagination-bullet{
    width:12px;
    height:12px;
    background:#b7c7d8;
    opacity:1;
}

.swiper-pagination-bullet-active{
    background:#2c96d2;
}

/* MOBILE */
@media(max-width:991px){

    .testimonialSwiper{
        padding:10px 5px 60px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display:none;
    }

    .itemt{
        margin-bottom:20px;
    }
}
.testimonialSwiper .itemt .title {text-align: center;margin-bottom: 30px;position: relative;padding: 20px 0;max-width: 600px;margin: 0 auto;}
.testimonialSwiper .itemt .title h5 {color: #fff;line-height: 1.2em;font-size: 18px;font-weight: 900;margin-bottom: 0;}
.testimonialSwiper .itemt .title h2 {color: #fff;line-height: 1.2em;font-weight: 900;font-size: 41px;letter-spacing: 1px;margin:0}
.testimonialSwiper .itemt .title p {margin: 0 0 10px;margin-bottom: 0;color: #333;}
 .testimonialSwiper .itemt {background: #fff;padding: 20px 20px;border-radius:15px;margin:0 auto 30px auto;min-height:260px;height:auto;text-align:center;border:2px solid #ebeef3;}
  .testimonialSwiper .itemt:hover{border-color:#0663d7;}
.testimonialSwiper .itemt .profile {display:block;}
.testimonialSwiper .itemt .profile img {border-radius: 100%;width:50px;height:50px;object-fit:cover}
.testimonialSwiper .itemt .profile .information {margin-bottom:15px;text-align:right;}
.testimonialSwiper .itemt .profile .information .stars i {color:#ff9800}
.testimonialSwiper .itemt .profile .information p {font-size: 18px;margin: 20px auto 0px;color: #000;font-weight: 700;line-height: 1;text-align:center;}
.testimonialSwiper .itemt>p {margin-bottom: 15px;font-size: 14px;line-height: 1.6em;display: block;z-index: 2;font-style: normal;color: #000;text-align: justify;font-weight:500;}
.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card {
  width: 100%;
}

.top-wrapper {
  display: flex;
  align-items: center;
  width: 100%;        /* force full row */
}

.stars {
  color: #ffb400;
  font-size: 18px;text-align:left;
}

.google-icon {
  width: 20px;
  margin-left: auto;  /* 🔥 THIS is the key fix */
}
.testimonial-card {
  padding: 20px;
}

.top-wrapper img {
  display: block;
}

.testimonial-card h3 {
  margin: 15px 0 10px;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.testimonial-card a {
  display: inline-block;
  margin-top: 10px;
  color: #1174eb;
  text-decoration: none;
  font-weight: 500;
}
.swiper.testimonialSwiper.swiper-initialized.swiper-horizontal.swiper-pointer-events {
    margin-bottom: 0;
    padding: 0;
}
/* Swiper spacing */
.swiper {
  padding: 20px 0;
}

.swiper-slide {
  height: auto;
}

/* Responsive */
@media (min-width: 768px) {
  .swiper-slide {
    width: 33.33%;
  }
}
.map{position:relative;padding:0 0 80px 0;}
.map-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;margin:0 auto;
}

.map-container {
    position: relative;
    width: 100%;
    display: inline-block;
}

.world-map {
    width: 86%;
    height: auto;
    display: block;margin:0 auto;
}

/* Absolute Positions for Hotspots */
.location-hotspot {
    position: absolute;
    transform: translate(-50%, -100%); 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.new-york { top: 46.5%;    left: 31.5%; }
.chandigarh { top: 51.3%;   left: 65.6%; }

/* SVG Pins */
.svg-pin {
    width: 34px;
    height: 34px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.25));
}
.pin-purple {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23786FD6'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>");
}
.pin-orange {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F3A633'><path d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5c-1.38 0-2.5-1.12-2.5-2.5s1.12-2.5 2.5-2.5 2.5 1.12 2.5 2.5-1.12 2.5-2.5 2.5z'/></svg>");
}

/* Map Waves ripple from tip base */
.pulse-ring {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    position: absolute;
    bottom: -4px; 
    z-index: 1;
    animation: map-ripple 2s ease-out infinite;
}
.purple-pulse { border: 3px solid rgba(120, 111, 214, 0.6); }
.orange-pulse { border: 3px solid rgba(243, 166, 51, 0.6); }

@keyframes map-ripple {
    0% { transform: scale(0.4); opacity: 1; }
    100% { transform: scale(4); opacity: 0; }
}


/* --- TIMELINE FOOTER TIMELINE TRACK (Matches image_df2c87.png) --- */
.timeline-legend-container {
    width: 100%;
    max-width: 900px;
    margin-top: 0px;
    padding: 0 40px;
    box-sizing: border-box;
}

/* Main Gradient Horizontal Bar */
.timeline-track {
    position: relative;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    
    /* Flowing color gradient configuration spanning across destinations */
    background: linear-gradient(90deg, rgba(220,220,220,0) 0%, #786fd6 25%, #f3a633 75%, rgba(220,220,220,0) 100%);
    background-size: 200% 100%;
    
    /* Smooth moving gradient animation across the vector bar */
    animation: gradient-flow 6s linear infinite alternate;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* Base Node setup for positioning tags safely along the bar */
.timeline-node {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -24%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Align Nodes Proportional to the Map locations */
.node-left { left: 30%; }
.node-right { left: 70%; }

/* Clean Minimal Node Circles overlapping the path line */
.node-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0; /* White masking border to give depth */
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.dot-purple { background-color: #786fd6; }
.dot-orange { background-color: #f3a633; }

/* Large Crisp Descriptions below each marker point */
.node-text {
    margin-top:20px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1d20;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

/* Responsive view optimization adjustments */
@media (max-width: 768px) {
    .timeline-legend-container { margin-top: 50px; }
    .node-text { font-size: 12px; margin-top: 24px; }
    .node-dot { width: 16px; height: 16px; border-width: 3px; }
    .timeline-track { height: 6px; }
}
.footer-custom {
            background-color: #011329; /* Dark Navy from image_39dd03.png */
            color: #ffffff;
            padding: 60px 0 30px 0;
        }

        .footer-title {
            font-weight: 700;
            font-size: 1.25rem;
            text-transform: uppercase;
            margin-bottom: 25px;
        }

        /* Specific alignment for the countries on the same line as the title */
        .location-header {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .location-flag {
            width: 45px;
            height: auto;
            border-radius: 2px;
        }

        .verticals-list {
            list-style: none;
            padding: 0;
            line-height: 2;
        }
.verticals-list a{color:#fff;text-decoration:none;transition: all 0.3s ease-in-out 0s;-webkit-transform: translateX(0);
-ms-transform: translateX(0);
transform: translateX(0);}
.verticals-list a:hover{-webkit-transform: translateX(5px);
  -ms-transform: translateX(5px);
  transform: translateX(5px);color:#057cf4;}
        .contact-link {
            text-decoration: none;
            color: inherit;
            display: flex;
            align-items: center;
            gap: 10px;
        }
.contact-link a{color:#fff;text-decoration:none;}
.contact-link a:hover{color:#067cf4;}
        .btn-contact {
            background-color: #ffffff;
            color: #067cf4;
            font-weight: 700;
            padding: 8px 30px;
            border-radius: 8px;
            text-transform: uppercase;
            border: none;
            transition: opacity 0.2s;
        }

        .btn-contact:hover {
            background: linear-gradient(90deg, #2d6cdf, #0b4bb3);
        }

        .footer-bottom {
            border-top: 1.5px solid rgba(255, 255, 255, 0.9);
            margin-top: 50px;
            padding-top: 25px;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .social-links ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;padding:0;
}
.social-links.style-3 ul li a {
  background-color: #fff;
  border-radius:2px;
}
.social-links ul li a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color:#011329;
  font-size: 20px;
  line-height: 1;text-decoration:none;
}
.social-links ul li a:hover{background: linear-gradient(90deg, #2d6cdf, #0b4bb3);color:#fff}
.copyright-link a{color:#fff;text-decoration:none;}
.copyright-link a:hover{color:#057cf4;}
/* INNER PAGE */
.bg-second {  background-color:var(--secondcolor) !important;}
.bg-cover {background-size: cover !important;background-position: center !important;}
.ht-100 {height: 100px;}
.jbs-title-iop h2{font-size:24px;line-height:32px;color:#000;font-weight:600;}
.over-lg-top .container{
	position:relative;
	top:-120px;
}
.jbs-dts-block.styl-01 {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    background: #ffffff;
    border-radius: 1rem;
	overflow: hidden;
}
.jbs-dts-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    background:#f0f5fd;
    width: 100%;
}
.jbs-dts-header-thumbs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
}
.jbs-dts-hgiu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.jbs-dts-hgiu figure {
    margin: 0;
}
.jbs-dts-iop {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    height: 25px;
    border-radius: 0.2rem;
    font-size: 12px;
    font-weight: 500;
    background: #ff891c;
    color: #ffffff;
}
.jbs-dts-header-caption {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-left: 2rem;
}
.jbs-mid-groups {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    width: auto;
}
.jbs-single-iou {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-right: 3rem;
}
.jbs-single-iou .jhu-subtitle, .jbs-dts-foot-block .jhu-subtitle{
    position: relative;
    font-weight: 500;
}
.jbs-single-iou .jhu-title {
    font-weight: 500;
    margin: 0;
}
.jbs-content h6{font-weight:600;}
.jbs-content p{font-size:16px;line-height:30px;color:#333;font-weight:500;}
.topbar {
    display: block !important;
    background: transparent;
    position: relative;
    top: 0px;
    border-left: 0;
    border-right: 0;
    padding: 0;
    z-index: 1;
    text-align: center;
    transition: transform 0.3s ease-out;margin-bottom:0;
}

.topbar li {
    float: none;
    display: inline-block;
    padding: 10px 20px;
}

.topbar li a.active {
    color:#0663d7;
    font-weight: 600;
}
.topbar li a::before{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:3px;
    background:#1e88e5;
    border-radius:10px;
    transform:translateX(-50%);
    transition:all 0.35s ease;
}

/* Glow Background Effect */
.topbar li a::after{
    content:"";
    position:absolute;
    inset:-8px -14px;
    opacity:0;
    transform:scale(0.8);
    transition:all 0.35s ease;
    z-index:-1;
}
.topbar li a:hover::before{
    width:100%;
}

.topbar li a:hover::after{
    opacity:1;
    transform:scale(1);
}
.topbar li a {
    color: #333;
    text-decoration: none;
    transition: all 0.35s ease;
    font-weight: 600;
    position: relative;   /* ADD THIS */
    display: inline-block; /* ADD THIS */
    padding: 5px 0;
}
.topbar li a:hover{transform:translateY(-3px); color:#0663d7;}
.pb-0 {
  padding-bottom: 0 !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.label {
  padding: 4px 15px;
  color: #ffffff;
  font-weight: 500;
  border-radius: 4px;
  font-size: 75%;
}
.bg-opacity-05 {
  --bs-bg-opacity: 0.1;
}
.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(25,135,84, 0.1) !important;
}
.text-success {
  --bs-text-opacity: 1;
  color: rgba(25,135,84,1) !important;
}
.gray-simple {
  background: #f1f5f8 !important;
}
.sprpower-skills {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.sprpower-skills span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  width: auto;
  padding: 2px 12px;
  font-weight: 500;
  font-size: 12px;
  background: #d2ede9;
  border-radius: 0.2rem;
  color: #267f72;
  margin: 0.5rem 0.7rem 0.5rem 0rem;
}
.nav-pills.small-jbs-tab .nav-link {
		width: 100%;
	}
.nav-pills.small-jbs-tab .nav-link {
  padding: 0.4rem 1.5rem;
  border-radius: 0.2rem;
  background: #eff1f5;
  color: #000;
  font-size: 13px;
}
.nav-pills.small-jbs-tab .nav-link.active, .nav-pills.small-jbs-tab .show > .nav-link {
  background: var(--bk-color-heading-primary);
  color: #ffffff;
}
.small-jbs-tab li.nav-item {
		flex: 1 1 auto;
	}
	.nav-pills.small-jbs-tab .nav-link {
		width: 100%;
	}
	ul.simple-list, ul.colored-list {padding: 0;  margin: 0;}
	ul.simple-list li, ul.colored-list li {
  list-style: none;
  position: relative;
  color: #333;
  font-weight: 500;
  padding: 0.2rem 0rem 0.2rem 1.4rem;
}
ul.simple-list li::before {
  content: "\f192";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 0;
}
ul.colored-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  color: #0663d7;
  position: absolute;
  left: 0;
}
button{border:0;}
@media (max-width: 767px) {
  .nav-pills.small-jbs-tab .nav-link {
    width: 100%;
  }
  .jbs-dts-header-caption {
		padding: 0;
		margin-top: 1rem;
	}
}
.quick-apply-wrap{
    margin-top:10px;
    margin-bottom:5px;
}

  /* Awesome Light Pop-Up Box Styles */
    .pop-modal-content {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 24px;
      box-shadow: 
        0 10px 15px -3px rgba(0, 0, 0, 0.02),
        0 30px 60px -15px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(15, 23, 42, 0.04);
      padding: 2.2rem;
    }

    /* Pop badge styling */
    .pop-badge-icon {
      width: 54px;
      height: 54px;
      background: linear-gradient(90deg,#0663d7,#034ead);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
    }

    .detail-side-heads h3 {
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.5px;
    }

    .detail-side-heads p {
      color: #475569;
      font-size: 0.95rem;
    }

    /* Custom Minimalist Floating Inputs from pop design */
    .form-grp.group {
      position: relative;
      margin-bottom: 0.8rem;
    }

    .form-grp.group input, 
    .group textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      background: #f1f5f9;
      border: 2px dashed #cbd5e1;
      border-radius: 12px;
      color: #0f172a;
      font-size: 0.95rem;
      transition: all 0.25s ease;
      outline: none;
    }
.form-grp.group input:hover, .group textarea:hover{border-color:#3b82f6;}
    /* Textarea adjustment */
    .group textarea {
      min-height: 100px;
      resize: vertical;
    }

    /* Input focus styles */
    .form-grp.group input:focus,
    .group textarea:focus {
      border-color: #3b82f6;
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.12);
    }

    /* Smooth clean file upload box */
    .fileupload {
      background: #f8fafc;
      border: 2px dashed #cbd5e1;
      border-radius: 12px;
      padding: 1.25rem;
      text-align: center;
      transition: border-color 0.2s ease;
    }
    
    .fileupload:hover {
      border-color: #3b82f6;
    }

input[type=file] {
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    padding: 10px;
    height: auto;
    width: 100%;
    color: #999;
    color: #333;
}

input[type=file]:focus {
    box-shadow: none;
    outline: none
}

input[type=file]::-webkit-file-upload-button,
input[type=file].invalid::-webkit-file-upload-button,
input[type=file].valid::-webkit-file-upload-button {
    color: #fff;
    font-size: 13px;
    border: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    border-radius: 6px;
    padding: 8px 10px 8px 38px;
    font-weight: 600;
    background:#05214b url(../images/upload_icon.png) 8px center no-repeat;
    outline: none
}

input[type=file]::-webkit-file-upload-button:focus,
input[type=file].invalid::-webkit-file-upload-button:focus,
input[type=file].valid::-webkit-file-upload-button:focus {
    box-shadow: none;
    outline: none
}

.checkbox {
    position: relative;
    display: block;
    margin: 6px 0;
    padding: 0;
}

.radio {
    position: relative;
    display: block;
    margin: 6px 14px;
    padding: 0;
}

.radio label {
    min-height: 20px;
    padding-left: 0;
    margin: 0 0 2px 0;
    font-weight: 400;
    cursor: pointer;
    max-width: 100%;
    width: 250px;
    float: left;
}

.radio input[type=radio],
.radio-inline input[type=radio] {
    position: relative;
    margin-top: 0;
    margin-right: 8px;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.radio+.radio,
.checkbox+.checkbox {
    margin-top: 6px;
}

input[type=checkbox],
input[type=radio] {
    margin: 0 0;
    margin-top: 1px;
    line-height: normal;
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox] {
    position: relative;
    margin-top: 0;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-right: 8px;
}

.checkbox span {
    min-height: 20px;
    padding-left: 0;
    margin: 0 0 2px 0;
    font-weight: 400;
    cursor: pointer;
    max-width: 100%;
    width: 232px;
    float: left;
}

.space-13 {
    padding-top: 13px;
}

button {
    border: 0;
    padding: 0;
}

.upfiletxt {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    padding: 10px 0 0 0;
}

@media (min-width:100px) and (max-width:767px){
.mb20{margin-bottom:20px;}
.hero-content h1 { font-size: 1.5rem; text-align: center; }
.section-title h2 {font-size: 24px;line-height: 32px;}
.section-title p {font-size: 13px;line-height: 20px;}
.containerinn { max-width: 98%;}
.rating-list li{font-size:13px;}
.rating-list li span {  margin-left: 0;}
.testimonialSwiper .itemt>p{font-size:13px;line-height:20px;}
.testimonialSwiper .itemt .profile .information p{font-size:16px;}
.read-more-trigger{font-size:14px;}
.testimonialSwiper .itemt{margin:0 auto 10px auto;}
.bkm-does p {font-size: 14px;line-height: 28px;margin-bottom: 10px;font-weight: 500;}
p.quotetxt {color: #05193c !important;font-size: 22px !important;font-weight: 700 !important;line-height: 36px !important;}
.digital-hq{padding: 10px 0 20px 0;}
.digital-hq p {font-size: 14px;line-height: 26px;text-align: center;color: #000;margin-bottom: 10px;font-weight: 500;}
.digitalhqbox {padding: 20px 32px;max-width: 100%;}
.mt-34 { margin-top: 0.4rem !important;}
.ceo-section p {font-size: 14px; line-height: 26px;text-align: center;margin: 0 0 10px 0; font-weight: 500;}
.ceo-section .quote-card{padding:20px 40px;}
.ceo-section .quote-text {font-size: 22px;margin: 0 0 10px 0;text-align: center;}
.benefits {padding: 10px 20px 20px 20px;}
.section-titleleft h2 {font-size: 24px;line-height: 32px;text-align:center;}
.love-section .desc {line-height: 26px;font-size: 14px;text-align: center;}
.love-section .sub-title {font-weight: 700;margin-top: 20px;font-size: 18px;text-align: center; line-height: 28px;}
.cta-banner{margin:10px 0;}
.swiper-pagination-bullet{width:8px;height:8px;}
.process-card{padding:15px;}
.text-process {font-size: 12px;}
.footer-title {font-size: 1rem;margin-bottom: 20px;}
.verticals-list a{font-size:13px;}
footer p{font-size:13px;}
.contact-link{font-size:13px;}
.jbs-title-iop h2 {font-size: 18px;}
.jbs-content p {font-size: 14px;line-height: 28px;text-align: justify;}
.detail-side-heads p {color: #475569;font-size: 0.65rem;}
.timeline-node {transform: translate(-50%, -16%);}
.svg-pin {
    width: 28px;
    height: 28px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}
}