* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --color-primary: #f5f1ee;       /* Orange accent (used for highlights) */
  --color-secondary: black;     /* Blue (used in icons or buttons) */
  --color-warning: rgb(132, 48, 48); 
  /* font-family:  ; */
}
/* :root {
    --max-width: 1200px;
    --muted: #666;
    --border: #e4e4e4;
} */
body {
  /* display: flex;
  justify-content: center;
  align-items: center; */
  /* font-family: Georgia, 'Times New Roman', Times, serif; */
  /* height: 100vh; */
  /* background: #fff; */
}
/* ======================Tab View===================== */
.tab-nav {
    position: fixed;
    top: 0px;
    left: 10%;
  display: flex;
  gap: 25px;
  width: 80%;
  justify-content: space-around;
  align-items: center;
  background: white;
  padding: 5px 20px;
  border-radius: 20px;
  z-index: 1;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  
}

.tab-nav a {
  text-decoration: none;
  color: #111;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
}
.logo{
    
}
.logo-size{
    width: 130px;
    /* background-color: #6a9fbf; */
}
.tab-nav a:hover {
  background: #d5d3d3;
  
}
.signIn-button{
    width: 6%;
    padding: 5px;
    border-radius: 5px;
    color: white;
    background-color: var(--color-warning);
    box-shadow: 5px 5px 8px rgb(32, 31, 31);
}
.signIn-button:hover{
    box-shadow: 6px 8px 10px rgb(32, 31, 31);
}
.tab-nav a.active {
  /* background: #f3f0eb; */
  font-weight: 600;
}  
/* ==================== TABLET + MOBILE VIEW ==================== */
@media (max-width: 1024px) {

  /* Main navbar layout */
  .tab-nav {
    left: 0;
    width: 100%;
    padding: 10px 20px;
    justify-content: space-between;
  }

  /* Hamburger visible only on tablet/mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 26px;
    height: 3px;
    background: #111;
    border-radius: 2px;
    transition: 0.3s ease;
  }

  /* Hide nav items, except logo */
  .tab-nav a:not(.logo),
  .signIn-button {
    display: none;
  }

  /* When hamburger clicked: show menu items */
  .tab-nav.active {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
  }

  .tab-nav.active a,
  .tab-nav.active .signIn-button {
    display: block;
    width: 100%;
    margin: 5px 0;
    text-align: center;
  }

  .signIn-button {
    width: 90%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
  }

  .logo-size {
    width: 120px;
  }
}

/* ==================== MOBILE SMALLER ==================== */
@media (max-width: 600px) {
  .logo-size {
    width: 110px;
  }
  .signIn-button {
    width: 95%;
  }
}

/* ==================Navbar End==================== */
/* ================== Starting Page ================== */

.Starting-page{
    width: 100%;
    display: flex;
    padding-top: 7%;
    padding-bottom: 5%;
    background-color: #f7f5f2;
    justify-content: center;
    align-items: center;
    gap: 13%;
    box-sizing: border-box;
}

.Starting-page-matter{
    width: 35%;
    text-align: left;
}

.Starting-page-form{  
    width: 30%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d5d3d3;
}

.SP-form-inner{
    width: 97%;
    height: 97%;
    border-radius: 15px;
    background-color: white;
    margin: 0 auto;
}

.Heading-text-Box{
  width: 90%;
  margin-top: 5%;
}

.Grey-text{
  color: grey;
}

.SP-buttons{
  display: flex;
  margin-top: 5%;
  flex-wrap: wrap;
  gap: 10px;
}

.sp-btns{
  background-color: white ;
  border-radius: 20px;
  padding: 1% 4%;
  margin-right: 2%
}

.line{
  width: 85%;
  border: 1px solid grey;
  margin-top: 5%;
  margin-bottom: 5%;
}

.bi-mortarboard , .bi-stars , .bi-buildings{
  color: brown;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
  margin-right: 2%;
}

/* ================== Form Card ================== */

.card01{
      width:100%;
      background:var(--card-bg);
      border-radius:14px;
      padding:26px;
      box-shadow: 0 6px 20px rgba(20,20,20,0.04);
}

.title{
      font-size:20px;
      font-weight:700;
      margin:0 0 16px 0;
      background: linear-gradient(90deg, #360101, #de0404, black);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
}

.field{
  margin-bottom:14px;
}

input[type="text"],
input[type="email"],
.phone-input{
  width:100%;
  padding:10px 14px;
  font-size:14px;
  border-radius:8px;
  border:1px solid #d8d4d0;
  outline:none;
}

input:focus{
  box-shadow:0 0 0 3px rgba(242,106,62,0.06);
  border-color:#eab29a;
}

.radio-list{
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:18px;
}

.cta{
      width:100%;
      padding:14px 18px;
      border-radius:8px;
      font-weight:700;
      font-size:16px;
      color:#fff;
      border:none;
      background-color: var(--color-warning);
      box-shadow: 8px 10px 10px grey;
      cursor:pointer;
      margin-top:6px; 
}

.cta:hover{
  box-shadow: 8px 10px 10px black;
}

.privacy{
  margin-top:12px;
  font-size:11px;
  color:#9b9b9b;
  line-height:1.2;
}

/* ===================== TABLET VIEW ===================== */
@media (max-width: 1024px) {

  .Starting-page{
      flex-direction: column;
      text-align: left;
      gap: 40px;
      padding-top: 25%;
  }

  .Starting-page-matter{
      width: 80%;
      text-align: left;
  }

  .Heading-text-Box{
      /* margin: 0 auto; */
      text-align: left;
  }

  .SP-buttons{
      justify-content: left;
  }

  .Starting-page-form{
      width: 90%;
      
  }
}
/* ========== MOBILE VIEW CLICK-BUTTON LEFT ALIGNMENT ========== */
@media (max-width: 600px) {

  /* Make radio list fully left aligned */
  .radio-list {
      width: 100%;
      padding-left: 0;
      margin-left: 0;
      align-items: flex-start;
  }

  /* Each radio + label aligns left */
  .radio-item {
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 10px; /* small space between circle & text */
      padding-left: 0;
      margin-left: 0;
      text-align: left;
  }

  /* Radio circle sits flush left */
  .radio-item input[type="radio"] {
      margin: 0;
      padding: 0;
      position: relative;
      left: 0;
  }

  /* Labels align cleanly */
  .radio-item label {
      text-align: left;
      line-height: 1.3;
      display: block;
      width: 100%;
  }
}


/* ============== VERY SMALL DEVICES ============== */
@media (max-width: 380px){
  .Heading-text-Box h1{
      font-size: 20px;
  }
  .sp-btns{
      width: 80%;
  }
  .certificate{
      width: 120px;
  }
}
/* ================== Starting Page End ================== */

/* =====================Certificate Area======================= */

/* Top banner */
.Data-Analysts-part{
  width: 100%;
  height: 35vh;
  background-color: #260101;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.DA-Heading{
  color: white;
  text-align: center;
  /* font-size: xx-large; */
  font-weight:700;
}

/* Layout */
.section {
  max-width: var(--max-width);
  /* margin: 40px auto; */
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10%;
  background-color: #f2f0ee;
  box-sizing: border-box;
}

/* Left Side */
.left {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  box-sizing: border-box;
}

.certificate {
  width: 280px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: block;
}

.headline {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0b0b0b;
  margin: 0;
}

.accent {
  color: var(--color-warning);
}

.btn-outline {
  display: inline-block;
  text-align: center;
  font-size: x-large;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  background-color: brown;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  width: 95%;
  padding: 12px 18px;
  box-sizing: border-box;
}
.btn-outline:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Right Side */
.right {
  padding-left: 18px;
  box-sizing: border-box;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}

.stat-icon svg {
  width: 30px;
  height: 30px;
}

.stat-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px 0;
}

.stat-sub {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ================= Responsive Design (tablet + mobile) ================= */

/* Tablet: up to 1024px */
@media (max-width: 1024px) {
  /* Top banner adjustments */
  .Data-Analysts-part {
    height: auto;
    padding: 6% 3%;
    text-align: center;
  }
  .DA-Heading {
    font-size: 2.2rem;
    line-height: 1.05;
  }

  /* Section layout: keep two-column feel but adjust widths */
  .section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 6%;
    padding: 28px 18px;
  }

  .left {
    width: 48%;
    align-items: flex-start;
    text-align: left;
  }

  .right {
    width: 36%;
    padding-left: 12px;
  }

  /* Slightly smaller certificate image */
  .certificate {
    width: 220px;
    height: auto;
    align-self: flex-start;
  }

  .headline {
    font-size: 28px;
  }

  .btn-outline {
    width: auto;
    padding: 10px 26px;
    font-size: 1rem;
  }

  /* Right column stat spacing tightened */
  .stat-item {
    gap: 14px;
    padding: 16px 0;
  }
  .stat-icon svg { width: 28px; height: 28px; }
  .stat-title { font-size: 16px; }
  .stat-sub { font-size: 12px; }
}

/* Mobile: up to 600px */
@media (max-width: 600px) {
  /* Top banner: compact stack */
  .Data-Analysts-part {
    height: auto;
    padding: 6% 4%;
  }
  .DA-Heading {
    font-size: 1.6rem;
    line-height: 1.05;
  }

  /* Stack left and right vertically */
  .section {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px 14px;
    align-items: center;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
  }

  .left {
    width: 100%;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .right {
    width: 100%;
    padding-left: 0;
  }

  /* Certificate smaller and centered */
  .certificate {
    width: 160px;
    max-width: 60%;
    margin: 0 auto;
    display: block;
  }

  .headline {
    font-size: 20px;
    line-height: 1.15;
    text-align: center;
  }

  /* CTA becomes full width on mobile */
  .btn-outline {
    width: 100%;
    padding: 12px 12px;
    font-size: 1rem;
    display: inline-block;
  }

  /* Stats stacked with tighter spacing */
  .stat-item {
    gap: 12px;
    padding: 12px 0;
    align-items: flex-start;
  }

  .stat-item > div:last-child {
    text-align: left;
  }

  .stat-icon svg { width: 26px; height: 26px; }

  .stat-title { font-size: 15px; }
  .stat-sub { font-size: 12px; }
}

/* Very small phones: up to 360px */
@media (max-width: 360px) {
  .certificate { width: 140px; }
  .DA-Heading { font-size: 1.45rem; }
  .headline { font-size: 18px; }
  .stat-title { font-size: 14px; }
  .btn-outline { padding: 10px 12px; font-size: 0.95rem; }
}

/* ======================Certificate area end======================== */

/* ================Curriculum Main (desktop rules unchanged)================== */
/* (paste your existing desktop rules here — unchanged) */

.CURRICULUM-MAIN{
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
  position: relative;
}

.Curriculum-scrollBox{
  display: flex;
  overflow-x: auto;
  gap: 1em;
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* Left and Right white gradient shade */
.Curriculum-scrollBox::before,
.Curriculum-scrollBox::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}
.Curriculum-scrollBox::before { left: 0; background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0)); }
.Curriculum-scrollBox::after  { right:0;  background: linear-gradient(to left,  rgba(255,255,255,1), rgba(255,255,255,0)); }

.Curriculum-scrollBox ::-webkit-scrollbar{ display: none; }

.C-group{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  animation: spin 20s infinite linear;
}
@keyframes spin { from{translate: 0;} to{translate: -100%;} }

.Curriculum-img {
  width: 130px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #fff;
  margin: 8px;
  z-index: -1;
}
.Curriculum-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.BG-shade01-img{ position: absolute; bottom: 0%; left: 0%; }
.BG-shade02-img{ position: absolute; top: 0%; right: 0%; }

.Curriculum-Middle-Box{
  margin-top: 5%;
  width: 50%;
  border: 0.2px solid rgb(218, 211, 211);
  border-radius: 10px;
  text-align: left;
  margin:40px auto;
  padding: 1%;
  box-sizing: border-box;
}
.line2{ width: 100%; border: 1px solid rgb(234, 227, 227); margin: 0 auto; }

.Opacity2{ opacity: 0.6; }
.Opacity3{ opacity: 0.2; }

.Curriculum-button{
  background-color: var(--color-warning);
  border-radius: 10px ;
  border: none;
  padding: 10px 40px;
  color: white;
  box-shadow: 5px 5px 8px rgb(32, 31, 31);
}
.Curriculum-button:hover{ background-color: #4d0202; }

.Build-projects-Bg{
  border: 1px solid rgb(207, 203, 203);
  border-radius: 20px;
  padding: 5px 10px;
}
.lineBox{ margin: 20px; }

/* ================= Responsive: Tablet & Mobile ================== */

/* ---------- Tablet: <= 1024px ---------- */
@media (max-width: 1024px) {
  /* make middle boxes wider and stack a little tighter */
  .Curriculum-Middle-Box{
    width: 70%;
    padding: 14px;
    margin: 28px auto;
  }

  /* reduce title sizes slightly */
  .CURRICULUM-MAIN h2 { font-size: 1.9rem; }
  .CURRICULUM-MAIN span { letter-spacing: 1px; font-size: 0.95rem; }

  /* make the horizontal tech scroller easier to use: slower animation and visible groups wrap */
  .Curriculum-scrollBox { padding: 12px 8px; }
  .C-group { gap: 0.9rem; animation-duration: 26s; }

  /* shrink logos */
  .Curriculum-img { width: 110px; height: 46px; margin: 6px; }
  .Curriculum-img img { max-width: 95%; max-height: 95%; }

  /* Build-project badges wrap to multiple rows if needed */
  .lineBox { margin: 14px; display: flex; flex-wrap: wrap; gap: 8px; }

  /* Syllabus list spacing */
  .Curriculum-Middle-Box ul { padding-left: 20px; margin-top: 8px; }
  .Curriculum-Middle-Box li { margin: 6px 0; font-size: 0.98rem; }

  /* shade images scale down and reposition */
  .BG-shade01-img { width: 180px; left: 0; bottom: -6%; opacity: 0.9; }
  .BG-shade02-img { width: 180px; right: -6%; top: 0; opacity: 0.9; }
}

/* ---------- Mobile: <= 600px ---------- */
@media (max-width: 600px) {
  /* Make the middle boxes full width and stacked vertically for comfortable reading */
  .Curriculum-Middle-Box{
    width: 92%;
    padding: 12px;
    margin: 18px auto;
    border-radius: 8px;
  }

  /* Reduce heading sizes */
  .CURRICULUM-MAIN h2 { font-size: 1.5rem; margin-top: 6px; }
  .CURRICULUM-MAIN span { font-size: 0.85rem; }

  /* Tech scroller: make logos smaller and allow two rows if necessary */
  .Curriculum-scrollBox {
    padding: 10px 6px;
    overflow-x: auto;
  }
  .C-group { gap: 0.6rem; animation-duration: 30s; }
  .Curriculum-img { width: 90px; height: 40px; margin: 6px; z-index: 1; }

  /* ensure images stay visible and not cropped */
  .Curriculum-img img { object-fit: contain; }

  /* Build-project badges: stack neatly and be tappable */
  .lineBox { margin: 12px; display: flex; flex-wrap: wrap; gap: 8px; }
  .Build-projects-Bg { padding: 8px 10px; font-size: 0.92rem; }

  /* Syllabus: shorten text and stack */
  .Curriculum-Middle-Box h5 { font-size: 1.05rem; margin-top: 8px; }
  .Curriculum-Middle-Box ul { padding-left: 18px; margin-top: 6px; }
  .Curriculum-Middle-Box li { margin: 6px 0; font-size: 0.95rem; }

  /* Button full width on mobile */
  .Curriculum-button {
    width: 92%;
    padding: 12px;
    margin: 18px auto;
    display: block;
    text-align: center;
  }

  /* shade images hide or reduce to avoid layout clutter on tiny screens */
  .BG-shade01-img, .BG-shade02-img { display: none; }
}

/* ---------- Very small phones: <= 360px (tighten) ---------- */
@media (max-width: 360px) {
  .Curriculum-Middle-Box{ width: 96%; padding: 10px; }
  .CURRICULUM-MAIN h2 { font-size: 1.2rem; }
  .Curriculum-img { width: 80px; height: 36px; }
  .Build-projects-Bg { font-size: 0.9rem; padding: 7px 9px; }
}
/* =================Gain-skils-main================= */
/* =================Gain-skils-main================= */
.Gain-skills-Main{
  text-align: center; 
  margin: 0 auto; 
  /* position: relative; */
}

.Gain-skills-Box{
  width: 100%;
  margin-top: 5%;
  margin-bottom: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;
  /* border: 2px solid rgb(60, 59, 63); */
}
.Gain-skills-Boxes{
  width: 20%;
  height: 67vh;
  /* border: 2px solid green; */
  border-radius: 20px;
  background-color: #FAF9F7;
  box-sizing: border-box;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.GS-Image-Part{
  width: 100%;
  height: 60%;
  border-radius: 20px;
  box-sizing: border-box;
  overflow: hidden;
}
.GS-Matter-Part{
  width: 100%;
  height: 35%;
  /* border: 2px solid green; */
  /* border-radius: 20px; */
  text-align: left;
  padding: 15px;
  border-radius: 20px;
  box-sizing: border-box;
}
.GS-Image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.GS-Matter-Part > p{
  /* margin-left: 10px; */
  font-size: 1rem;
  margin: 0;
}

/* =================Gain-skils-main================= */

/* ================= Responsive: Tablet & Mobile ================== */

/* Tablet: up to 1024px — 2 columns where possible, smaller heights */
@media (max-width: 1024px) {
  .Gain-skills-Box{
    gap: 2%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 2%;
  }

  .Gain-skills-Boxes{
    width: 46%;              /* two columns */
    height: auto;            /* let content define height */
    min-height: 320px;       /* keep visual consistency */
  }

  .GS-Image-Part{
    height: 56%;
  }

  .GS-Matter-Part{
    height: 44%;
    padding: 14px;
  }

  .GS-Image{
    height: 100%;
    object-fit: cover;
  }

  .Gain-skills-Main h2 {
    font-size: 1.4rem;
  }
}

/* Mobile: up to 768px — single column stacked, images responsive */
@media (max-width: 768px) {
  .Gain-skills-Box{
    flex-direction: column;
    gap: 18px;
    align-items: center;
    padding: 0 4%;
  }

  .Gain-skills-Boxes{
    width: 95%;              /* full width cards */
    height: auto;
    min-height: auto;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding-bottom: 8px;
  }

  .GS-Image-Part{
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;    /* keep good visual ratio */
  }

  .GS-Image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .GS-Matter-Part{
    width: 100%;
    height: auto;
    padding: 12px;
  }

  .Gain-skills-Main span {
    font-size: 0.95rem;
  }
  .Gain-skills-Main h2 {
    font-size: 1.25rem;
    margin-top: 6px;
  }
  .GS-Matter-Part > p{
    font-size: 0.95rem;
  }
}

/* Extra small phones: up to 480px — tighten spacing and type */
@media (max-width: 480px) {
  .Gain-skills-Box{
    padding: 0 6%;
    gap: 14px;
  }

  .Gain-skills-Boxes{
    width: 98%;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .GS-Image-Part{
    aspect-ratio: 4 / 3;
    height: auto;
  }

  .GS-Matter-Part{
    padding: 10px;
  }

  .Gain-skills-Main h2 {
    font-size: 1.1rem;
  }

  .GS-Matter-Part > p{
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

/* Optional: ensure images never stretch weirdly if their container is very tall */
.GS-Image, .GS-Image-Part img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =================Gain-skils-main================= */

/* ========= Advantages ========= */

.Advantages-Main{
  text-align: center;
  background-color: #FAF9F7;
  padding: 5% 4%;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* container that holds image + key points */
.Advantages-matter{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;           
  padding: 3% 0;
  flex-wrap: wrap;       
  box-sizing: border-box;
  padding: 5%;
}

/* image wrapper: becomes the positioning context for absolute children */
.Ad-Img{
   width: 40%;
  min-width: 260px;
  margin-left: 0; /* spacing handled by gap */
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
  box-sizing: border-box;
}

/* ensure direct img inside Ad-Img behaves well on desktop */
.Ad-Img > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* The foreground person/cap image (cap-man) — scaled & positioned relative */
.cap-man{
  position: absolute;
  /* Use percent offsets so placement scales with container */
  left: 25%;
  top: 12%;
  width: 46%;
  height: 120%;
  max-width: 300px;
  object-fit: contain;
  transition: left .18s ease, top .18s ease, width .18s ease;
}
.Cloud{
  z-index: 0;
}

/* Key points (text column) */
.Key-points{
  width: 40%;
  min-width: 260px;
  box-sizing: border-box;
  margin-left: 0; /* spacing handled by gap */
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: stretch;
}

/* each point style */
.point{
  padding: .9rem 1rem;
  text-align: left;
  font-weight: 400;
  font-size: 1.05rem;
  display: flex;
  gap: .75rem;
  align-items: center;
  border-radius: 8px;
  background: #fff;
  box-sizing: border-box;
}

/* small shape/icon */
.bi-triangle-fill{
  font-size: 1.05rem;
  color: rgb(218, 218, 4);
}
.bi-star-fill{
  font-size: 1.05rem;
  color: rgb(233, 142, 7);
}
.bi-square-fill{
  font-size: 1.05rem;
  color: rgb(4, 157, 218);
}
.bi-pentagon-fill{
  font-size: 1.05rem;
  color: rgb(111, 4, 218);
}

/* small descriptive text */
.Grey-text { color: #5b5b5b; margin: 0; }

/* ========== Responsive breakpoints ========== */

/* Large tablets / small laptops */
@media (max-width: 1024px){
  .Ad-Img{ width: 46%; max-width: 460px; }
  .Key-points{ width: 48%; }
  .cap-man{ left: 20%; top: 14%; width: 44%; }
}

/* Tablets and larger phones in landscape */
@media (max-width: 768px){
  .Advantages-matter{
    gap: 1.5rem;
    padding: 2% 0;
  }
  .Ad-Img{
    width: 100%;
    max-width: 720px;
    aspect-ratio: 16 / 9;
    order: 1;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  /* scale illustration for medium screens */
  .Ad-Img > img {
    width: 72%;
    max-width: 420px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }
  .Key-points{ width: 100%; order: 2; gap: 1rem; padding: 0 8px; }
  .cap-man{ left: 18%; top: 11%; width: 40%; height: 100%; }
  .point{ font-size: 1rem; padding: .4rem; border-radius: 10px; }
}

/* Small phones — stack vertically and reduce sizes */
@media (max-width: 480px){
  .Advantages-Main{ padding: 6% 4%; }
  .Ad-Img{
    aspect-ratio: auto;
    height: auto;
    width: 100%;
    max-width: 100%;
    order: 1;
    position: relative;
    padding: 0;
    margin: 0 auto;
  }

  /* illustration smaller on small phones */
  .Ad-Img > img{
    width: 62%;
    max-width: 320px;
    height: auto;
    display: block;
    margin: 8px auto 6px;
    object-fit: contain;
  }

  .cap-man{
    left: 50%;
    top: 62%;
    transform: translateX(-50%);
    width: 42%;
  }

  .Key-points{
    width: 100%;
    gap: 10px;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .point{
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    box-sizing: border-box;
    font-size: 0.98rem;
  }

  /* icon column: fixed width so text lines up consistently */
  .point i {
    width: 40px;
    min-width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin: 0;
  }

  /* text block occupies remaining space */
  .point .Grey-text {
    margin: 0;
    line-height: 1.3;
    color: #5b5b5b;
    font-size: 0.98rem;
  }

  /* ensure cap-man doesn't overflow */
  .cap-man {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: 55% !important;
    width: 42% !important;
  }
}

/* Very small / narrow devices (optional small tweak) */
@media (max-width: 360px) {
  .Ad-Img > img { width: 58%; max-width: 280px; }
  .point { font-size: .95rem; padding: 10px 10px; }
  .point i { width: 36px; height: 36px; font-size: 16px; }
  .Key-points { gap: 8px; padding: 0 6px; }
}

/* Career Services Start */

/* Section */
.career-section{
  position: relative;
  padding: 48px 20px 80px;
  overflow: visible;
}

/* decorative star on the right */
.decor-star{
  position: absolute;
  right: 20px;
  top: -10px;
  width: 220px;
  height: 220px;
  pointer-events: none;
  opacity: 0.9;
  display: none; /* hidden on small screens */
}

/* center container */
.container{
  max-width: var(--max-width);
  margin: 0 auto;
}

/* heading */
.heading{
  text-align: center;
  margin-bottom: 36px;
}
.eyebrow{
  display:block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color:#58607a;
  font-size: 13px;
  font-weight:600;
  margin-bottom:10px;
}
.bi-laptop{
  font-size: 35px;
  color: orange;
}
.bi-megaphone{
  font-size: 35px;
  color: rgb(4, 100, 216);
}
.bi-file-earmark-medical{
  font-size: 35px;
  color: rgb(212, 216, 4);
}
.bi-people{
  font-size: 35px;
  color: rgb(152, 4, 216);
}
.heading h1{
  margin:0;
  font-size:15px;
  line-height:1.12;
  font-weight:700;
  color:#0b1220;
}

/* cards grid */
.cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
  margin-top: 18px;
}

/* individual card */
.card{
  background: var(--card-bg);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.02), 0 8px 20px rgba(18,24,32,0.04);
  border: 1px solid rgba(230,226,224,0.7);
  display:flex;
  flex-direction:column;
  gap:14px;
  min-height:140px;
}

/* icon wrapper */
.card-icon{
  width:46px;
  height:46px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.9);
  box-shadow: inset 0 -6px 16px rgba(0,0,0,0.02);
}
.card-icon svg{ width:28px; height:28px; }

/* title + description */
.card h3{
  margin:0;
  font-size:18px;
  font-weight:600;
  color:#0b1220;
}
.card p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}
.Curriculum-button02{
  background-color: white;
  border-radius: 10px ;
  border: none;
  padding: 15px 60px;
  /* margin: 0 auto; */
  margin: 5%;
  /* color: white; */
   box-shadow: 5px 5px 8px rgb(32, 31, 31);
}
.Curriculum-button02:hover{
background-color: var(--color-warning);
color: var(--color-primary);
}

/* layout on larger screens */
@media (min-width: 700px){
  .cards{
    grid-template-columns: 1fr 1fr;
    gap: 28px 36px;
  }
  .heading h1{ font-size:36px; }
  .container{ padding: 0 20px; }
  .decor-star{ display:block; }
}

/* extra-large screens spacing */
@media (min-width: 1100px){
  .career-section{ padding-top: 64px; padding-bottom: 100px; }
  .heading h1{ font-size:44px; }
  .cards{ gap:36px 48px; }
}

/* Small tweaks for very small screens */
@media (max-width:420px){
  .heading h1{ font-size:22px; }
  .card{ padding:20px; border-radius:16px; }
  .card-icon{ width:40px; height:40px; }
}
/*================== Career Servies End=========== */
/* ====================Level Up===================== */

.LevelUp-main{
  /* border: 2px solid green; */
  /* padding: 5%; */
  margin: 0 auto;
  text-align: center;
  align-content: center;
}
.levelup01{
  width: 68%;
  /* display: flex; */
  /* border: 2px solid grey; */
  margin: 5% auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* gap: 5px; */
}
.levelup02{
/* border: 1px solid rgb(216, 216, 216); */
width: 95%;
height: 70vh;
display: grid;
grid-template-rows: 1.8fr 1.5fr;
gap: 20px;
}
.levelup022{
/* border: 1px solid rgb(216, 216, 216); */
width: 95%;
height: 70  vh;
display: grid;
grid-template-rows: 2fr 1fr;
gap: 20px;
}
.levelup02 > img{
  width: 500px;
}
.img-10X{
  width: 20%;
}
.L-white-box-main{
  width: 100%;
  display: flex;
  align-content: flex-start;
}
.L-white-box{
  background-color: white;
  border-radius: 10px;
  margin: 1%;
  font-size: small;
  padding: 8px;
  color: rgb(158, 152, 141);
}
.levelup-inner-box-an{
  width: 97%;
  height: 94%;
  /* background-color: green; */
  border-radius: 8px;
  display: flex;
}
.L-matter-box{
  width: 50%;
}
.CXO-img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}


.L-animation-box{
  /* border: 2px solid grey; */
  width: 50%;
  border-radius: 8px;
  /* display: flex;
  overflow-x: auto;
  overflow-x: hidden; */
   /* Hides horizontal scrollbar */
  /* gap: 1em; */
}
.L-animation-box>img{
  width: 100%;
  height: 100%;
  border-radius: 10px;
}





.levelup-10x-Box{
  border: 1px solid rgb(216, 216, 216);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.levelup-inner-box{
  width: 97%;
  height: 94%;
  /* background-color: green; */
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to start */
  justify-content: flex-start; /* Push content to top */
  gap: 18px;
  padding: 15px;
   
}
.levelup-inner-box2>span{
  text-align: left;
}
.levelup-inner-box2{
  width: 94%;
  height: 91%;
  border-radius: 8px;
  padding: 10px;
  
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align items to start */
  justify-content: flex-start; /* Push content to top */
  gap: 8px; /* spacing between image and text (optional) */
  
}
.levelup-inner-box2>img{
  background-color: white;
  border-radius: 10px;
  /* align-content: end; */
  /* display: inline; */
}
.levelup-inner-box2>h3{
    letter-spacing: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
}
.partner{
/* background-color: #ececf1; */
border-radius: 10px;
border: 1px solid rgb(216, 216, 216);
display: flex;
  align-items: center;
  justify-content: center;
}
.levelup-CXO-Box{
  border: 1px solid rgb(216, 216, 216);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* display: grid; */
  grid-template-columns: 1fr;
  /* gap: 15px; */
}
.levelup-CXO-Box22{
  /* border: 1px solid rgb(216, 216, 216); */
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 15px;
}
.levelup-10x-Box>img{
width: 97%; 
height: 96%;
border-radius: 10px;

}
.hands-on-work{
/* background-color: #faf9f7 ; */
border: 1px solid rgb(216, 216, 216);
border-radius: 10px;
display: flex;
  align-items: center;
  justify-content: center;
}
/* ================== Responsive: Tablet (up to 1024px) ================== */
@media (max-width: 1024px) {
  .levelup01 {
    width: 90%;
    gap: 18px;
  }

  .levelup02,
  .levelup022 {
    width: 100%;
    /* let grid rows size naturally on smaller screens */
    height: auto;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
  }

  .levelup-10x-Box,
  .levelup-CXO-Box,
  .hands-on-work,
  .partner {
    width: 100%;
  }

  .levelup-10x-Box > img {
    width: 100%;
    height: auto;
  }

  .img-10X {
    width: 28%;
    max-width: 120px;
  }

  .levelup-inner-box,
  .levelup-inner-box2,
  .levelup-inner-box-an {
    height: auto;
  }

  .L-matter-box,
  .L-animation-box {
    width: 100%;
  }
  .L-animation-box > img {
    width: 100%;
    height: auto;
  }

  .L-white-box-main {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ================== Responsive: Mobile (up to 600px) - ONE COLUMN ================== */
@media (max-width: 600px) {
  /* make everything single column */
  .levelup01 {
    width: 95%;
    margin: 6% auto;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .levelup02,
  .levelup022 {
    width: 100%;
    height: auto;
    grid-template-rows: none;
    gap: 14px;
  }

  /* stack right-side pair into single column */
  .levelup-CXO-Box22 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .levelup-10x-Box,
  .levelup-CXO-Box,
  .hands-on-work,
  .partner {
    width: 100%;
    box-sizing: border-box;
  }

  /* images scale while preserving aspect ratio */
  .levelup-10x-Box > img,
  .levelup-10x-Box img,
  .CXO-img,
  .L-animation-box > img,
  .levelup02 > img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* slightly larger 10X icon on mobile for visibility */
  .img-10X {
    width: 38%;
    max-width: 140px;
  }

  /* make inner boxes flow naturally */
  .levelup-inner-box,
  .levelup-inner-box2,
  .levelup-inner-box-an {
    width: 100%;
    height: auto;
    padding: 12px;
    gap: 10px;
  }

  .L-white-box-main {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .L-white-box {
    margin: 6px 6px;
    font-size: 0.85rem;
  }

  /* ensure animation/image wrapper doesn't overflow */
  .L-matter-box,
  .L-animation-box {
    width: 100%;
  }

  /* tighten spacing on very small devices */
  @media (max-width: 360px) {
    .LevelUp-main span { font-size: 0.9rem; }
    .LevelUp-main h2 { font-size: 1.05rem; line-height: 1.25rem; }
    .img-10X { width: 44%; }
  }
}

/* ===================level up end======================= */

/* ================faculty Area===================== */
.faculty-main {
  /* text-align: center; */
  /* border: 2px solid blue; */
  /* margin: 5%; */
  padding: 5%;
  margin-bottom: 5%;
  background-color: #FAF9F7;
}

.faculty-box-main {
  width: 100%;
  /* border: 2px solid green; */
  display: flex;
  align-items: center;
  justify-content: center;
  padding:5%;
  gap: 50px;
  flex-wrap: wrap; /* allows wrapping on smaller screens */
}

.f-box {
  width: 22%;
  border: 1px solid rgb(215, 204, 204);
  border-radius: 15px;
  padding: 1%;
  transition: all 0.3s ease;
  background: #fff;
}

.f-box > span, p {
  font-size: 0.9rem;
  font-weight: 500;
  color: grey;
}

.faculty-img {
  width: 25%;
  border-radius: 15px;
}

.line2 {
  width: 100%;
  border: 1px solid rgb(234, 229, 229);
  margin-top: 5px;
  margin-bottom: 5px;
}

.faculty-img11 {
  width: 35%;
  height: auto;
}

/* ---------- Responsive Breakpoints ---------- */

/* Medium screens (Tablets) */
@media (max-width: 1024px) {
  .faculty-box-main {
    gap: 30px;
  }
  .f-box {
    width: 40%;
  }
  .faculty-img {
    width: 30%;
  }
}

/* Small screens (Mobiles) */
@media (max-width: 768px) {
  .faculty-box-main {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 8%;
  }
  .f-box {
    width: 80%;
    text-align: center;
  }
  .faculty-img {
    width: 35%;
  }
  .faculty-img11 {
    width: 40%;
  }
}

/* Extra small screens (very small phones) */
@media (max-width: 480px) {
  .f-box {
    width: 95%;
    padding: 4%;
  }
  .faculty-img {
    width: 40%;
  }
  .faculty-img11 {
    width: 45%;
  }
}

  /* ========================Faculty Area======================= */

/* ======================Testimonials Area======================== */

.testimonial-main{
  width: 100%;
  padding:  5% 2%;
  /* border: 2px solid rgb(193, 204, 193); */
  display: flex;
  overflow-x: auto;
  /* overflow-x: hidden; */
 
  /* gap: 1em; */
  /* D:\LearnHub02 (2)\LearnHub02\assets\img\BG-shade03.svg */
  /* background-image: url('assets/img/BG-shade03.svg'); */ 
  /* background-repeat: no-repeat;
  /* background-image: url("assets/img/BG-shade02.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    /* background-color: grey; */
}
.testimonial-main::-webkit-scrollbar{
  display: none;
}

.T-group{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  /* animation: Scroll 15s infinite linear; */
}
@keyframes Scroll {
  from{
    translate: 0;
  }to{
    translate: -100%;
  }
}
.testimonial-card {
    width: 23%;
    height: 60vh;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    padding:5px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
.user-matter{
  position: relative;
}
  .quote-icon {
    font-size: 110px;
    /* height: 5%; */

    color: #0066ff;
    /* border: 2px solid green; */
    position: absolute;
    top: 0px;
    left: 0px;
    
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    padding-top: 35%;
    flex: 1;
  }

  .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
  }

  .user-info img {
    width: 100%;
    /* border: 2px solid grey; */
  }

  .user-details {
    display: flex;
    flex-direction: column;
    height: 10%;
    border: 2px solid green;
  }

  .user-details h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
  }

  .user-details img {
    width: 80px;
    height: auto;
    margin-top: 3px;
  }
  

 /* ================== TABLET VIEW FIX (768px – 1024px) ================== */
@media (max-width: 1024px) {

  .testimonial-main {
    width: 100%;
    padding: 20px 10px;
    overflow-x: hidden;
  }

  .T-group {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .testimonial-card {
    width: 42%;               /* 2 cards per row */
    height: auto;
    padding: 20px;
  }

  .quote-icon {
    font-size: 70px;
  }

  .testimonial-text {
    padding-top: 28%;
    font-size: 15px;
  }

  .user-info img {
    width: 90%;
  }
}

/* ================== MOBILE VIEW FIX (Below 768px) ================== */
@media (max-width: 768px) {

  .testimonial-main {
    display: block;
    overflow-x: hidden;
    padding: 10px;
  }

  .T-group {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .testimonial-card {
    width: 90%;
    max-width: 360px;
    height: auto;
    padding: 20px;
  }

  .quote-icon {
    font-size: 52px;
  }

  .testimonial-text {
    padding-top: 25%;
    font-size: 14px;
  }

  .user-info img {
    width: 75%;
    margin: 0 auto;
    display: block;
  }
}

/* ================== SMALL MOBILE VIEW FIX (Below 480px) ================== */
@media (max-width: 480px) {

  .testimonial-card {
    width: 100%;
    max-width: 330px;
    padding: 16px;
  }

  .quote-icon {
    font-size: 45px;
  }

  .testimonial-text {
    padding-top: 22%;
    font-size: 13.5px;
  }

  .user-info img {
    width: 80%;
  }
}



/* ======================Testimonials Area End======================== */

/* ===================== Course Pricing Section ===================== */

.course-pricing {
  text-align: center;
  padding: 80px 20px;
  background-color: #fff;
}
.pricing-header{
  margin-bottom: 5%;
}
.pricing-header p {
  color: #888;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.pricing-header h2 {
  font-size: 30px;
  margin-bottom: 40px;
  color: #222;
}

/* ----- Card ----- */
.pricing-card {
  max-width: 440px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px 25px;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-card h3 {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-features li {
  margin: 10px 0;
  font-size: 18px;
  color: #7e7c7c;
  display: flex;
  align-items: center;
  line-height: 1.8;
  gap: 6px;
}

.pricing-features li::before {
  content: "✔";
  color: #5ad905;
  font-weight: 600;
}

/* Separator */
.pricing-card hr {
  border: none;
  border-top: 2px solid #bababa;
  margin: 20px 0;
}

/* Bottom Section */
.pricing-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.price strong {
  font-size: 22px;
  color: #111;
}

.price p {
  font-size: 13px;
  color: #777;
  margin-top: 4px;
}

.apply-btn {
  background-color: var(--color-warning);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  /* background-color: #e65a0d; */
  box-shadow: 5px 10px 10px grey;
}

/* ================== Responsive ================== */

/* --- Large Tablets (1024px and below) --- */
@media (max-width: 1024px) {
  .pricing-card {
    max-width: 75%;
    padding: 35px 30px;
  }

  .pricing-card h3 {
    font-size: 16px;
  }

  .pricing-features li {
    font-size: 14px;
  }

  .price strong {
    font-size: 24px;
  }
}

/* --- Tablets (768px and below) --- */
@media (max-width: 768px) {
  .pricing-card {
    max-width: 85%;
    padding: 30px 25px;
  }

  .pricing-header h2 {
    font-size: 22px;
  }

  .pricing-card h3 {
    font-size: 15px;
  }

  .pricing-features li {
    font-size: 13.5px;
  }

  .pricing-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* --- Mobile Phones (480px and below) --- */
@media (max-width: 480px) {
  .pricing-header h2 {
    font-size: 20px;
  }

  .pricing-card {
    max-width: 95%;
    padding: 25px 20px;
  }

  .pricing-card h3 {
    font-size: 14px;
  }

  .pricing-features li {
    font-size: 13px;
  }

  .pricing-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .apply-btn {
    width: 100%;
    text-align: center;
  }
}

/* ===================== Course Pricing Section End===================== */

/* =========================Doubts Area ======================*/

.doubts-main {
  width: 100%;
  padding: 6%;
  background-color: #FAF9F7;
  text-align: center;
}

.doubts-main span {
  display: block;
  font-weight: 600;
  color: #ff6600; /* optional highlight color */
  letter-spacing: 1px;
  font-size: 1.2rem;
}

.doubts-main h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-top: 0.5rem;
}

.doubts-main-inner {
  width: 100%;
  padding-top: 2%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6%;
}

.boubt-img-box img {
  width: 100%;
  height: auto;
  max-width: 500px;
}

.doubt-form {
  width: 35%;
}

.doubt-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
}
.experience-label{
  text-align: left;
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .doubts-main {
    padding: 8%;
  }

  .doubts-main-inner {
    gap: 4%;
  }

  .doubt-form {
    width: 45%;
  }

  .doubts-main h2 {
    font-size: 1.8rem;
  }

  .boubt-img-box img {
    max-width: 400px;
  }
}

/* Small Tablets & Large Mobiles (<= 768px) */
@media (max-width: 768px) {
  .doubts-main-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .boubt-img-box img {
    max-width: 90%;
  }

  .doubt-form {
    width: 80%;
  }

  .doubts-main h2 {
    font-size: 1.6rem;
  }

  .doubts-main span {
    font-size: 1rem;
  }
}

/* Mobile Phones (<= 480px) */
@media (max-width: 480px) {
  .doubts-main {
    padding: 10% 5%;
  }

  .doubts-main h2 {
    font-size: 1.4rem;
  }

  .doubt-form {
    width: 100%;
  }

  .boubt-img-box img {
    max-width: 100%;
  }

  .doubt-card {
    padding: 15px;
  }
}
/* ======================== Doubts Area End===================== */


/* ======================Question Area============================ */
.faq-section {
  width: 75%;
  max-width: 1000px;
  margin: auto;
  padding: 5%;
  text-align: center;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
}

.faq-item {
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 18px;
  padding: 18px 10px;
  cursor: pointer;
  display: flex;
  color: rgb(120, 118, 118);
  justify-content: space-between;
  align-items: center;
}

.faq-question .icon {
  font-size: 24px;
  transition: transform 0.5s ease;
  margin-left: 15px;
  color: grey;
}

.faq-item.active .icon {
  transform: rotate(135deg); /* Plus → X */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 10px;
}

.faq-answer p {
  margin: 15px 0;
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 600px) {
  .faq-section {
    width: 95%;
  }
}

/* ======================Question Area====================== */

/* ==================Footer Area==================== */
/* Footer Wrapper */
.site-footer {
  background: #281914;
  color: #cfc6c0;
  padding: 6% 20px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Inner Container */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

/* Desktop */
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.9fr 0.6fr;
  }
}

/* Tablet */
@media (min-width: 600px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Column Titles */
.col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: bold;
}

/* Brand Section */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.brand img {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 6px;
  object-fit: contain;
}

.brand-title {
  color: #ffffff;
  font-weight: bold;
}

.brand-small {
  font-size: 12px;
  color: #cfc6c0;
}

/* Contact Section */
.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li {
  margin: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-icon {
  background: rgba(255,255,255,0.06);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

/* Offerings */
.offerings {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.offering-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offering-row img {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 6px;
}

/* Links */
.links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  text-decoration: none;
  color: #cfc6c0;
}

.links a:hover {
  /* text-decoration: underline; */
  color: white;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin: 28px 0;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.socials {
  display: flex;
  gap: 12px;
}

.social {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  color: #cfc6c0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* ==================Footer Area End================== */

/* =================Link Area ===================== */

.link-main{
  padding: 2%;
  background-color: var(--color-secondary);
}
/* Wrapper — centers the content and sets max width */
.links-wrapper {
  max-width: 1100px;
  margin: 60px auto;      /* centers horizontally and adds top spacing */
  padding: 0 20px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Page title */
.page-title {
  margin: 0 0 26px 0;
  color: #ffffff;
  font-size: 22px;       /* slightly larger */
  font-weight: 700;
}

/* Each section (keeps vertical spacing) */
.links-section {
  margin-bottom: 36px;
}

/* The 2-column grid: left narrow + right flexible */
.section-grid {
  display: grid;
  grid-template-columns: 240px 1fr;  /* left column fixed, right takes remaining space */
  column-gap: 40px;
  align-items: start;
}

/* Left column title (category) */
.left-col .left-title {
  color: #cfcfcf;
  font-size: 15px;
  font-weight: 600;
  padding-top: 3px;   /* aligns with first row of links visually */
}

/* Right column header (sub-category) */
.right-col .right-header {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Links list — flow of items and subsections */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13px;         /* slightly increased text size */
  line-height: 1.9;
}

/* Links style */
.links-list a {
  color: #dcdcdc;
  text-decoration: underline;
  display: inline-block;
  max-width: 100%;
  white-space: normal;     /* allow wrap if needed */
}

/* small vertical section titles inside the links column */
.sub-title {
  color: #ffffff;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 6px;
  font-size: 15px;
}

/* "|" separator style (used inline between some links) */
.sep {
  color: #6e6e6e;
  margin: 0 8px;
  line-height: 1; 
  align-self: center;
}

/* Divider between big sections */
.section-divider {
  height: 1px;
  background: rgb(140, 139, 139);
  margin: 26px 0;
  border-radius: 1px;
}

/* Accessibility focus state for keyboard users */
.links-list a:focus {
  outline: 2px solid rgba(255,255,255,0.08);
  outline-offset: 3px;
}
.payment-imgs{
  display: flex;
  justify-content: space-between;

}
.right-col-part >img{
width: 80%;
}
.Title-Text-main{
  margin: 5% auto;
  /* border: 2px solid grey; */
  text-align: center;
}
.Title-Text-main>h1{
  font-size: 100px;
  position: relative;
  overflow: hidden;
}
.shine-text {
  font-size: 60px;
  font-weight: bold;
  background: linear-gradient(90deg, black, black, #535354, black, black, rgb(106, 105, 105) , black);
  background-size: 200%;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shine 8s linear infinite ;
}
/* ===================== Tablet (max-width: 1024px) ===================== */
@media (max-width: 1024px) {
  .Title-Text-main > h1 {
    font-size: 70px;   /* reduce title size */
  }

  .shine-text {
    font-size: 45px;
  }
}

/* ===================== Mobile (max-width: 600px) ===================== */
@media (max-width: 600px) {
  .Title-Text-main {
    margin: 10% auto;
    padding: 0 10px;
  }

  .Title-Text-main > h1 {
    font-size: 42px;   /* smaller for small screens */
  }

  .shine-text {
    font-size: 32px;
  }
}

/* Optional: ultra-small screens (max-width: 360px) */
@media (max-width: 360px) {
  .Title-Text-main > h1 {
    font-size: 34px;
  }

  .shine-text {
    font-size: 26px;
  }
}


@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: 0% center; }
}

/* RESPONSIVE: stack columns on small screens */
@media (max-width: 780px) {
  .section-grid {
    grid-template-columns: 1fr;   /* single column */
    row-gap: 18px;
  }

  .left-col .left-title {
    padding-top: 0;
  }
}

/* small polish for very small screens */
@media (max-width: 420px) {
  .links-wrapper {
    margin: 36px auto;
  }

  .page-title {
    font-size: 20px;
  }

  .links-list {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ================Link Area End==================== */