.floating-arrow {
    position: absolute;
    left: 63%;
    bottom: 50px;
    z-index: 12;
    animation: arrowFloat 2.4s ease-in-out infinite;

    /* improves sharpness on all screens */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: brightness(1.2);
}

.floating-arrow img {
    width: 109px;   /* EXACT size like reference */
    height: 64px;
    object-fit: contain;
    opacity: 1;
}

@keyframes arrowFloat {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}
.video-full {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.image-column figure {
    width: 100%;
    height: 100%;
    min-height: 350px;  /* adjust if needed */
    overflow: hidden;
    border-radius: 12px;
}
@media (max-width: 768px) {
    .video-full {
        height: auto;
        object-fit: contain;   /* prevents cropping on mobile */
    }
}
.video-bg-box {
    position: relative;
    width: 100%;
    height: 230px; /* same height as your image */
    overflow: hidden;
    border-radius: 12px;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fill entire area */
}
.video-bg-section {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-bg-section .video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark overlay for readability */
.video-bg-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 2;
}

.video-bg-section .auto-container,
.video-bg-section .title-box {
    position: relative;
    z-index: 3;
}

/* Play button styles */
.video-play-btn {
    margin-top: 25px;
}

.video-play-btn a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.video-play-btn i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ff0000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    
}

.logo-carousel-section {
    padding: 40px 0;
    overflow: hidden;
    background: #ffffff00; /* transparent or choose any bg */
}

.logo-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.logo-track {
    display: flex;
    width: calc(250px * 10); /* 10 logos */
    animation: scroll 20s linear infinite;
}

.logo {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
}

.logo img {
    width: 120px;
    height: auto;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.logo img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Smooth continuous slide */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Section Styling */
.how-we-work {
  padding: 80px 0;
  text-align: center;
  background: #ffffff;
}

.how-we-work h2 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1c1c1c;
}

.how-we-work .subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
}

/* Step Container */
.work-steps {
  display: flex;
  justify-content: center;
  gap: 35px;
  flex-wrap: wrap;
}

/* Each Card */
.step-card {
  background: #f9fbff;
  padding: 30px;
}
/* Container */
.how-we-work-title {
    padding: 20px 0;
    animation: fadeSlide 1s ease forwards;
}

.how-we-work-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-top: 15px;
    color: #1a1a1a;
}

.how-we-work-title .how-subtitle {
    font-size: 16px;
    margin-top: 5px;
    color: #555;
}

/* Icon Styling */
.how-icon {
    width: 70px;
    height: 70px;
    display: inline-block;
    animation: iconPop 1.3s ease forwards;
}

/* Animations */
@keyframes fadeSlide {
    0% { opacity: 0; transform: translateY(25px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes iconPop {
    0% { opacity: 0; transform: scale(0.4); }
    60% { opacity: 1; transform: scale(1.15); }
    100% { transform: scale(1); }
}
/* How We Work Styling */
/* HOW WE WORK EQUAL BLOCKS */
.how-block {
    width: 100%;
}

.how-block .inner-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.how-block:hover .inner-box {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.10);
}

/* FIXED IMAGE BOX */
.hw-img-box {
    width: 100%;
    height: 220px;                     /* FIXED HEIGHT */
    background: #EEF4FF;               /* light soft bg */
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.hw-img-box img {
    width: 80%;
    height: auto;
    object-fit: contain;              /* keeps image clean */
    transition: .3s ease;
}

.how-block:hover .hw-img-box img {
    transform: scale(1.05);
}

/* CONTENT */
.hw-content {
    flex-grow: 1;      /* push content bottom to equalize height */
}

.hw-number {
    background: #1B4ED7;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
}

.hw-content .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hw-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* MAKE COLUMNS EQUAL HEIGHT */
.project-carousel .project-block {
    padding: 10px;
}

.project-carousel .owl-stage {
    display: flex;
}

.project-carousel .owl-item {
    display: flex;
    height: auto;
}


.work-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.work-box {
    width: 32%;
    background: transparent;
    text-align: left;
}

.work-img {
    width: 100%;
    border-radius: 18px;
    background: #EDF3FF;   /* soft blue tone like reference */
}

/* Content */
.work-content {
    margin-top: 20px;
}

.work-number {
    background: #1B4ED7;
    color: #fff;
    width: 28px;
    height: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.work-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 8px 0;
    color: #1a1a1a;
}

.work-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Hover subtle animation */
.work-box:hover .work-img {
    transform: translateY(-4px);
    transition: .3s ease;
}

@media(max-width: 991px){
    .work-box { width: 48%; }
}

@media(max-width: 600px){
    .work-box { width: 100%; }
}
/* HOW WE WORK - UNIQUE CLASS DESIGN */
.howwork-section {
    padding: 40px 0;
}

.howwork-row {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* Each Box */
.howwork-box {
    width: 32%;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
}

.howwork-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* FIXED IMAGE SIZE */
.howwork-img {
    background: #eef4ff;
    height: 200px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.howwork-img img {
    width: 75%;
    height: auto;
    object-fit: contain;
    transition: .3s ease;
}

.howwork-box:hover img {
    transform: scale(1.04);
}

/* Content */
.howwork-content {
    margin-top: 18px;
}

.howwork-num {
    background: #1B4ED7;
    color: #fff;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 700;
}

.howwork-content h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 12px 0 6px;
}

.howwork-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* RESPONSIVENESS */
@media(max-width: 991px) {
    .howwork-box {
        width: 48%;
    }
}

@media(max-width: 600px) {
    .howwork-box {
        width: 100%;
    }
}
/* SECTION HEADING */
.howwork-heading {
    text-align: center;
    margin-bottom: 40px;
}

.howwork-heading h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.howwork-heading p {
    font-size: 16px;
    margin-top: 10px;
    color: #555;
}
/* MAIN SECTION */
.foundation-section {
    position: relative;
  padding: 120px 0 70px;
}

/* HEADING */
.foundation-heading {
    text-align: center;
    margin-bottom: 40px;
}

.foundation-heading h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
}

/* 3 COLUMN WRAPPER */
.foundation-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD BOX */
.foundation-box {
    width: 32%;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    min-height: 430px;
}

/* Hover effect */
.foundation-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

/* TOP BORDER COLORS */
.red-border {
    border-top: 4px solid #e70000;
}

.blue-border {
    border-top: 4px solid #165DFF;
}

/* Icon Styling */
.foundation-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Title */
.foundation-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

/* Paragraph */
.foundation-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Values list */
.values-list {
    text-align: left;
    margin-top: 10px;
    padding-left: 18px;
}

.values-list li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 991px) {
    .foundation-box {
        width: 48%;
    }
}

@media (max-width: 600px) {
    .foundation-box {
        width: 100%;
    }
}

/* MAIN CARD BASE */
.foundation-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    min-height: 420px;
    text-align: center;
}

/* Hover Lift Effect */
.foundation-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.10);
}

/* RED BORDER */
.red-border {
    border-top: 4px solid #e00000;
}

/* ICON */
.foundation-icon img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* TITLE */
.foundation-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

/* VALUE LIST */
.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    font-size: 16px;
    color: #333;
    line-height: 1.75;
    margin-bottom: 12px;
}

/* Bold Label */
.values-list li strong {
    font-weight: 700;
    color: #000;
}
/* OUTER SECTION (RED BACKGROUND) */
.values-section {
  background: #fdfdfd;              /* red background around the card */
  padding: 70px 0;
}

.values-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

/* WHITE CARD */
.values-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 40px 35px 36px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  text-align: center;
}

/* TOP ICON */
.values-main-icon img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 18px;
}

/* HEADING */
.values-heading {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 26px;
}

/* GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 40px;
}

/* ITEM */
.value-item {
  text-align: center;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 6px;
  color: #111;
}

.value-item p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ICON CIRCLES */
.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* COLOR VARIANTS */
.icon-yellow {
  background: #fff7d1;
  color: #f4a500;
}

.icon-dark {
  background: #f0f0f0;
  color: #222;
}

.icon-teal {
  background: #e0f7f4;
  color: #008b7f;
}

.icon-pink {
  background: #ffe5f1;
  color: #e83976;
}

.icon-gold {
  background: #ffe7bb;
  color: #f2a300;
}

/* LAST ITEM CENTER FULL ROW */
.value-item-full {
  grid-column: 1 / -1;
  max-width: 320px;
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .values-card {
    padding: 32px 22px 28px;
  }

  .values-heading {
    font-size: 26px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-item-full {
    max-width: none;
  }
}/* ROTATING ARROW ANIMATION */
.glitter-arrow {
    position: absolute;
    top: -20px;
    left: 50%;
    width: 35px;
    height: 35px;
    transform: translateX(-50%);
    animation: orbit 6s linear infinite;
    z-index: 5;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.9));
}

/* Header responsiveness improvements */
@media (min-width: 1400px) {
    /* allow a bit more width on very large screens (projectors) */
    :root {
        --container-width: 1400px;
    }
    .main-header .main-box {
        align-items: center;
    }
    .main-header .main-box .logo-box .logo img {
        max-width: 220px; /* keep logo from growing too large */
    }
    .main-header .main-box .nav-outer .main-menu .navigation {
        white-space: nowrap; /* avoid unexpected wrapping */
    }
}

@media (max-width: 350px) {
    /* tweak header small-screen padding */
    .main-header .main-box {
        padding: 10px 10px;
    }
}

.glitter-arrow img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: glitter 1.5s infinite ease-in-out;
}

/* ROTATION PATH */
@keyframes orbit {
    0%   { transform: translateX(-50%) rotate(0deg)     translateY(-160px) rotate(0deg); }
    25%  { transform: translateX(-50%) rotate(90deg)    translateY(-160px) rotate(-90deg); }
    50%  { transform: translateX(-50%) rotate(180deg)   translateY(-160px) rotate(-180deg); }
    75%  { transform: translateX(-50%) rotate(270deg)   translateY(-160px) rotate(-270deg); }
    100% { transform: translateX(-50%) rotate(360deg)   translateY(-160px) rotate(-360deg); }
}

/* GLITTER EFFECT */
@keyframes glitter {
    0%, 100% { filter: drop-shadow(0 0 6px #fff) brightness(1); }
    50%      { filter: drop-shadow(0 0 12px #ffe699) brightness(1.4); }
}
/* MAIN SECTION */
.core-values {
    padding: 50px 0 30px;
    background: #f9fafa;
    text-align: center;
}

/* TOP HEADING */
.values-top .values-main-icon {
    width: 75px;
    height: 75px;
    object-fit: contain;
    margin-bottom: 12px;
}

.values-top h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.values-top p {
    font-size: 15px;
    color: #555;
    margin-bottom: 40px;
}

/* GRID ROW */
.values-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* CARD */
.value-card {
    width: 18%;
    min-width: 180px;
    background: #ffffff;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    transition: .3s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* ICON WRAPPER */
.value-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 15px;
    padding: 10px;
}

.value-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* COLORED BG CIRCLES */
.bg1 { background: #ffe9e6; }
.bg2 { background: #ffe8d4; }
.bg3 { background: #fff2d6; }
.bg4 { background: #ffe6f2; }
.bg5 { background: #ffe9ef; }

/* TEXT STYLING */
.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.value-card p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .value-card { width: 30%; }
}

@media (max-width: 768px) {
    .value-card { width: 45%; }
}

@media (max-width: 500px) {
    .value-card { width: 100%; }
}
/* MAIN WRAPPER */
.who-section {
    background: #fdf6f6;
    padding: 70px 0;
    font-family: "Poppins", sans-serif;
}

.who-container {
    display: flex;
    gaps: 40px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* LEFT SIDE */
.who-left {
    width: 52%;
}

.who-title {
    font-size: 34px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 8px;
}

.who-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #1a2a49;
    margin-bottom: 12px;
}

.who-desc {
    font-size: 15px;
    color: #5a6a85;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BULLET POINTS */
.who-points li {
    list-style: none;
    font-size: 16px;
    margin-bottom: 12px;
    color: #1a2a49;
}

.who-points strong {
    color: #0d1b3e;
}

.dot {
    height: 10px;
    width: 10px;
    background: #226cd8;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

/* LEFT IMAGE */
.who-image img {
    width: 260px;
    margin-top: 25px;
}

/* RIGHT SIDE */
.who-right {
    width: 40%;
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.dna-title {
    font-size: 26px;
    font-weight: 800;
    color: #0d1b3e;
    margin-bottom: 10px;
}

.dna-subtitle {
    font-size: 15px;
    color: #5a6a85;
    margin-bottom: 25px;
}

/* DNA CARD */
.dna-card {
    background: #eaf2ff;
    padding: 18px 20px;
    border-radius: 14px;
    display: flex;
    gap: 18px;
    margin-bottom: 18px;
    transition: 0.3s;
}

.dna-card:hover {
    background: #dbe8ff;
    transform: translateY(-3px);
}

.dna-icon i {
    font-size: 30px;
    color: #226cd8;
}

.dna-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 3px;
}

.dna-content p {
    font-size: 14px;
    color: #4c5b78;
    line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .who-container {
        flex-direction: column;
    }
    .who-left, .who-right {
        width: 100%;
    }
    .who-right {
        margin-top: 25px;
    }
}
/* CTA SECTION */
.cta-section {
    padding: 70px 0;
    background: linear-gradient(135deg, #d70000, #d31e1e, #000000);
    text-align: center;
    color: #ffffff;
}

/* CONTENT CENTERING */
.cta-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

/* BUTTON STYLES */
.cta-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

/* PRIMARY BUTTON */
.cta-btn.primary {
    background: #ffffff;
    color: #111;
}

.cta-btn.primary:hover {
    background: #f4f4f4;
    transform: translateY(-3px);
}

/* OUTLINE BUTTON */
.cta-btn.outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cta-btn.outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media(max-width: 600px) {
    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 70%;
        margin: auto;
    }
}
/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(90deg, #fde7e7 0%, #fff 50%, #fde7e7 100%);
    text-align: center;
    border-radius: 0px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-block;
    background: #e40000;
    padding: 14px 30px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #b30000;
    transform: translateY(-2px);
}
/* Make all counter blocks equal height */
.fun-fact-section .fact-counter .row {
    display: flex;
    flex-wrap: wrap;
}

.fun-fact-section .counter-block {
    display: flex;
}

.fun-fact-section .counter-block .inner {
    flex: 1;
    height: 100%;
}
/* Responsive Video Container */
.video-responsive-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio - auto adjusts */
    overflow: hidden;
    border-radius: 18px;
    background: #000;
    max-height: 80vh; /* prevent overflow beyond viewport on tall projectors */
    max-width: 100%;
    display: block;
}

/* Video Inside */
.video-responsive-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        object-fit: cover; /* Fill wrapper while preserving aspect ratio */
        max-width: 100%;
}

    /* For videos used outside the wrapper, and to be robust: */
    .video-responsive {
        width: 100% !important;
        height: auto !important;
        max-width: 100%;
        display: block;
    }

/* ensure the video is centered inside columns */
.image-column .inner-column {
        display: flex;
        align-items: center;
        justify-content: center;
}

/* iframe / embed fallback for other video sources */
.video-responsive-wrapper iframe,
.video-responsive-wrapper embed,
.video-responsive-wrapper object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* make video stack taller on very small narrow screens */
@media (max-width: 480px) {
    .video-responsive-wrapper { padding-bottom: 75%; } /* taller aspect ratio for phones */
}

/* make video slightly taller on very wide screens to avoid letterbox */
@media (min-width: 1400px) {
    .video-responsive-wrapper { padding-bottom: 50%; }
}
/* WRAPPER */
.home-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 99;
}

/* FLEX LAYOUT */
.container-home-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 25px;
    flex-wrap: wrap; /* projector fix */
}

/* LOGO */
.home-logo img {
    height: 55px;
}

/* NAVIGATION */
.home-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.home-nav ul li a {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    padding: 10px;
    text-decoration: none;
}

/* CTA BUTTON */
.cta-btn {
    padding: 10px 18px;
    background: #ff0000;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

/* MOBILE TOGGLE HIDDEN ON DESKTOP */
.home-mobile-toggle {
    display: none;
    font-size: 26px;
}

/* MOBILE MENU */
.home-mobile-menu {
    display: none;
    background: #fff;
    padding: 20px;
}

.home-mobile-menu ul li a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    border-bottom: 1px solid #eee;
}

/* PROJECTOR FIX — Make header compact at 1200px–1400px */
@media (max-width: 1400px) and (min-width: 1200px) {

    /* Reduce logo size */
    .header-style-two-new .logo img {
        height: 48px !important;
    }

    /* Reduce spacing in the nav menu */
    .header-style-two-new .navigation > li > a {
        padding: 8px 14px !important;
        font-size: 15px !important;
    }

    /* Compact main-box */
    .header-style-two-new .main-box {
        padding: 10px 20px !important;
        gap: 10px !important;
    }

    /* Shrink phone block */
    .header-style-two-new .info-btn-two {
        font-size: 12px !important;
        line-height: 14px;
    }

    .header-style-two-new .info-btn-two small {
        font-size: 10px !important;
    }

    /* Compact CTA button */
    .header-style-two-new .theme-btn.btn-style-two {
        padding: 8px 16px !important;
        font-size: 14px !important;
    }

    /* Allow nav to take more space */
    .header-style-two-new .nav-outer {
        flex: 1 !important;
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    /* Everything stays on one line */
    .header-style-two-new .main-box {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
    }
}

/* BELOW 1200px — switch to center layout */
@media (max-width: 1200px) {
    .header-style-two-new .main-box {
        display: block !important;
        text-align: center;
    }

    .header-style-two-new .nav-outer {
        width: 100%;
        margin: 15px 0 !important;
        display: flex;
        justify-content: center;
    }

    .header-style-two-new .outer-box {
        width: 100%;
        justify-content: center !important;
        margin-top: 10px;
        gap: 15px;
    }
}

/* container that wraps the row + logo */
.team-wrapper {
    position: absolute;
}

/* sidebar logo next to the images */
.team-side-logo {
    position: relative;

    left: 1270px;
    top: 50%;
    transform: translateY(-50%);
}

.team-side-logo img {
    width: 150px;
    opacity: 1;
    transform: rotate(0deg);
}

/* RESPONSIVE BEHAVIOR */
@media (max-width: 1400px) {
    .team-side-logo {
        right: -40px;
    }
}

@media (max-width: 1200px) {
    .team-side-logo {
        display: none; /* hide on smaller screens */
    }
}

/* Remove ALL top spacing before Kernel Divers logo */
.team-section-two {
    padding-top: 0 !important;
    margin-top: -40px !important;   /* pulls the section upward */
}

/* Remove bottom spacing from HOW WE WORK section */
.howwork-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove spacing inside the logo container */
.team-section-two .sec-title > div {
    margin-top: 0 !important;
    padding-top: 0 !important;
}



/* -----------------------------------
   PREMIUM MOBILE MENU – ALLEEM ITns
----------------------------------- */

/* MAIN PANEL */
.mobile-menu .menu-box {
    background: #ffffff !important;
    padding: 20px 0 !important;
    box-shadow: 0 0 25px rgba(0,0,0,0.08);
    border-radius: 0;
}

/* CLOSE BUTTON */
.mobile-menu .close-btn {
    color: #001F3F !important;
    font-size: 26px !important;
    font-weight: 600;
    top: 10px !important;
}

/* MENU LIST */
.mobile-menu .navigation li {
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
}

.mobile-menu .navigation li > a {
    padding: 16px 22px !important;
    font-size: 17px !important;
    color: #001F3F !important;          /* Premium blue */
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* HOVER EFFECT */
.mobile-menu .navigation li:hover > a {
    background: rgba(0, 31, 63, 0.05);
    color: #001F3F !important;
}

/* DROPDOWN ICON */
.mobile-menu .navigation li.dropdown .dropdown-btn {
    color: #001F3F !important;
    font-size: 20px;
    border-left: none !important;
}

/* SUB-MENU */
.mobile-menu .navigation li > ul > li > a {
    padding-left: 35px !important;
    font-size: 15px !important;
    color: #333 !important;
    font-weight: 500 !important;
}

.mobile-menu .navigation li > ul > li:hover > a {
    color: #000 !important;
}

/* CONTACT INFO SECTION */
.mobile-nav__contact li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.mobile-nav__contact li,
.mobile-nav__contact li a,
.mobile-nav__contact li i {
    color: #001F3F !important;
    font-size: 15px;
    font-weight: 500;
}

/* SOCIAL ICONS */
.mobile-nav__social a {
    color: #001F3F !important;
    font-size: 18px;
    margin-right: 10px;
    opacity: 0.85;
}

.mobile-nav__social a:hover {
    opacity: 1;
}

/* LOGO BOX */
.mobile-nav__content .logo-box img {
    max-width: 140px;
    margin: 10px 0 20px 15px;
}

/* ADD SOFT ANIMATION */
.mobile-menu .menu-box {
    transition: all 0.35s ease-in-out !important;
}

/* MOBILE MENU – CHANGE RED TO WHITE */
.mobile-menu .menu-box {
    background: #ffffff !important;   /* White background */
}

/* MOBILE MENU TEXT – CHANGE TO BLACK */
.mobile-menu .navigation li > a {
    color: #000000 !important;        /* Black text */
}

/* SUB MENU DROPDOWN ICON */
.mobile-menu .navigation li.dropdown .dropdown-btn {
    color: #000000 !important;        /* Black icon */
}

.mobile-menu .navigation li.dropdown .dropdown-btn:after {
    border-left: 1px solid rgba(0, 0, 0, 0.2) !important;
}

/* BORDERS – LIGHT GREY INSTEAD OF WHITE */
.mobile-menu .navigation li {
    border-bottom: 1px solid rgba(0,0,0,0.1) !important;
}

.mobile-menu .navigation {
    border-top: 1px solid rgba(0,0,0,0.1) !important;
}

/* CONTACT INFO TEXT + ICONS */
.mobile-nav__contact li,
.mobile-nav__contact li a,
.mobile-nav__contact i {
    color: #000000 !important;
}

/* CLOSE (X) BUTTON */
.mobile-nav__close,
.mobile-menu .close-btn {
    color: #000000 !important;
}

/* SOCIAL ICONS */
.mobile-nav__social a {
    color: #000000 !important;
}


/* Social icons inside white mobile menu */
.mobile-social-section {
    padding: 20px 0;
    border-top: 1px solid #eee;
    background: #ffffff;
    text-align: center;
}

.mobile-social-section ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.mobile-social-section li {
    list-style: none;
}

.mobile-social-section a {
    font-size: 22px;
    color: #001F3F; /* Alleem ITns blue */
    transition: 0.3s;
}

.mobile-social-section a:hover {
    opacity: 0.7;
    transform: scale(1.15);
}


.howwork-section {
    padding-bottom: 80px !important;
}

.team-section-two {
    margin-top: 80px !important;
}


