/* GLOBAL STYLES --------------------------------------*/
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0d2344;
  color: white;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}


.nav-link.active {
  color: #a00056 !important;
  font-weight: 600;
  border-bottom: 2px solid #a00056;
}






/* BRAND BAR -------------------------------------------*/
.brand-bar {
  width: 100%;
  background: #be0d63;
  padding: 12px 24px;
}

.brand-name {
  font-size: 32px;
  font-weight: 700;
  color: white;
}

/* NAVBAR ----------------------------------------------*/
.nav-bar {
  padding: 16px 0;
  background: white;
}

.nav-bar .nav-link {
  background: none;
  font-weight: 600;
  color: #333;
}

.nav-bar .nav-link:hover {
  color: #be0d63;
}

.btn-primary {
  background: #007bff;
  border-radius: 25px;
}



/* ===============================
   FIXED / STICKY HEADER
================================ */

/* Wrap header + navbar behavior */
.brand-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Navbar sticks below brand bar */
.nav-bar {
  position: fixed;
  top: 56px; /* height of brand-bar */
  left: 0;
  width: 100%;
  z-index: 999;
}

/* Push page content below fixed header */
.page {
  padding-top: 112px; /* 56px brand-bar + 56px nav-bar */
}


.nav-bar {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}




/* HERO SECTION ----------------------------------------*/
.hero {
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 40px;
}

/* ROW 1 IMAGES ----------------------------------------*/
/* ROW 1 — NO GAPS */
.row1-flex {
  display: flex;
  gap: 6px;   /* <-- tiny spacing between photos */
}

/* ITEM 1 */
.row1-flex > :nth-child(1) {
  width: 450px;
  height: 350px;
  overflow: hidden;
}

/* ITEM 2 */
.row1-flex > :nth-child(2) {
  width: 300px;
  height: 350px;
  overflow: hidden;
}

/* ITEM 3 */
.row1-flex > :nth-child(3) {
  width: 500px;
 height: 350px;
  overflow: hidden;
}

/* ITEM 4 */
.row1-flex > :nth-child(4) {
  width: 430px;
  height: 350px;
  overflow: hidden;
}

/* Make all images fit */
.row1-flex img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* ROW 2 ------------------------------------------------*/
/* ROW 2 LAYOUT */
.row2-flex {
  display: flex;
  gap: 6px;          /* tiny gap between items */
  margin: 30px 0;
}

/* ROW 2 ITEMS — You can adjust sizes as needed */
.row2-item {
  height: 350px;
  overflow: hidden;
}

.row2-item.item2-1 { width: 360px; }
.row2-item.item2-2 { width: 400px; }
.row2-item.item2-3 { width: 260px; }

/*.row2-text-card {
  width: 300px;
  height: 260px;
  padding: 20px;
  border-radius: 12px;
}*/

.row2-item.item2-4 { width: 360px; }

/* Make images perfect fit */
.row2-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ROW 3 ------------------------------------------------*/
/* ROW 3 LAYOUT */
.row3-flex {
  display: flex;
  gap: 6px;      
  margin: 40px 0;
}

/* ROW 3 ITEMS — You can adjust sizes */
.row3-item {
  height: 350px;
  overflow: hidden;
}

.row3-item.item3-1 { width: 500px; }

/*.row3-text-card {
  width: 300px;
  height: 240px;
  padding: 20px;
  border-radius: 12px;
}*/

.row3-item.item3-2 { width: 300px; }
.row3-item.item3-3 { width: 600px; }

/* Fit images cleanly */
.row3-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== TEXT CARD COMMON STYLING ===== */
/* ===== TEXT CARD COMMON STYLING ===== */
.row2-text-card,
.row3-text-card {
  background: linear-gradient(135deg, #1b2736, #142032);
  padding: 40px 32px;
  border-radius: 22px;
  width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
}

/* Row 2 card height */
.row2-text-card {
  height: 350px;
}

/* Row 3 card height */
.row3-text-card {
  height: 350px;
}

/* Magenta top tag (applies to BOTH row2 & row3) */
.card-tag {
  width: 70px;
  height: 30px;
  background: #c30055;
  border-radius: 10px;
}

/* Heading */
.text-card-heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.0;
  color: #ffffff;
}

/* Magenta button */
.btn-magenta {
  background: #c30055;
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
}

/* ================== WE CARE PANEL (BOTTOM) ================== */
/* ===== WE CARE PANEL (full section) ===== */
.design-section {
  width: 100%;
  padding: 40px 60px;
  display: flex;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
}

/* Outer big rounded dark panel */
.design-panel {
  max-width: 1400px;
  width: 100%;
  padding: 50px 60px;
  border-radius: 26px;
  background: linear-gradient(
    180deg,
    rgba(10, 33, 52, 0.95) 0%,
    rgba(12, 40, 62, 0.93) 100%
  );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  box-shadow: 0 25px 60px rgba(3, 11, 20, 0.55);
  box-sizing: border-box;
}

/* ===== LEFT IMAGE CARD ===== */
.design-image-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  width: 60%;
  height: 350px;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.design-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay text inside image */
.design-overlay {
  position: absolute;
  inset: 0;
}

/* Satviran bottom-left */
.design-brand {
  position: absolute;
  left: 24px;
  bottom: 20px;
  font-size: 34px;
  font-weight: 800;
  color: #000000;
}

/* We Care bottom-right */
.design-tagline {
  position: absolute;
  right: 30px;
  bottom: 10px;
  font-size: 84px;
  font-weight: 700;
  color: #b30063;
  line-height: 1;
}

/* ===== RIGHT TEXT BLOCK ===== */
.design-text {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.design-text p {
  margin: 0;
  font-size: 50px;
  line-height: 1.35;
  font-weight: 400;
  color: #ffffff;
}

/* magenta highlighted words */
.design-highlight {
  color: #b30063;
  font-weight: 700;
}


/* ====================================================
   MISSION & VISION SECTION
==================================================== */


/* ===== OUTER BOX (We Care Section) ===== */
.design-panel {
  width: 100%;
  max-width: 1500px;               /* controls overall width */
  margin: 50px auto;               /* center with space above & below */
  
  padding: 60px;                   /* inner spacing */
  
  background: linear-gradient(
    180deg,
    rgba(5, 25, 45, 0.95) 0%,
    rgba(10, 35, 55, 0.92) 100%
  );
  
  border-radius: 40px;             /* large rounded corners */
  
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.45),        /* outer shadow */
    inset 0 1px 0 rgba(255, 255, 255, 0.03); /* subtle inner highlight */
  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  backdrop-filter: blur(4px);
}


.mv-section {
  width: 100%;
  margin: 40px 0 80px;
  padding: 20px 40px;
}

/* Main container */
.mv-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  margin: 40px auto;          /* centers and reduces width */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(8px);

  max-width: 1200px;          /* ⭐ MAKE BOX SMALLER (adjust as you like) */
  width: 100%;
}


/* Make sure mv-card already has display:flex etc. */
.mv-card.mv-mission {
  align-items: center;
}

/* LEFT IMAGE CLUSTER */
.mission-images {
  position: relative;
  flex: 1;
  min-width: 380px;
  max-width: 420px;
  height: 260px;
}

/* Base style for all three */
.mission-img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

/* Big band (top) */
.mission-main {
  width: 360px;
  top: -10px;
  left: 0;
  z-index: 3;
}

/* Bottom-left band */
.mission-bottom-left {
  width: 230px;
  bottom: -20px;
  left: -10px;
  z-index: 2;
}

/* Bottom-right band */
.mission-bottom-right {
  width: 230px;
  bottom: -40px;
  left: 190px;
  z-index: 1;
}

/* Titles */
.mv-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.mv-icon {
  font-size: 32px;
  margin-right: 10px;
  color: #ffffff;
}

/* Descriptions */
.mv-desc {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.6;
  color: #dfe6ed;
}

/* Alignments */
.mv-text-right,
.mv-text-left {
  flex: 1;
}

/* Responsive */
@media (max-width: 800px) {
  .mv-card {
    flex-direction: column;
    text-align: center;
  }

  .mv-card.mv-reverse {
    flex-direction: column;
  }

  .mv-image-left img,
  .mv-image-right img {
    width: 260px;
  }

  .mv-desc {
    max-width: 100%;
  }
}

/* Vision card must ALLOW images to overflow */
.mv-card.mv-vision {
  position: relative;
  overflow: visible !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Image wrapper */
.vision-images {
  position: relative;
  flex: 1;
  min-height: 280px;
}

/* Base for all images */
.vision-img {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.45));
}

/* ⭐ TOP WATCH — half outside box */
.vision-top {
  width: 380px;
  top: -90px;
  right: -20px;
  z-index: 5;
}

/* Bottom-left watch */
.vision-bottom-left {
  width: 330px;
  bottom: -10px;
  right: 180px;
  z-index: 3;
}

/* Capsule device */
.vision-bottom-right {
  width: 150px;
  bottom: 0;
  right: 0;
  z-index: 2;
}

/* ------------------------------------------------------ */
/* CARE BANNER                                            */
/* ------------------------------------------------------ */
.care-banner {
  background: #be0d63;
  padding: 50px 0;
  margin-top: 40px;
}

.care-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 85%;
  margin: auto;
}

.care-text {
  font-size: 32px;
  font-weight: 700;
  text-align: right;
}

/* ------------------------------------------------------ */
/* PARTNERS                                                */
/* ------------------------------------------------------ */
.partners-strip {
  background: white;
  padding: 30px 0;
}

.partners-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.partners-inner img {
  width: auto;
  height: 50px;
  object-fit: contain;
}

/* Base style for all logos */
.partner-group img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* ===== GROUP 1 ===== */
.partner-group:nth-of-type(1) img {
  width: 160px;
  height: 70px;
}

/* ===== GROUP 2 (3 logos) ===== */
.partner-group:nth-of-type(2) img:nth-child(1) {
  width: 110px;
  height: 55px;
}

.partner-group:nth-of-type(2) img:nth-child(2) {
  width: 150px;
  height: 65px;
}

.partner-group:nth-of-type(2) img:nth-child(3) {
  width: 120px;
  height: 60px;
}

/* ===== GROUP 3 (2 logos) ===== */
.partner-group:nth-of-type(3) img:nth-child(1) {
  width: 140px;
  height: 65px;
}

.partner-group:nth-of-type(3) img:nth-child(2) {
  width: 130px;
  height: 60px;
}

/* ===== GROUP 4 (2 logos) ===== */
.partner-group:nth-of-type(4) img:nth-child(1) {
  width: 125px;
  height: 55px;
}

.partner-group:nth-of-type(4) img:nth-child(2) {
  width: 145px;
  height: 65px;
}

/* Hover (optional) */
.partner-group img:hover {
  transform: scale(1.05);
}



/* =========================================
   MENTORS & TEAM
========================================= */

.mentors-team-section {
  width: 100%;
  margin: 40px 0 80px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Our Mentors card */
.mentors-card {
  background: #0f2338;
  border-radius: 20px;
  padding: 32px 40px;
}

.mentors-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}

.mentors-title.gradient-title {
  background: linear-gradient(90deg, #ffffff, #5ab0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mentors-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.mentor {
  flex: 1;
  min-width: 180px;
  max-width: 210px;
  text-align: center;
}

.mentor-photo {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
}

.mentor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mentor-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.mentor-role-pill {
  display: inline-block;
  margin-top: 4px;
  padding: 6px 14px;
  background: #c0006e;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
}

/* Team card */
.team-card {
  background: #0f2338;
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  gap: 40px;
}

.team-left {
  flex: 0 0 140px;
}

.team-title {
  font-size: 32px;
  font-weight: 700;
}

.team-title.gradient-title {
  background: linear-gradient(90deg, #ffffff, #5ab0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.team-right {
  flex: 1;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.team-column h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.team-column p {
  font-size: 14px;
  line-height: 1.5;
  color: #dfe6ed;
}

/* ===================== PRODUCTS ===================== */

#products {
  scroll-margin-top: 140px;
}


.products-section {
  width: 100%;
  margin: 80px 0 100px;
  padding: 0 40px;
  text-align: center;
}

.products-heading {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 50px;
}

.products-highlight {
  color: #c0006e;
}

/* 3 items row */
.products-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

/* Each product column */
.product-card {
  position: relative;
  width: 300px;
  text-align: center;
}

/* BACKGROUND SHAPE SLOT – fills the card area */
.shape-slot {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Shape image base */
.shape-img {
  position: absolute;
  max-width: 240px;
  height: auto;
  opacity: 0.9;
}

/* PRODUCT 1 shape (top-left behind card) */
.shape-left {
  width: 230px;
  top: -90px;
  left: -45px;
}

/* PRODUCT 2 shape (circle centered under card & label) */
.shape-center {
  width: 260px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.45;
}

/* PRODUCT 3 shape (bars top-right behind card) */
.shape-right {
  width: 230px;
  top: -85px;
  right: -40px;
}

/* Pink card */
.product-main-card {
  position: relative;
  z-index: 2;
  background: #c0006e;
  padding: 24px 18px;
  border-radius: 12px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card text */
.product-main-text {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
}

/* Product label under card (also above shape) */
.product-label {
  position: relative;
  z-index: 2;
  margin-top: 20px;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 900px) {
  .products-row {
    flex-direction: column;
    align-items: center;
  }
}

/* =========================================
   FOOTER / CONTACT SECTION
========================================= */

.office-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;   /* slightly tighter than before */
}


.office-logo img {
  height: 110px;
  /*keepSAME*/width: auto;
  /*fixmissingunitissue*/transform: scale(0.35);
  /*👈MAKESLOGOSMALL*/transform-origin: left center;
  -webkit-transform: scale(0.35);
  -moz-transform: scale(0.35);
  -ms-transform: scale(0.35);
  -o-transform: scale(0.35);
}


.office-logo span {
  font-size: 12px;
  line-height: 1.2;
}

.footer-section {
  background: #c0006e;
  color: #ffffff;
  padding: 50px 16px 60px;
  margin-top: 40px;
}

.footer-inner {
  width: 100%;
  margin: 0;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* All text left aligned */
.footer-column {
  flex: 1;
  min-width: 260px;
  text-align: left !important;
}

.footer-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  text-align: left !important;
}

.footer-subheading {
  font-size: 18px;
  font-weight: 600;
  margin: 18px 0 6px;
  text-align: left !important;
}

.footer-text {
  font-size: 15px;
  line-height: 1.7;
  text-align: left !important;
}

/* Email links */
.footer-links a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links a:hover {
  opacity: 0.8;
}

/* Badge */
.footer-badge {
  display: flex;
  align-items: center;
  margin: 12px 0 22px;
  font-size: 12px;
  font-weight: 700;
}

.badge-outline {
  padding: 5px 8px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
}

.badge-solid {
  padding: 5px 8px;
  background: #000;
  color: #fff;
}


.footer-links a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-links a {
  color: #ffffff !important;   /* FORCE WHITE */
  text-decoration: underline;
}

.footer-links a:hover {
  color: #ffffff !important;   /* STAYS WHITE ON HOVER */
  opacity: 0.8;                /* subtle hover effect */
}

.footer-links a {
  color: #ffffff !important;   /* FORCE WHITE */
  text-decoration: underline;
}

.footer-links a:hover {
  color: #ffffff !important;   /* STAYS WHITE ON HOVER */
  opacity: 0.8;                /* subtle hover effect */
}


/* ======================= RESPONSIVE ======================= */

@media (max-width: 1000px) {
  .row1-flex,
  .row2-flex,
  .row3-flex {
    flex-wrap: wrap;
  }

  .design-panel {
    flex-direction: column;
  }

  .design-text {
    text-align: center;
  }

  .products-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 960px) {
  .care-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .care-text {
    text-align: left;
    margin-top: 10px;
  }

  .team-card {
    flex-direction: column;
  }

  .team-left {
    flex: 0 0 auto;
  }

  .team-right {
    flex-direction: column;
  }

  .mentors-row {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
  }

  .row1-flex,
  .row2-flex,
  .row3-flex {
    flex-direction: column;
    align-items: center;
  }

  .row2-text-card,
  .row3-text-card {
    width: 90%;
  }

  .design-text p {
    font-size: 28px;
  }

  .design-tagline {
    font-size: 32px;
  }
}
