@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* ≥576px */
@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

/* ≥768px */
@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

/* ≥992px */
@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

/* ≥1200px */
@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

/* ≥1400px (Bootstrap default breakpoint) */
@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1520px;
    /* YOUR CUSTOM WIDTH */
  }
}

/* ===========================================================
   COLOR VARIABLES
   =========================================================== */
:root {
  --primary: #457ae5;
  --dark-blue: #081f4d;
  --dark: #3d4246;
  --light: #a1a5ad;
}

/* ===========================================================
   GLOBAL STYLES
   =========================================================== */
body {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
  font-size: 18px;
  color: var(--light);
}

.nav-menu a:focus {
  color: var(--primary);
  outline: none;
}

/* Default (large screens) */
h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 800;
  color: white;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  font-weight: 800;
  color: var(--primary);
}

h3 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--dark-blue);
}

h4 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

img {
  max-width: 100%;
}

/* Button 3 */
.button-1 {
  background: var(--primary);
  color: white !important;
  padding: 10px 55px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.6s ease;
  font-size: 18px;
}

.button-1 a {
  color: white !important;
}

.button-1:hover {
  background: var(--dark-blue);
  color: rgb(255, 255, 255);
}

/* Button 3 */
.button-2 {
  padding: 10px 40px;
  background: var(--light);
  color: black;
  font-size: 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.5s ease;
}

.button-2:hover {
  background: var(--primary);
  color: white;
}

.sp {
  padding: 80px 0;
}

/* Removes Bootstrap focus outline */
button.navbar-toggler:focus {
  box-shadow: none;
}

/* HEADER */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  background: #fff;
  z-index: 999;
  border-bottom: 1px solid #eee;
  padding: 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}

.logo img {
  width: 100%;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 0;
}

ul#menu-main-menu {
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-size: 18px;
  font-weight: 400;
}

.nav-menu a.active {
  color: #3a6df0;
}

.nav-btn {
  background: #3a6df0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
}

.gap-header {
  margin-top: 78px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #333;
}

/* ================================
   MENU TOGGLE CROSS ANIMATION
   ================================ */

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.menu-toggle span {
  transition: all 0.3s ease;
}

/* ================= ABOUT SECTION ================= */
.about {
  background: linear-gradient(30deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(224, 250, 255, 1) 100%);
}

.about-head {
  margin-bottom: 40px;
}

.about-row {
  align-items: stretch;
}

.about-text {
  padding-right: 20px;
}

.about-text.about-right {
  padding-left: 35px;
  padding-right: 0;
}

/* vertical divider like screenshot */
.about-right {
  border-left: 1px solid #d7dde6;
  height: 100%;
}

.rectangle {
  margin-top: 70px;
}

.about-head h4 {
  font-size: 18px;
  color: var(--dark);
  word-spacing: 2px;
}

.about-row p {
  font-size: 16px;
}

.about-cta {
  margin-top: 60px;
}

.about-cta .button-1 {
  padding: 12px 60px;
}




#menu-main-menu li>a {
  position: relative;
}

#menu-main-menu li.current-menu-item>a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #0d6efd;
}


.banner-owl .item iframe {
  height: 600px;
}

.banner-owl .item {
  aspect-ratio: 16 / 9;
}

.banner-owl .item iframe {
  width: 100%;
  height: 100%;
}









/* ================= ENGAGEMENT AREAS ================= */
.engagement {
  background: linear-gradient(267deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(224, 250, 255, 1) 100%);
}

.engagement-head {
  margin: 0 auto 40px;
}

.title-sec {
  margin-bottom: 25px;
}

.engagement-intro {
  color: var(--dark);
}

/* Card */
.eng-card {
  border: 1px solid #d7dde6;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  height: 100%;
}

.eng-card-head {
  background: linear-gradient(270deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(207, 214, 229, 1) 100%);
  padding: 11px 30px;
}

.eng-card-head h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #3d424c;
}

.eng-card-body {
  padding: 22px 30px;
}

.eng-card-body p {
  font-size: 16px;
  line-height: 25px;
  color: #808793;
  margin-bottom: 14px;
}

.eng-label {
  font-size: 18px;
  font-weight: 800;
  color: #2d3440;
  margin: 15px 0 10px;
}

/* Bullet list (blue arrows like screenshot) */
.eng-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.eng-list li {
  position: relative;
  padding-left: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: #808793;
  margin-bottom: 6px;
}

.eng-list li:before {
  content: '▶';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 10px;
  color: #3a6df0;
}

/* Wide card spacing */
.eng-card-wide .eng-card-body p {
  max-width: 1080px;
}

h3.engagement-subhead.title-sec {
  margin-bottom: 40px;
}

.opposite-side {
  transform: scaleX(-1);
}

/* ================= HOW WE WORK TOGETHER ================= */
.work-together {
  background: #ffffff;
}

.work-head {
  margin: 0 auto 50px;
}

.work-subtitle {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 25px;
}

.work-intro {
  color: var(--dark);
}

/* Card */
.work-card {
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 35px 30px;
  height: 100%;
}

.work-card-head {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.work-icon img {
  width: 100%;
}

.work-card-head h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #3d424c;
  line-height: 30px;
}

.work-desc {
  font-size: 16px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 15px;
}

.work-label {
  font-size: 18px;
  font-weight: 600;
  color: #3d424d;
  margin: 20px 0 12px;
  border-bottom: 1px solid #dcdde0;
  padding-bottom: 5px;
}

/* checklist */
.work-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.work-list li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--light);
  margin-bottom: 3px;
}

.work-icon {
  width: 80px;
  min-width: 80px;
}

.work-list li::before {
  content: '\f00c';
  /* Font Awesome check icon */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  /* solid style */
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-size: 14px;
}

/* CTA */
.work-cta {
  margin-top: 70px;
}

.work-cta h3 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.work-cta .button-1 {
  padding: 12px 60px;
  font-size: 18px;
}

.work-cta p {
  margin: 12px 0 40px 0;
  font-size: 18px;
  color: #8a8f99;
}

.client-sec {
  background: url(https://sudeepbanerjee.com/wp-content/uploads/2026/02/client-bg.jpg);
  background-size: cover;
  background-position: center;
  width: 100%;
}

.client-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.client-logos-img {
  margin: 0 0.2% 0.2%;
  max-width: 13.8%;
}

.client-logos img {
  max-width: 100%;
}

.seen-logos .client-logos-img {
  text-align: center;
  padding: 0 15px;
}

.client-sec h2.title-sec {
  color: white;
}

.client-sec .work-head {
  margin: 0 auto 40px;
}

.client-logos-img.client-logos-6 {
    max-width: 18.8%;
}

/* ================= SELECTED VENTURES ================= */
.ventures {
  /* background: linear-gradient(120deg, #f7fbff 0%, #f4fbff 45%, #f7ffff 100%); */
  background: linear-gradient(30deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(224, 250, 255, 1) 100%);
}

.ventures-head {
  margin-bottom: 50px;
}

.ventures-pill {
  display: inline-block;
  background: #8b8f98;
  color: #fff;
  padding: 6px 53px;
  border-radius: 30px;
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ventures-grid {
  justify-content: center;
}

.ventures-head h3 {
  color: var(--dark);
}

.venture-card {
  margin: 5px;
}

.venture-card img {
  width: 100%;
}

/* .venture-card{
    background: #fff;
    border-radius: 10px;
    padding: 18px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.10);
    transition: all 0.3s ease;
}

.venture-card img{
    max-height: 55px;
    width: auto;
    object-fit: contain;
    filter: grayscale(0%);
} */

/* subtle hover like screenshot */
/* .venture-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
} */

/* .venture-card {
    height: 135px;
}
.venture-card img {
    height:100%;
    object-fit: cover;
} */

.ventures-divider {
  margin: 60px auto;
  height: 1px;
  background: linear-gradient(to right, transparent, #d7dde6, transparent);
  max-width: 900px;
}

ul#navMenu {
  list-style: none;
}

.menu-item {
  list-style: none;
}

.menu-item a:hover {
  color: var(--primary);
}

/* slider */

.media-section {
  background: url('https://sudeepbanerjee.com/wp-content/uploads/2026/02/video-bg.jpg');
  position: relative;
  overflow: hidden;
}

.media-section .heading-sec {
  text-align: center;
  margin-bottom: 45px;
}

.media-section .ttl-t1,
.media-section .ttl-t2 {
  color: #fff;
}

.banner-sec {
  position: relative;
}

.banner-owl .item iframe {
  width: 100%;
  height: 600px;
  border-radius: 20px;
  display: block;
}

/* NAV ARROWS */
.banner-owl .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.55) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.banner-owl .owl-nav button:hover {
  background: rgba(255, 255, 255, 0.22) !important;
  border-color: rgba(255, 255, 255, 0.85) !important;
}

.banner-owl .owl-nav .owl-prev {
  left: -110px;
}

.banner-owl .owl-nav .owl-next {
  right: -110px;
}

/* DOTS */
.banner-owl .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.banner-owl .owl-dots .owl-dot span {
  width: 7px;
  height: 7px;
  margin: 5px 6px;
  background: rgba(255, 255, 255, 0.55);
}

.banner-owl .owl-dots .owl-dot.active span {
  background: #fff;
}

@media (max-width: 1199px) {
  .banner-owl .owl-nav .owl-prev {
    left: -90px;
  }

  .banner-owl .owl-nav .owl-next {
    right: -90px;
  }

.seen-logos .client-logos-img {
    padding: 0 10px;
}
.client-logos-img {
    max-width: 12.8%;
}


}

@media (max-width: 991px) {
  .banner-owl .owl-nav {
    display: none;
  }

  .media-innerwrap {
    width: 100%;
    float: left;
    margin: 0 0 35px 0;
    color: #fff;
  }

  .about-text {
    padding: 0 !important;
  }

  .about-right {
    border-left: none;
    padding-left: 0 !important;
  }

  .banner-owl .item iframe {
    height: 360px;
  }
}

.owl-theme .owl-nav [class*='owl-'] {
  border-radius: 50px;
  width: 48px;
  height: 48px;
}

/* ================= BLOG SECTION ================= */
.blog {
  background: linear-gradient(30deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(224, 250, 255, 1) 100%);
}

.blog-head h2 {
  text-align: center;
  margin-bottom: 45px;
}

.blog-card {
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.blog-card:hover {
  border: 1px solid var(--primary);
  box-shadow: 0 10px 30px rgba(58, 109, 240, 0.15);
}

.blog-img img {
  width: 100%;
  height: 255px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 22px 22px 26px;
}

.blog-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #3d424c;
  margin-bottom: 12px;
}

.blog-meta {
  font-size: 15px;
  color: #8a8f99;
  margin-bottom: 14px;
}

.blog-excerpt {
  font-size: 18px;
  line-height: 1.6;
  color: #8a8f99;
  margin-bottom: 35px;
}

/* Buttons like screenshot */

.blog-btn {
  background: #e7eaf2;
  color: #3d424d !important;
  padding: 10px 32px;
}

.blog-card:hover .blog-btn {
  background: var(--primary);
  color: white !important;
}

@media (max-width: 991px) {
  .blog-img img {
    height: 210px;
  }
}

/* ================= FOOTER BAR ================= */
.footer-bar {
  background: #062a4f;
  /* deep navy like screenshot */
  padding: 18px 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left strong {
  color: #fff;
  font-weight: 600;
}

.footer-mid {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 16px;
}

.footer-mid a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.footer-mid a:hover {
  color: rgb(238, 238, 238);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.25s ease;
}

.footer-social:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-social i {
  font-size: 16px;
}

.footer-left {
  font-size: 15px;
}





.hero {
  float: left;
  width: 100%;
}

.about {
  float: left;
  width: 100%;
}

.engagement {
  float: left;
  width: 100%;
}

.work-together {
  float: left;
  width: 100%;
}

.client-sec {
  float: left;
  width: 100%;
}

.ventures {
  float: left;
  width: 100%;
}

.media-section {
  float: left;
  width: 100%;
}

.seen-on {
  float: left;
  width: 100%;
}

.blog {
  float: left;
  width: 100%;
}

.footer-bar {
  float: left;
  width: 100%;
}

.footer-bar a {
  text-decoration: none;
}


.owl-carousel.owl-drag .owl-item {
  max-height: 660px;
  min-height: 360px;
}

.banner-owl.owl-carousel.owl-theme.owl-loaded.owl-drag {
  margin-bottom: 20px;
}


@media (min-width: 1399px) {
  .owl-theme.banner-owl .owl-dots {
    bottom: 0px;
  }
}

@media (max-width: 1399px) {
  .owl-theme.banner-owl .owl-dots {
    bottom: -40px;
    width: 100%;
  }

  .owl-carousel.owl-drag .owl-item {
    min-height: 620px;
  }
.banner-owl.owl-carousel.owl-theme.owl-loaded.owl-drag {
    margin-bottom: 40px;
}
}




@media (min-width: 1200px) {
  .ventures-grid-2 {
    width: 20%;
  }
}

/* Responsive */
@media (max-width: 1199px) {
  .button-1 {
    padding: 10px 20px;
  }

  .nav-menu {
    gap: 24px;
  }
}

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

  .owl-carousel.owl-drag .owl-item {
    min-height: 370px;
  }

  .sp {
    padding: 50px 0;
  }

  .title-sec {
    margin-bottom: 15px;
  }

  .gap-header {
    margin-top: 65px;
  }

  .menu-toggle {
    display: flex;
  }

  .work-cta {
    margin-top: 50px;
  }

  .nav-menu {
    position: fixed;
    top: 65px;
    left: -420px;
    flex-direction: column;
    background: #fff;
    width: 350px;
    height: 100vh;
    padding: 30px;
    transition: 0.3s;
  }

  .nav-menu.open {
    left: 0;
    top: 58px;
  }

  .seen-logos .client-logos-img {
    padding: 0;
    margin-bottom: 15px;
  }

  .rectangle {
    margin-top: 20px;
    margin-bottom: -9px;
  }

  .footer-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-wrap {
    gap: 8px;
  }
}

@media (max-width: 767px) {

  .client-logos-img.client-logos-6 {
    max-width: 50%;
}

  .owl-carousel.owl-drag .owl-item {
    min-height: 360px;
  }

  .blog-img img {
    height: auto;
  }

  .sp {
    padding: 40px 0;
  }

  h2 {
    font-size: 40px;
    line-height: normal;
  }

  h3,
  .work-cta h3 {
    font-size: 30px;
    line-height: normal;
  }

  p {
    font-size: 16px;
  }

  .client-logos {
    justify-content: center;
  }

  .client-sec .work-head {
    margin: 0 auto 20px;
  }

  .ventures-head {
    margin-bottom: 30px;
  }

  .eng-card-head h4 {
    font-size: 19px;
  }

  .work-desc {
    line-height: 1.5;
  }

  .client-logos-img {
    margin: 0 1.3% 1.6%;
    max-width: 30.5%;
  }

  .seen-logos .client-logos-img {
    padding: 0 30px;
    margin-bottom: 15px;
  }

  .title-sec {
    margin-bottom: 15px;
  }
}

@media (max-width: 575px) {
      .client-logos-img.client-logos-6 {
        max-width: 68%;
    }
  .sp {
    padding: 30px 0;
  }

  h2 {
    font-size: 32px;
    line-height: normal;
  }

  h3,
  .work-cta h3 {
    font-size: 26px;
    line-height: normal;
  }

  h3.engagement-subhead.title-sec {
    margin-bottom: 30px;
  }

  .nav-wrap {
    padding: 15px 20px;
  }

  .work-card {
    padding: 15px 15px;
  }

  .work-icon {
    width: 50px;
    min-width: 50px;
    margin-bottom: 10px;
  }

  .work-card-head h4 {
    font-size: 20px;
    line-height: 26px;
  }

  .logo img {
    width: 80%;
  }

  .nav-menu {
    width: 100%;
    left: -100%;
  }

  .gap-header {
    margin-top: 60px;
  }

  .client-logos-img {
    margin: 0 1.3% 1.8%;
    max-width: 47%;
  }

  .seen-logos .client-logos-img {
    padding: 0 20px;
    margin-bottom: 15px;
  }

  .work-cta .button-1 {
    padding: 12px 30px;
    font-size: 16px;
  }

  .ventures-head {
    margin-bottom: 10px;
  }
}

@media (max-width: 410px) {
  h2 {
    font-size: 24px;
    line-height: normal;
  }
}