/* ======================================================
      GLOBAL RESET
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  color: #0a1445;
  overflow-x: hidden;
}

/* ======================================================
      HERO SECTION — KEEPING ORIGINAL DESIGN
====================================================== */
.hero__course-title {
  grid-column: 1 / -1;
  text-align: center;
  padding: 10px 20px;
  color: #fff;
}

.hero__course-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 18px;
}

.course-stars {
  font-size: 26px;
  color: #ffcc33;
  margin-bottom: 10px;
  letter-spacing: 6px;
}

.enrolled-count {
  font-size: 18px;
  color: #cfd8ff;
  margin-bottom: 25px;
}

.hero-divider {
  width: 80%;
  margin: 0 auto;
  border: none;
  border-top: 1px solid rgba(255,255,255,0.22);
}

/* HERO GRID */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 40px;
  padding: 60px;
  min-height: 90vh;
  background: linear-gradient(120deg, #0a1445, #0b0f2b 40%, #1e1a72);
  color: #fff;
}

.hero__title {
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.2;
}

.hero__title-accent {
  color: #00aaff;
  text-shadow: 0 0 20px rgba(0, 174, 255, 0.4);
}

.hero__subtitle {
  margin-top: 20px;
  font-size: 18px;
  color: #cfd9ff;
  max-width: 420px;
}

/* HERO MEDIA */
.media-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
}

.media-card:hover {
  transform: scale(1.03);
}

.media-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  background: linear-gradient(45deg, #007bff, #7f00ff);
  box-shadow: 0 0 25px rgba(0, 174, 255, 0.6);
}

/* HERO RIGHT BOX */
.hero__meta {
  background: rgba(255, 255, 255, 0.08);
  padding: 35px;
  border-radius: 12px;
  max-width: 380px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.course-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.course-details {
  list-style: none;
  padding: 0;
}

.course-details li {
  padding: 10px 0;
  margin: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e6f2ff;
  transition: 0.3s;
}

.course-details li:hover {
  color: #00c8ff;
  transform: translateX(6px);
}

/* ======================================================
      INTERACTIVE COURSE CARDS (NEW SECTION)
====================================================== */

.interactive-courses {
  padding: 70px 8%;
  background: #f8faff;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  color: #0a1445;
  margin-bottom: 50px;
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.course-box {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e3eefe;
  box-shadow: 0 10px 30px rgba(34, 80, 160, 0.08);
  transition: all 0.35s ease;
  align-items: center;
}

.course-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 50, 140, 0.15);
  border-color: #1a73e8;
}

.icon-wrap {
  width: 85px;
  height: 85px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dfefff, #c9e2ff);
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrap img {
  width: 52px;
  height: 52px;
}

.course-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.course-info p {
  font-size: 16px;
  color: #3b4570;
  line-height: 1.6;
}

/* ======================================================
      BENEFITS SECTION
====================================================== */
/* BENEFITS SECTION */
.benefits-section {
  padding: 80px 8%;
  background: #ffffff;
  min-height: 300px; /* FIX: ensure visibility */
}

.benefits-section .section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-weight: 800;
  color: #001958;
}

/* GRID */
.benefit-cards {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BENEFIT CARD */
.benefit-card {
  background: #f3f7ff;
  padding: 30px;
  border-radius: 15px;
  width: 200px;
  height: 250px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(0, 50, 130, 0.18);
}

/* Diamond Shape */
.benefit-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: rotate(45deg);
  z-index: -1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  padding: 30px;
}

/* ICON */
.card-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
  background-color: #0047b3;
  color: #fff;
  border-radius: 50%;
  padding: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* TITLE */
.benefit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #001958;
}

/* DESCRIPTION */
.benefit-card p {
  font-size: 15px;
  color: #3b4c7a;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .benefit-cards {
    flex-direction: column;
    gap: 20px;
  }
  .benefit-card {
    width: 80%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .benefit-card {
    width: 90%;
    max-width: 350px;
  }
}

@media (max-width: 576px) {
  .benefit-card {
    width: 90%;
    max-width: 320px;
  }
}

/* ======================================================
      WHY CHOOSE SECTION
====================================================== */

.course-details-section {
  padding: 60px 8%;
  background: #f8fafc;
}

.details-block {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #e5efff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  margin-bottom: 25px;
}

.details-block h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.details-block p {
  font-size: 16px;
  line-height: 1.6;
  color: #3b4570;
}

/* ======================================================
      RESPONSIVE
====================================================== */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .course-box {
    flex-direction: column;
    text-align: center;
  }
  .benefit-cards {
    grid-template-columns: 1fr;
  }
}

/* ======================================================
      NEW HERO IMAGE SECTION (REPLACES OLD HERO GRID)
====================================================== */

.hero-image {
  width: 100%;
  min-height: 90vh;

  /* 🔥 HERO IMAGE PATH */
  background-image: url("../assets/skillhero.png");

  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

/* Optional overlay for text readability 
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 15, 60, 0.65),
    rgba(5, 15, 60, 0.25)
  );
}*/

/* Text container */
.hero-image__overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

/* Main title */
.hero-image__title {
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Subtitle */
.hero-image__subtitle {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
  color: #dbe7ff;
}

/* ======================================================
      MOBILE RESPONSIVE
====================================================== */

@media (max-width: 768px) {
  .hero-image {
    min-height: 70vh;
    background-position: center;
  }

  .hero-image__overlay {
    padding: 20px;
  }

  .hero-image__title {
    font-size: 32px;
  }

  .hero-image__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-image {
    min-height: 55vh;

    /* 🔥 Prevent cropping */
    background-size: contain;
    background-position: top center;
    background-repeat: no-repeat;

  }

  .hero-image__overlay {
    padding: 18px;
  }

  .hero-image__title {
    font-size: 26px;
    text-align: center;
  }

  .hero-image__subtitle {
    font-size: 15px;
    text-align: center;
  }
}

/*skills*/
/* Program Cards Section */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.program-card {
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.2) 0%,
        rgba(12, 74, 110, 0.1) 100%
    );
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: 24px;
    padding: 45px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

/* Top glow bar */
.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--neural-cyan),
        var(--neural-teal),
        var(--neural-glow)
    );
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

/* Hover glow bar */
.program-card:hover::before {
    transform: scaleX(1);
    height: 5px;
}

/* CARD HOVER — MATCH IMAGE */
.program-card:hover {
    transform: translateY(-14px);
    border-color: var(--neural-glow);

    background: linear-gradient(
        180deg,
        rgba(242, 246, 253, 0.95) 0%,
        rgba(10, 41, 107, 0.98) 100%
    );

    box-shadow:
        0 0 0 1px rgba(34, 211, 238, 0.6),
        0 18px 55px rgba(6, 182, 212, 0.45),
        0 0 80px rgba(34, 211, 238, 0.25);
}

/* Program Icon */
.program-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
    transition: filter 0.5s ease;
}

/* Icon glow on hover */
.program-card:hover .program-icon {
    filter:
        drop-shadow(0 0 14px rgba(34, 211, 238, 0.85))
        drop-shadow(0 0 30px rgba(34, 211, 238, 0.65));
}

/* Heading */
.program-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neural-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Text */
.program-card p {
    color: var(--neural-gray);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

/* Slight text brightening on hover */
.program-card:hover p {
    color: rgba(226, 232, 240, 0.85);
}

/* Expandable content */
.program-card .expanded-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, margin-top 0.5s ease;
}

.program-card.expanded .expanded-content {
    max-height: 500px;
    margin-top: 20px;
}

/* Tag line */
.program-card .tag-line {
    display: inline-block;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--neural-cyan);
    color: var(--neural-cyan);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 15px;
    transition: box-shadow 0.3s ease, background 0.3s ease;
}

/* Tag glow on hover */
.program-card:hover .tag-line {
    background: rgba(248, 255, 255, 0.15);
    box-shadow: 0 0 18px rgba(34, 211, 238, 0.4);
}

/* Programs Section Heading */
.programs-section-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    margin-top: 80px;
    color: var(--neural-white);
    letter-spacing: -1px;
}
/*============================new section */
.bv-visual-section {
  padding: 90px 0;
  background:
    radial-gradient(circle at top left, rgba(29,93,236,0.25), transparent 40%),
    radial-gradient(circle at bottom right, rgba(29,93,236,0.18), transparent 40%),
    #20056d;
  color: #eaf1ff;
}

.bv-wrapper {
  width: min(1200px, 92%);
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ==============================
   LEFT CONTENT
============================== */
.bv-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(29, 93, 236, 0.15);
  border: 1px solid rgba(29, 93, 236, 0.4);
  margin-bottom: 18px;
}

.bv-text h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  margin-bottom: 18px;
}

.bv-text h2 span {
  color: #4f8dff;
}

.bv-text p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 560px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.bv-text ul {
  list-style: none;
  margin-bottom: 30px;
}

.bv-text ul li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
}

.bv-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f8dff;
  font-weight: bold;
}

/* CTA BUTTONS */
.bv-cta {
  display: flex;
  gap: 14px;
}

.bv-btn {
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.25s ease;
  display: inline-block;
}

.bv-btn.primary {
  background: linear-gradient(135deg, #1d5dec, #4f8dff);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(29,93,236,0.45);
}

.bv-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 45px rgba(29,93,236,0.6);
}

.bv-btn.secondary {
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

.bv-btn.secondary:hover {
  background: rgba(255,255,255,0.12);
}

/* ==============================
   RIGHT VISUAL AREA
============================== */
.bv-visual {
  position: relative;
}

.bv-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: #1d5dec;
  filter: blur(130px);
  opacity: 0.35;
  top: 45%;
  left: 45%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.bv-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.bv-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

.bv-card .icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.bv-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.bv-card p {
  font-size: 13.5px;
  opacity: 0.85;
  line-height: 1.5;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
  .bv-wrapper {
    grid-template-columns: 1fr;
  }

  .bv-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* GRID */
/* GRID */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* CARD */
.feature-card {
  position: relative;
  padding: 26px;
  border-radius: 20px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.03)
  );
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  transition: all 0.35s ease;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* ICON WRAPPER */
.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 22px;
  color: #0b1020;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}

/* ICON COLORS */
.icon-wrap.pink {
  background: linear-gradient(135deg, #ff9adf, #ffd1ec);
}
.icon-wrap.silver {
  background: linear-gradient(135deg, #dce3ec, #f3f6fa);
}
.icon-wrap.gold {
  background: linear-gradient(135deg, #ffd27a, #ffecb3);
}
.icon-wrap.blue {
  background: linear-gradient(135deg, #5a8cff, #8bb2ff);
}

/* TEXT */
.feature-card h4 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}




/* ======================================================
      SKILLS SECTION
====================================================== */
.skills-section {
  padding: 60px 0;
  background-color: #f8faff;
}

.skills-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.skill-card {
  position: relative;
  width: 23%;
  padding: 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.skill-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid #00aaff;
}

.skill-logo {
  max-width: 100%;
  height: auto;
  transition: filter 0.3s ease;
}

.skill-card:hover .skill-logo {
  filter: brightness(1.3);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .skills-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .skill-card {
    width: 100%;
  }
}

/* ===============================
BASE
=============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  padding: 100px 8%;
  background: #f5f7fb;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial;
}

/* ===============================
COMMON ROW LAYOUT
=============================== */
.wss-row,
.what-we-do-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 120px;
}

/* Row-1 → Cards LEFT, Text RIGHT */
.wss-row {
  flex-direction: row;
}

/* Row-2 → Text LEFT, Cards RIGHT */
.what-we-do-row {
  flex-direction: row;
}

/* ===============================
TEXT BLOCK
=============================== */
.wss-text,
.left-section {
  flex: 1;
}

.wss-text h2,
.left-section h1 {
  font-size: 44px;
  color: #003d7a;
  margin-bottom: 24px;
}

.wss-text p,
.left-section .description {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 35px;
}

/* ===============================
BUTTONS
=============================== */
.wss-btn,
.cta-button {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  border: 2px solid #d32f2f;
  color: #d32f2f;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.wss-btn:hover,
.cta-button:hover {
  background: #d32f2f;
  color: #fff;
}

/* ===============================
CARD GRID (BOTH ROWS)
=============================== */
.wss-grid,
.right-section {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ===============================
FLIP CARD BASE
=============================== */
.wss-card,
.tile {
  height: 240px;
  perspective: 1000px;
}

.wss-inner,
.tile-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.wss-card:hover .wss-inner,
.tile:hover .tile-inner {
  transform: rotateY(180deg);
}

/* ===============================
CARD FACES
=============================== */
.wss-front,
.wss-back,
.tile-front,
.tile-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backface-visibility: hidden;
  padding: 22px;
  text-align: center;
}

/* FRONT */
.wss-front img,
.tile-icon {
  max-width: 120px;
  margin-bottom: 14px;
}

.wss-front span,
.tile-front h3 {
  font-weight: 700;
  color: #17031a;
}

/* BACK */
.wss-back,
.tile-back {
  transform: rotateY(180deg);
  background: #0a1445;
  color: #fff;
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
COLOR THEMES
=============================== */
/* Row 1 */
.wss-card-1 .wss-front { background: #75ccf1; }
.wss-card-2 .wss-front { background: #bbf7c5; }
.wss-card-3 .wss-front { background: #dee760; }
.wss-card-4 .wss-front { background: #8e44ad; }

/* Row 2 */
.red    .tile-front { background: #d32f2f; }
.navy  .tile-front { background: #003d7a; }
.blue  .tile-front { background: #0077be; }
.purple .tile-front { background: #cd71f1; }

/* ===============================
RESPONSIVE – TABLETS
=============================== */
@media (max-width: 991px) {
  .wss-row,
  .what-we-do-row {
    flex-direction: column;
    text-align: center;
  }

  .wss-grid,
  .right-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .wss-btn,
  .cta-button {
    margin: auto;
  }
}
/* =========================================
RESPONSIVE – LARGE DESKTOP (1400px+)
========================================= */
@media (min-width: 1400px) {
  section {
    padding: 120px 10%;
  }

  .wss-text h2,
  .left-section h1 {
    font-size: 48px;
  }

  .wss-card,
  .tile {
    height: 260px;
  }
}

/* =========================================
RESPONSIVE – LAPTOPS (1200px – 1399px)
========================================= */
@media (max-width: 1399px) {
  section {
    padding: 10px 8%;
  }

  .wss-row,
  .what-we-do-row {
    gap: 50px;
  }
}

/* =========================================
RESPONSIVE – TABLETS LANDSCAPE (992px – 1199px)
========================================= */
@media (max-width: 1199px) {
  .wss-text h2,
  .left-section h1 {
    font-size: 38px;
  }

  .wss-text p,
  .left-section .description {
    font-size: 17px;
  }

  .wss-card,
  .tile {
    height: 220px;
  }
}

/* =========================================
RESPONSIVE – TABLETS PORTRAIT (768px – 991px)
========================================= */
@media (max-width: 991px) {
  .wss-row,
  .what-we-do-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .wss-grid,
  .right-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .wss-btn,
  .cta-button {
    margin: 0 auto;
  }
}

/* =========================================
RESPONSIVE – MOBILE LARGE (576px – 767px)
========================================= */
@media (max-width: 767px) {
  section {
    padding: 70px 6%;
  }

  .wss-text h2,
  .left-section h1 {
    font-size: 32px;
  }

  .wss-text p,
  .left-section .description {
    font-size: 16px;
  }

  .wss-grid,
  .right-section {
    grid-template-columns: 1fr;
  }

  .wss-card,
  .tile {
    height: 210px;
  }
}

/* =========================================
RESPONSIVE – MOBILE SMALL (≤575px)
========================================= */
@media (max-width: 575px) {
  section {
    padding: 60px 5%;
  }

  .wss-text h2,
  .left-section h1 {
    font-size: 28px;
  }

  .wss-text p,
  .left-section .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .wss-front img,
  .tile-icon {
    max-width: 95px;
  }

  .wss-card,
  .tile {
    height: 200px;
  }
}
/* ===============================
MOBILE FIX – CARD WIDTH ISSUE
=============================== */
@media (max-width: 767px) {

  /* Force grid to full width */
  .wss-grid,
  .right-section {
    width: 100%;
  }

  /* Fix card shape */
  .wss-card,
  .tile {
    width: 100%;
    height: auto;               /* REMOVE fixed height */
    aspect-ratio: 16 / 9;       /* MAINTAIN CARD SHAPE */
    max-width: 100%;
  }

  /* Inner must fill card */
  .wss-inner,
  .tile-inner {
    width: 100%;
    height: 100%;
  }

  /* Center content properly */
  .wss-front,
  .wss-back,
  .tile-front,
  .tile-back {
    padding: 20px;
  }

  /* Image size fix */
  .wss-front img,
  .tile-icon {
    max-width: 90px;
    height: auto;
  }
}

/* EXTRA SMALL DEVICES */
@media (max-width: 480px) {
  .wss-card,
  .tile {
    aspect-ratio: 4 / 3;
  }
}

/*skill section*/
/* =============================
   SKILLS SECTION - STYLING
============================= */
.skills-section {
  padding: 10px 8%;
  background-color: #f5f7fb;
  text-align: center;
}

.skills-section .section-title h2 {
  font-size: 36px;
  font-weight: 600;
  color: #003d7a;
  margin-bottom: 24px;
}

.skills-section .section-title p {
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
  line-height: 1.8;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.skill-card {
  width: 45%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.skill-card:hover {
  transform: translateY(-10px);
}

.skill-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-icon {
  width: 150px;
  height: 80px;
  margin-right: 20px;
  display: inline-block;
  border-radius: 50%;
  background: #003d7a;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.skill-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.skill-text h3 {
  font-size: 20px;
  color: #003d7a;
  margin-bottom: 12px;
}

.skill-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .skills-grid {
    justify-content: center;
  }

  .skill-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .skills-grid {
    flex-direction: column;
    align-items: center;
  }

  .skill-card {
    width: 80%;
  }

  .skill-text h3 {
    font-size: 18px;
  }

  .skill-text p {
    font-size: 15px;
  }

  .skill-icon {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    flex-direction: column;
    align-items: center;
  }

  .skill-card {
    width: 90%;
  }

  .skill-text h3 {
    font-size: 16px;
  }

  .skill-text p {
    font-size: 14px;
  }

  .skill-icon {
    width: 40px;
    height: 40px;
  }
}
.skill-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.skill-card.active {
  opacity: 1;
  transform: translateY(0);
}
/*images*/
/* GENERAL STYLES */
body {
  font-family: 'Arial', sans-serif;
}

.highlight-section {
  padding: 60px 8%;
  text-align: center;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #003366;
}

.logos-container {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}

/* LOGO CARD STYLES */
.logo-card {
  width: 180px;
  height: 180px;
  border: 3px solid transparent;
  border-radius: 20px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.logo-card:hover {
  transform: scale(1.1);
  border-color: #007bff;
}

.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .logos-container {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }
  
  .logo-card {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .logos-container {
    gap: 20px;
  }

  .logo-card {
    width: 120px;
    height: 120px;
  }
}




