/* Define the font faces */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff2")
      format("woff2"),
    url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Regular.woff")
      format("woff");
  font-weight: 400;
  font-style: normal;
}

/* Example for Bold (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Bold.woff")
    format("woff");
  font-weight: 700;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Medium.woff")
    format("woff");
  font-weight: 500;
  /* 700 */
  font-style: normal;
}

@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans ExBold.woff")
    format("woff");
  font-weight: 900;
  /* 700 */
  font-style: normal;
}

/* Example for Italic (if you have it) */
@font-face {
  font-family: "JUST Sans";
  src: url("../Assets/Fonts/just_sans/Web Fonts/JUST Sans Italic.woff")
    format("woff");
  font-weight: normal;
  /* 400 */
  font-style: italic;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Thin.ttf")
    format("truetype");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraLight.ttf")
    format("truetype");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Light.ttf")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Regular.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Medium.ttf")
    format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Bold.ttf")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-ExtraBold.ttf")
    format("truetype");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter Display";
  src: url("../Assets/Fonts/inter-display/InterDisplay-Black.ttf")
    format("truetype");
  font-weight: 900;
  font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    overflow-x: hidden;
}

:root {
  --color-white: #FFFFFF;
  --color-white-25: #FAFAFA;
  --color-white-50: #F2F2F2;
  --color-white-100: #E6E6E6;
  --color-white-200: #CCCCCC;

  --color-black: #000000;
  --color-black-50: #0D0D0D;
  --color-black-100: #1C1C1C;
  --color-black-200: #333333;
  --color-black-250: #BFBFBF;
  --color-black-400: #666666;
  --color-black-500: #808080;

  --color-yellow: #FFD332;
  --color-blue-500: #0080FF;
  --color-Orange-500: #FF6000;
  --color-red: #D92D3A;
  --color-green-700: #015845;
}

/* =====================================================
   HEADER STYLES
   ===================================================== */
.logo img {
    height: auto;
    width: auto;
    max-height: 32px; 
}

/* Header Styles */
.header-wrapper {
  width: 100%;
  z-index: 999;
  position: relative;
  
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

/* Navigation */
.nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 100px;
  background: transparent;
  z-index: 9999;
  position: relative;
  height: 68px;
  transition: all 0.3s ease;
  max-width: 1920px;
  margin: auto;
}

/* When scrolled → becomes fixed */
.header-wrapper.scrolled {
  position: fixed;
  background: var(--color-white);
  border-bottom: 1px solid #c1c4c8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Push hero content below header */
/* .hero-section {
  padding-top: 90px;   
} */

/* Add a scroll class for when the user scrolls
.header-wrapper.scrolled {
  border-bottom: 1px solid var(--Neutral-colors-Default-Borders, #c1c4c8);
  background: var(--Neutral-colors-White, #fff);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
} */

.header-wrapper.scrolled .nav-item {
  color: var(--color-black);
}

.header-wrapper.scrolled .cta-button {
  background: var(--color-green-700);
}

.header-wrapper.scrolled .cta-text {
  color: var(--color-white);
}

.header-wrapper.scrolled .menu-toggle span {
  background-color: #121212;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  cursor: pointer !important;
}

.logo img {
  height: auto;
  width: auto;
  max-height: 32px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.nav-item-wrapper {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropdown-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
}

.services-arrow, .products-arrow {
  width: 16px;
  height: 16px;
  margin-left: 5px;
  vertical-align: middle;
  transition: filter 0.3s ease;
  filter: brightness(0); 
}

.header-wrapper.scrolled .services-arrow, .header-wrapper.scrolled .products-arrow {
  filter: brightness(0);
}

.nav-links img {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.dropdown-arrow{
    width:16px;
    height:auto;
    margin-left:6px;
    cursor:pointer;
    background:transparent;
    border:none;
    display:block;
}

.dropdown{
    position: relative;
}

.services-menu h1 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-black-500);
    text-decoration: none;
}

.services-menu h2{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 2;
    color: var(--color-black-100);
    text-decoration: none;
}

/* Services Dropdown */
.services-dropdown{
  position:relative;
}

.services-menu a {
    text-decoration: none;
}

.services-menu{
  position:absolute;
  top:35px;
  left:0;
  width:382px;
  height: 134px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
  flex-direction:column;
  padding:20px 30px;
}

.services-menu.show{
  display:flex;
}

/* Products Dropdown */
.products-dropdown{
  position:relative;
}

.products-menu{
  position:absolute;
  top:35px;
  left:0;
  width:500px;
  height: 200px;
  padding: 20px 30px;
  background: var(--color-white);
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:none;
}

.products-menu.show{
  display:flex;
}

.menu-column {
    padding-right: 50px;
}

.menu-column a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.menu-column1 a{
    font-family: 'Inter', sans-serif;
    padding: 10px 20px;
    text-decoration: none;
    color: var(--color-black-100);
    font-size: 18px;
    line-height: 2.3;
}

.dropdown-menu a:hover{
    background:#f5f5f5;
}

.dropdown-menu.show{
    display:flex;
}

/* Menu Toggle Button */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  outline: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--color-black);
  margin: 5px 0;
  border-radius: 3px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
    background-color 0.3s ease;
}

/* Navigation Links */
.nav-item {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--color-black);
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: letf;
    text-decoration: none;
}

.nav-item:hover {
  /* color: var(--primary-color); */
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 169px;
    height: 44px;
    padding: 12px 30px;
    background: var(--color-green-700);
    color: var(--color-white);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
  /* background-color: var(--primary-color); */
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Mobile CTA button - hidden by default on desktop */
.mobile-cta {
  display: none;
}

.desktop-only {
  display: block;
}

.cta-text {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: var(--color-white);
}

/* Responsive Styles for Header */
@media screen and (max-width: 1440px) {
  .nav-header {
    padding: 10px 40px;
  }
}

@media screen and (max-width: 1200px) {
  .nav-header {
    padding: 12px 40px;
  }

  .nav-links {
    gap: 20px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .cta-button {
    width: 160px;
    padding: 10px 25px;
  }

  .cta-text {
    font-size: 15px;
  }

  .logo img {
    max-height: 30px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  }
}

@media screen and (max-width: 992px) {
  .nav-header {
    padding: 10px 2%;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .dropdown-arrow {
    width: 14px;
    height: 14px;
    margin-left: 4px;
  }

  .nav-links img {
    width: 14px;
    height: 14px;
  }

  .cta-button {
    width: 140px;
    padding: 8px 20px;
    height: 40px;
  }

  .cta-text {
    font-size: 14px;
  }

  .logo img {
    max-height: 28px;
  }

  .header-wrapper.scrolled {
    border-bottom-width: 1px;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
    /* 1. Make the dropdown menus full width and static */
    .services-menu, 
    .products-menu {
        position: static;     /* Remove the "floating" behavior */
        width: 100% !important; /* Take up full width of the container */
        height: auto;         /* Let the content define the height */
        padding: 10px 15px;   /* Reduce padding for smaller screens */
        box-shadow: none;     /* Optional: remove shadow for a cleaner look */
        border-radius: 0;
    }

    /* 2. Fix the link alignment inside the menu */
    .menu-column, 
    .menu-column1 {
        padding-right: 0;     /* Remove large right padding */
        display: flex;
        flex-direction: column;
    }

    .menu-column a, 
    .menu-column1 a {
        font-size: 16px;      /* Slightly smaller text for mobile */
        padding: 8px 10px;    /* Better spacing for touch targets */
        line-height: 1.5;     /* Tighten up the height */
        display: block;
        width: 100%;
    }

    /* 3. Handle the 'show' state to ensure it works with flex */
    .services-menu.show, 
    .products-menu.show {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 768px) {
  .nav-header {
    padding: 12px 15px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-white-25);
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 15px;
    align-items: flex-start;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, display 0.1s linear;
  }

  .header-wrapper.scrolled .nav-links {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid #e5e5e5;
  }

  .nav-links.active {
    display: flex;
    min-width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    row-gap: 1.25rem;
    opacity: 1;
    transform: translateY(0);
  }
  .services-arrow.scrolled {
    color: #000;
  }

  .nav-item-wrapper {
    display: flex;
    width: 100%;
    justify-content: center;
  }

  .dropdown-arrow {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 10px;
  }

  /* .mobile-cta .cta-text {
    color: #0;
  } */

  .cta-button {
    width: 100%;
  }

  /* Hamburger menu animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-black);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-black);
  }

  .logo img {
    max-height: 26px;
  }
}

@media screen and (max-width: 576px) {
  .nav-header {
    padding: 10px 12px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    margin: 4px 0;
  }

  .logo img {
    max-height: 24px;
  }

  .nav-links {
    padding: 15px;
  }

  .nav-item {
    font-size: 16px;
    padding: 8px 0;
    width: 100%;
    text-align: left;
    display: block;
  }

  .mobile-cta {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .mobile-cta .cta-text {
    font-size: 15px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  }

  .header-wrapper.scrolled .nav-links {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    font-size: 22px;
  }

  .nav-header {
    padding: 8px 10px;
  }

  .logo img {
    max-height: 26px;
  }

  .menu-toggle span {
    width: 20px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 12px;
    gap: 12px;
  }

  .nav-item {
    font-size: 15px;
    text-align: left;
  }

  .mobile-cta {
    padding: 8px 15px;
    height: 40px;
  }

  .mobile-cta .cta-text {
    font-size: 14px;
  }

  .header-wrapper.scrolled {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
    background: #fff;
  }
}

@media screen and (max-width: 375px) {
  .logo img {
    max-height: 24px;
  }

  .nav-header {
    padding: 8px;
  }

  .menu-toggle span {
    width: 18px;
    height: 1.5px;
  }

  .nav-item {
    font-size: 14px;
    text-align: left;
  }

  .mobile-cta {
    height: 38px;
  }

  .mobile-cta .cta-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .logo img {
    max-height: 18px;
  }

  .nav-header {
    padding: 6px;
  }

  .menu-toggle span {
    width: 16px;
    height: 1.5px;
    margin: 3px 0;
  }

  .nav-links {
    padding: 10px;
  }

  .nav-item {
    font-size: 13px;
    text-align: left;
  }

  .mobile-cta {
    height: 36px;
    padding: 6px 12px;
  }

  .mobile-cta .cta-text {
    font-size: 12px;
  }

  .hero-cta,
  .hero-secondary-cta {
    min-width: 100px;
    padding: 6px 10px;
  }

  .hero-cta .hero-cta-text,
  .hero-secondary-cta .hero-cta-text {
    font-size: 12px;
  }
}

/* 
/* ========================================
   DARK THEME
   ========================================
[data-theme="dark"] body {
    background: #0d0d0d;
}

[data-theme="dark"] .header-wrapper {
    background: transparent;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .header-wrapper:not(.scrolled) .logo img {
    content: url("../Assets/images/KM_SOFT_dark.svg");
}

[data-theme="dark"] .nav-header {
    background: transparent;
}

    .nav-links img {
        filter: invert(0);
    }
[data-theme="dark"] .nav-item {
    color: #FFFFFF;
}

[data-theme="dark"] .nav-item:hover {
    color: #ffffff;
}

[data-theme="dark"] .dropdown-arrow {
    filter: invert(1);
}

[data-theme="dark"] .nav-links img {
    filter: invert(1);
}

[data-theme="dark"] .menu-toggle span {
    background: #ffffff;
}

[data-theme="dark"] .cta-button {
    background: #ffffff;
    color: #000;
    border: none;
}

[data-theme="dark"] .cta-button:hover {
    background: #e0e0e0;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .cta-text {
    color: #000;
}

[data-theme="dark"] .nav-item-wrapper {
    border-bottom-color: #333;
} */










/* ========================================
   CASE STUDY HERO SECTION
   ======================================== */
.case-hero {
    width: 1910px;
    height: 935px;
    border-bottom-right-radius: 100px;
    border-bottom-left-radius: 100px;
    background: url(../Assets/trainer/trainer1.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.case-text {
    width: 570px;
    position: relative;
    top: 710px;
    left: 63px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #FFFF;
    font-style: Regular;
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width:2560px)
================================ */

@media screen and (max-width:2560px){

  /* SECTION */
  .case-hero {
    margin: auto;
  }
}

/* ===============================
   TABLET & SMALL LAPTOP (1440px)
================================ */

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {
.case-hero {
    width: 100%;
    height: 780px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
    background-size: cover;
    background-position: center;
  }

  .case-text {
    width: 500px;
    top: 600px;
    left: 50px;
    font-size: 16px;
    line-height: 150%;
  }

}

/* ===============================
   TABLET & SMALL LAPTOP (1200px)
================================ */
@media screen and (min-width: 1200px) and (max-width: 1439px){

.case-hero {
    width: 100%;
    height: 650px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    background-size: cover;
    background-position: center;
    margin: 0;
  }

  .case-text {
    width: 420px;
    top: 450px;
    left: 40px;
    font-size: 16px;
    line-height: 150%;
  }

}

/* ===============================
   TABLET & SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

.case-hero {
    width: 100%;
    height: 650px;
    border-bottom-right-radius: 60px;
    border-bottom-left-radius: 60px;
    background-size: cover;
    background-position: center;
  }

  .case-text {
    width: 420px;
    top: 450px;
    left: 40px;
    font-size: 16px;
    line-height: 150%;
  }

}

/* ===============================
   EXTRA SMALL DEVICES (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){
  .case-hero {
        width: 100%;
        height: 594px;             
        border-bottom-right-radius: 80px;
        border-bottom-left-radius: 80px;
        background-size: cover;
        background-position: center;
    }

    .case-text {
        width: 341px;
        position: absolute;
        top: 487px;             
        left: 5%;
        font-size: 14px;
        line-height: 150%;
        text-align: left;
    }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
  .case-hero {
        width: 100%;
        height: 594px;             
        border-bottom-right-radius: 80px;
        border-bottom-left-radius: 80px;
        background-size: cover;
        background-position: center;
    }

    .case-text {
        width: 341px;
        position: absolute;
        top: 487px;             
        left: 5%;
        font-size: 14px;
        line-height: 150%;
        text-align: left;
    }
}

/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {
  .case-hero {
        width: 100%;
        height: 594px;             
        border-bottom-right-radius: 80px;
        border-bottom-left-radius: 80px;
        background-size: cover;
        background-position: center;
    }

    .case-text {
        width: 341px;
        position: absolute;
        top: 487px;             
        left: 5%;
        font-size: 14px;
        line-height: 150%;
        text-align: left;
    }
}


/* ===============================
   EXTRA SMALL DEVICES (425px)
================================ */
@media screen and (max-width: 479px){
  .case-hero {
        width: 100%;
        height: 420px;             
        border-bottom-right-radius: 40px;
        border-bottom-left-radius: 40px;
        background-size: cover;
        background-position: center;
    }

    .case-text {
        width: 300px;
        position: absolute;
        top: 338px;             
        left: 5%;
        font-size: 12px;
        line-height: 150%;
        text-align: left;
    }
}



/* ===============================
   EXTRA SMALL DEVICES (375px)
================================ */

@media screen and (max-width: 375px) {
  .case-hero {
    width: 100%;
    height: 500px;                 /* smaller height for mobile */
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 40px;
    background-size: cover;
    background-position: center;
  }

  .case-text {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 440px;                    /* move text upward */
    font-size: 12px;
    line-height: 150%;
    text-align: left;
  }
}


/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {
  .case-hero {
    width: 100%;
    height: 560px;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
    background-size: cover;
    background-position: center;
  }

  .case-text {
    width: 80%;
    position: absolute;
    top: 472px;
    left: 45%;
    font-size: 12px;
    line-height: 150%;
    text-align: left;
  }

}









/* ========================================
   ABOUT trainer 
   ======================================== */
.personalized {
    margin: 0 auto;
    width: 1520px;
    height: 1024px;
    padding-top: 160px;
}

.text-para {
    width: 1248px;
    height: 280px;
    font-size: 54px;
    font-weight: 400;
    line-height: 1;
    font-style: Regular;
}

.text-para span{
    font-family: JUST Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 54px;
  line-height: 100%;
letter-spacing: 0%;
    color: #3C61E0;
}

.text-para p{
  font-family: JUST Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 54px;
  line-height: 100%;
  letter-spacing: 0%;
    color: #262626;
}

.about-trainer {
    width: 1520px;
    height: 664px;
    gap: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-left {
    width: 692px;
    height: 664px;
}

.about-left h1{
    font-family: Inter Display;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
    padding-top: 20px;
    color: #262626;
    padding-bottom: 20px;
}

.about-left p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
    padding-bottom: 80px;
}

.detail-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-bottom: 29px;
    padding-top: 15px;
    gap: 29px;
    border-bottom: 0.5px solid #D9D9D9;
}

.detail-row:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.detail-row h5 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    color: #404040;
}

.detail-row span {
    font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: right;
    color: #171717;
}

.about-img img{
    object-fit: cover;
    width: 100%;
    max-width: 748px;
    height: 100%;
    min-height: 648px;
}

/* ===============================
   DESKTOP (1440px and below)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

/* MAIN CONTAINER */
.personalized{
  width: 1200px;
  height: auto;
  padding-top: 120px;
}

/* HEADING TEXT */
.text-para{
  width: 100%;
  font-size: 44px;
  height: auto;
  line-height: 1.1;
}

.text-para span {
  font-size: 44px;
}

.text-para p{
  font-size: 44px;
  padding-bottom: 100px;
}

/* ABOUT SECTION */
.about-trainer{
  width: 1200px;
  height: auto;
  gap: 60px;
}

/* LEFT CONTENT */
.about-left{
  width: 560px;
  height: auto;
}

.about-left h1{
  font-size: 26px;
}

.about-left p{
  font-size: 18px;
  padding-bottom: 40px;
}

/* DETAILS ROW */
.detail-row h5,
.detail-row span{
  font-size: 18px;
}

.detail-row {
  padding: 20px 0 20px 0;
}

/* IMAGE */
.about-img img{
  width: 100%;
  max-width: 608px;
  height: 100%;
  min-height: 614px;
}

}


/* ===============================
   MEDIUM DEVICES (1200px & BELOW)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

/* MAIN CONTAINER */
.personalized{
  width: 1200px;
  height: auto;
  padding-top: 120px;
}

/* HEADING TEXT */
.text-para{
  width: 100%;
  font-size: 44px;
  height: auto;
  line-height: 1.1;
}

.text-para span {
  font-size: 44px;
}

.text-para p{
  width: 100%;
  font-size: 44px;
  padding-bottom: 100px;
}

/* ABOUT SECTION */
.about-trainer{
  width: 1200px;
  height: auto;
  gap: 60px;
}

/* LEFT CONTENT */
.about-left{
  width: 560px;
  height: auto;
}

.about-left h1{
  font-size: 26px;
}

.about-left p{
  font-size: 18px;
  padding-bottom: 40px;
}

/* DETAILS ROW */
.detail-row h5,
.detail-row span{
  font-size: 18px;
}

.detail-row {
  padding: 20px 0 20px 0;
}

/* IMAGE */
.about-img img{
  width: 100%;
  max-width: 608px;
  height: 100%;
  min-height: 614px;
}

}



/* ===============================
   TABLET / SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

/* MAIN CONTAINER */
.personalized{
  width: 100%;
  height: auto;
  padding-top: 100px;
  padding-left: 40px;
  padding-right: 40px;
}

.text-para {
  width: 100%;
  height: auto;
}

.text-para span {
  font-size: 30px;
}

/* TITLE TEXT */
.text-para p{
  font-size: 30px;
  line-height: 1.2;
  padding-bottom: 80px;
}

/* ABOUT SECTION */
.about-trainer{
  width: 103%;
  height: auto;
  gap: 40px;
}

/* LEFT COLUMN */
.about-left{
  width: 55%;
  height: auto;
}

.about-left h1{
  font-size: 30px;
}

.about-left p{
  font-size: 16px;
  padding-bottom: 40px;
}

/* DETAILS */
.detail-row{
  padding-bottom: 18px;
  padding-top: 12px;
}

.detail-row h5,
.detail-row span{
  font-size: 18px;
}

/* IMAGE */
.about-img img{
  width: 95%;
  min-height: 520px;
}

}

/* ===============================
   TABLETS & SMALL DEVICES (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* MAIN WRAPPER */
.personalized{
  width: 100%;
  height: auto;
  padding: 80px 20px 60px;
}

/* BIG PARAGRAPH */
.text-para span {
  font-size: 34px;
}

.text-para {
  width: 100%;
  height: 100%;
}

/* TITLE TEXT */
.text-para p{
  width: 100%;
  font-size: 34px;
  line-height: 1.2;
  padding-bottom: 20px;
}

/* ABOUT TRAINER WRAPPER */
.about-trainer{
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left{
  width: 100%;
  height: auto;
}

/* HEADING */
.about-left h1{
  font-size: 22px;
  text-align: left;
}

/* PARAGRAPH */
.about-left p{
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 40px;
  text-align: left;
}

/* DETAILS ROW */
.detail-row{
  gap: 8px;
  padding-bottom: 20px;
}

.detail-row h5,
.detail-row span{
  font-size: 16px;
}

/* IMAGE CONTAINER */
.about-img img{
  max-width: 688px;
  min-height: 655px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {
 
  /* MAIN WRAPPER */
.personalized{
  width: 100%;
  height: auto;
  padding: 80px 20px 60px;
}

/* BIG PARAGRAPH */
.text-para span {
  font-size: 34px;
}

.text-para {
  width: 100%;
  height: 100%;
}

/* TITLE TEXT */
.text-para p{
  width: 100%;
  font-size: 34px;
  line-height: 1.2;
  padding-bottom: 20px;
}

/* ABOUT TRAINER WRAPPER */
.about-trainer{
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left{
  width: 100%;
  height: auto;
}

/* HEADING */
.about-left h1{
  font-size: 22px;
  text-align: left;
}

/* PARAGRAPH */
.about-left p{
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 40px;
  text-align: left;
}

/* DETAILS ROW */
.detail-row{
  gap: 8px;
  padding-bottom: 20px;
}

.detail-row h5,
.detail-row span{
  font-size: 16px;
}

/* IMAGE CONTAINER */
.about-img img{
  width: 100%;
  height: 100%;
}

}


/* ===============================
   MOBILE DEVICES (425px & BELOW)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

/* MAIN SECTION */
.personalized{
  width: 100%;
  height: auto;
  padding: 60px 16px;
}

/* BIG TEXT */
.text-para p{
  font-size: 28px;
  line-height: 1.2;
}

/* ABOUT TRAINER WRAPPER */
.about-trainer{
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left{
  width: 100%;
  height: auto;
}

.about-left h1{
  font-size: 24px;
  padding-top: 0;
}

.about-left p{
  font-size: 16px;
  padding-bottom: 40px;
}

/* DETAILS ROW */
.detail-row{
  flex-direction: column;
  gap: 8px;
  padding-bottom: 18px;
}

.detail-row h5,
.detail-row span{
  font-size: 16px;
}

/* IMAGE */
.about-img img{
  width: 100%;
  height: auto;
}

}

/* ===============================
   MOBILE DEVICES (375px & BELOW)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

/* SECTION */
.personalized{
  width: 100%;
  height: auto;
  padding: 80px 16px 60px;
}

/* MAIN PARAGRAPH */
.text-para p{
  width: 100%;
  height: auto;
  font-size: 28px;
  line-height: 1.2;
}

/* ABOUT TRAINER WRAPPER */
.about-trainer{
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left{
  width: 100%;
  height: auto;
}

.about-left h1{
  font-size: 22px;
  padding-top: 10px;
  padding-bottom: 12px;
}

.about-left p{
  font-size: 14px;
  line-height: 1.6;
  padding-bottom: 40px;
}

/* DETAILS ROW */
.detail-row{
  padding-top: 10px;
  padding-bottom: 12px;
  gap: 12px;
}

.detail-row h5,
.detail-row span{
  font-size: 14px;
}

/* IMAGE */
.about-img img{
  width: 100%;
  height: 260px;
}

}


/* ===============================
   SMALL MOBILE DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

/* SECTION WRAPPER */
.personalized{
  width: 100%;
  height: auto;
  padding-top: 60px;
  padding-left: 16px;
  padding-right: 16px;
}

/* BIG TEXT */
.text-para p{
  font-size: 22px;
  line-height: 1.3;
}

/* ABOUT TRAINER CONTAINER */
.about-trainer{
  width: 100%;
  height: auto;
  flex-direction: column;
  gap: 40px;
}

/* LEFT CONTENT */
.about-left{
  width: 100%;
  height: auto;
}

.about-left h1{
  font-size: 22px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.about-left p{
  font-size: 14px;
  line-height: 1.5;
  padding-bottom: 40px;
}

/* DETAILS ROW */
.detail-row{
  flex-direction: column;
  gap: 6px;
  padding-bottom: 15px;
  padding-top: 10px;
}

.detail-row h5,
.detail-row span{
  font-size: 14px;
}

/* IMAGE */
.about-img img{
  width: 100%;
  height: auto;
}

}





/* ========================================
   SOLUTION SECTION
   ======================================== */
.solv {
    width: 100%;
    padding: 160px 0;
}

.solved {
    width: 1520px;
    margin: auto;
}

.solved1 h1 {
    width: 357px;
    height: 94px;
    font-family: Inter Display;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
    color: #262626;
}

/* Rows */

.solved-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 180px;
    margin-top: 100px;
}

/* Images */

.sol-img img {
    width: 516px;
    height: 516px;
    object-fit: cover;
}

/* Text */

.sol-text {
    width: 658px;
}

.sol-text img {
    width: 80px;
    margin-bottom: 12px;
}

.sol-text h2 {
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.sol-text p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
}



/* ===============================
   DESKTOP (1440px and below)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

/* SECTION SPACING */
.solv{
  padding: 120px 0;
}

/* MAIN WRAPPER */
.solved{
  width: 1200px;
}

/* TITLE */
.solved1 h1{
  width: auto;
  font-size: 32px;
}

/* ROW */
.solved-row{
  gap: 120px;
  margin-top: 80px;
}

/* IMAGE */
.sol-img img{
  width: 440px;
  height: 440px;
}

/* TEXT BLOCK */
.sol-text{
  width: 560px;
}

.sol-text img{
  width: 64px;
}

.sol-text h2{
  font-size: 34px;
}

.sol-text p{
  font-size: 16px;
  line-height: 1.5;
}

}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

  /* SECTION SPACING */
.solv{
  padding: 120px 0;
}

/* MAIN WRAPPER */
.solved{
  width: 1200px;
}

/* TITLE */
.solved1 h1{
  width: auto;
  font-size: 32px;
}

/* ROW */
.solved-row{
  gap: 120px;
  margin-top: 80px;
}

/* IMAGE */
.sol-img img{
  width: 440px;
  height: 440px;
}

/* TEXT BLOCK */
.sol-text{
  width: 100%;
}

.sol-text img{
  width: 64px;
}

.sol-text h2{
  font-size: 34px;
}

.sol-text p{
  font-size: 16px;
  line-height: 1.5;
}

}

/* ===============================
   TABLET LANDSCAPE (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

/* SECTION PADDING */
.solv{
  padding: 120px 0;
}

/* CONTAINER */
.solved{
  width: 900px;
}

/* TITLE */
.solved1 h1{
  width: auto;
  font-size: 32px;
}

/* ROW */
.solved-row{
  gap: 80px;
  margin-top: 80px;
}

/* IMAGE */
.sol-img img{
  width: 420px;
  height: 420px;
}

/* TEXT BLOCK */
.sol-text{
  width:100%;
}

.sol-text img{
  width: 60px;
}

.sol-text h2{
  font-size: 32px;
}

.sol-text p{
  font-size: 16px;
}

}

/* ===============================
   TABLET (768px and below)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* SECTION PADDING */
.solv{
  padding: 100px 0;
}

/* CONTAINER */
.solved{
  width: 100%;
  padding: 0 24px;
}

/* TITLE */
.solved1 h1{
  width: 100%;
  height: auto;
  font-size: 30px;
  text-align: left;
}

/* ROW STACK */
.solved-row{
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
  text-align: left;
}

/* IMAGE */
.sol-img img{
  width: 360px;
  height: 360px;
}

/* TEXT BOX */
.sol-text{
  width: 100%;
}

/* ICON */
.sol-text img{
  width: 60px;
  margin: 0 auto 12px;
}

/* HEADING */
.sol-text h2{
  font-size: 32px;
}

/* PARAGRAPH */
.sol-text p{
  font-size: 16px;
  line-height: 1.5;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px)  {

 /* SECTION PADDING */
.solv{
  padding: 100px 0;
}

/* CONTAINER */
.solved{
  width: 100%;
  padding: 0 24px;
}

/* TITLE */
.solved1 h1{
  width: 100%;
  height: auto;
  font-size: 30px;
  text-align: left;
}

/* ROW STACK */
.solved-row{
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
  text-align: left;
}

/* IMAGE */
.sol-img img{
  width: 360px;
  height: 360px;
}

/* TEXT BOX */
.sol-text{
  width: 100%;
}

/* ICON */
.sol-text img{
  width: 60px;
  margin: 0 auto 12px;
}

/* HEADING */
.sol-text h2{
  font-size: 32px;
}

/* PARAGRAPH */
.sol-text p{
  font-size: 16px;
  line-height: 1.5;
} 

}

/* ===============================
   MOBILE DEVICES (425px and below)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* SECTION */
.solv{
  padding: 80px 0;
}

/* CONTAINER */
.solved{
  width: 100%;
  padding: 0 16px;
}

/* TITLE */
.solved1 h1{
  width: 100%;
  height: auto;
  font-size: 26px;
  text-align: left;
}

/* ROW */
.solved-row{
  flex-direction: left;
  gap: 40px;
  margin-top: 60px;
}

/* IMAGE */
.sol-img img{
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* TEXT BLOCK */
.sol-text{
  width: 100%;
  text-align: left;
}

/* ICON */
.sol-text img{
  width: 60px;
  margin-bottom: 10px;
}

/* HEADING */
.sol-text h2{
  font-size: 24px;
}

/* PARAGRAPH */
.sol-text p{
  font-size: 15px;
  line-height: 1.5;
}

}

/* ===============================
   MOBILE SMALL DEVICES (375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

/* SECTION PADDING */
.solv{
  padding: 80px 0;
}

/* CONTAINER */
.solved{
  width: 100%;
  padding: 0 16px;
}

/* TITLE */
.solved1 h1{
  width: 100%;
  height: auto;
  font-size: 24px;
  text-align: left;
}

/* ROW STACK */
.solved-row{
  flex-direction: left
  ;
  gap: 40px;
  margin-top: 50px;
}

/* IMAGE */
.sol-img img{
  width: 100%;
  height: 280px;
  border-radius: 12px;
}

/* TEXT WRAPPER */
.sol-text{
  width: 100%;
  text-align: left;
}

/* ICON */
.sol-text img{
  width: 50px;
}

/* HEADING */
.sol-text h2{
  font-size: 24px;
}

/* PARAGRAPH */
.sol-text p{
  font-size: 15px;
  line-height: 1.5;
}

}

/* ===============================
   SMALL MOBILE DEVICES (320px)
================================ */

@media screen and (max-width: 374px){

/* SECTION PADDING */
.solv{
  padding: 60px 0;
}

/* CONTAINER */
.solved{
  width: 100%;
  padding: 0 14px;
}

/* TITLE */
.solved1 h1{
  width: 100%;
  height: auto;
  font-size: 22px;
  text-align: left;
}

/* ROW STACKING */
.solved-row{
  flex-direction: left;
  gap: 32px;
  margin-top: 40px;
}

/* IMAGE */
.sol-img img{
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

/* TEXT CONTAINER */
.sol-text{
  width: 100%;
  text-align: left;
}

/* ICON */
.sol-text img{
  width: 50px;
  margin-bottom: 8px;
}

/* HEADING */
.sol-text h2{
  font-size: 22px;
}

/* PARAGRAPH */
.sol-text p{
  font-size: 14px;
  line-height: 1.4;
}

}


/* ========================================
   IDEAS SECTION
   ======================================== */
.ideas-section {
    width: 100%;
}

.ideas {
    width: 1520px;
    margin: auto;
    display: flex;
    gap: 40px;
}

/* Image */

.ideas-img img {
    width: 750px;
    height: 730px;
    object-fit: cover;
    border-radius: 16px;
}

/* Text Card */

.ideas-text {
    width: 750px;
    height: 730px;
    background: #3B4054;
    border-radius: 16px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ideas-text span {
    font-family: Inter Display;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 48px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #fff;
}

.ideas-text p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #cccccc;
    margin-top: 40px;
}

/* Link */

.ideas-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    margin-top: auto;
}

.ideas-link h5 {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.ideas-link img {
    width: 14px;
}

.ideas-link:hover {
    opacity: 0.7;
    transform: scale(1.02);
    transition: 0.3s;
}

/* ===============================
   DESKTOP (1440px and below)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

/* MAIN WRAPPER */
.ideas{
  width: 1200px;
  gap: 32px;
}

/* IMAGE */
.ideas-img img{
  width: 580px;
  height: 600px;
}

/* TEXT CARD */
.ideas-text{
  width: 580px;
  height: 600px;
  padding: 40px;
}

/* HEADING */
.ideas-text span{
  font-size: 40px;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
}

/* LINK */
.ideas-link h5{
  font-size: 16px;
}

.ideas-link img{
  width: 12px;
}

}

/* ===============================
   SMALL DESKTOP (1200px and below)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

/* WRAPPER */
.ideas{
  width: 1000px;
  gap: 30px;
}

/* IMAGE */
.ideas-img img{
  width: 480px;
  height: 520px;
}

/* TEXT CARD */
.ideas-text{
  width: 480px;
  height: 520px;
  padding: 40px;
}

/* HEADING */
.ideas-text span{
  font-size: 36px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 16px;
  margin-top: 24px;
}

/* LINK */
.ideas-link h5{
  font-size: 16px;
}

.ideas-link img{
  width: 12px;
}

}

/* ===============================
   TABLET / SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

/* MAIN CONTAINER */
.ideas{
  width: 900px;
  gap: 24px;
}

/* IMAGE */
.ideas-img img{
  width: 430px;
  height: 520px;
}

/* TEXT CARD */
.ideas-text{
  width: 430px;
  height: 520px;
  padding: 40px;
}

/* HEADING */
.ideas-text span{
  font-size: 36px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 16px;
  margin-top: 24px;
}

/* LINK */
.ideas-link h5{
  font-size: 16px;
}

.ideas-link img{
  width: 12px;
}

}

/* ===============================
   TABLET (768px and below)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* MAIN WRAPPER */
.ideas{
  width: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

/* IMAGE */
.ideas-img img{
  width: 100%;
  height: 420px;
  border-radius: 14px;
}

/* TEXT CARD */
.ideas-text{
  width: 100%;
  height: auto;
  padding: 40px;
  border-radius: 14px;
}

/* TITLE */
.ideas-text span{
  font-size: 32px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 30px;
}

/* LINK */
.ideas-link h5{
  font-size: 16px;
}

.ideas-link img{
  width: 12px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px)  {

  /* MAIN WRAPPER */
.ideas{
  width: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 0 20px;
}

/* IMAGE */
.ideas-img img{
  width: 100%;
  height: 420px;
  border-radius: 14px;
}

/* TEXT CARD */
.ideas-text{
  width: 100%;
  height: auto;
  padding: 40px;
  border-radius: 14px;
}

/* TITLE */
.ideas-text span{
  font-size: 32px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
  margin-bottom: 30px;
}

/* LINK */
.ideas-link h5{
  font-size: 16px;
}

.ideas-link img{
  width: 12px;
}

}  


/* ===============================
   MOBILE (425px and below)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* CONTAINER */
.ideas{
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}

/* IMAGE */
.ideas-img img{
  width: 100%;
  height: 260px;
  border-radius: 12px;
}

/* TEXT CARD */
.ideas-text{
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 12px;
}

/* HEADING */
.ideas-text span{
  font-size: 26px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
}

/* LINK ROW */
.ideas-link{
  margin-top: 24px;
}

.ideas-link h5{
  font-size: 14px;
}

.ideas-link img{
  width: 12px;
}

}

/* ===============================
   MOBILE (375px and below)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

/* CONTAINER */
.ideas{
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 0 16px;
}

/* IMAGE */
.ideas-img img{
  width: 100%;
  height: 280px;
  border-radius: 12px;
}

/* TEXT CARD */
.ideas-text{
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 12px;
}

/* TITLE */
.ideas-text span{
  font-size: 26px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 14px;
  line-height: 1.5;
  margin-top: 16px;
}

/* LINK */
.ideas-link h5{
  font-size: 14px;
}

.ideas-link img{
  width: 12px;
}

}

/* ===============================
   SMALL MOBILE (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

/* CONTAINER */
.ideas{
  width: 100%;
  flex-direction: column;
  gap: 20px;
  padding: 0 12px;
}

/* IMAGE */
.ideas-img img{
  width: 100%;
  height: 220px;
  border-radius: 12px;
}

/* TEXT CARD */
.ideas-text{
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 12px;
}

/* TITLE */
.ideas-text span{
  font-size: 22px;
  line-height: 1.3;
}

/* PARAGRAPH */
.ideas-text p{
  font-size: 14px;
  line-height: 1.4;
  margin-top: 16px;
}

/* LINK */
.ideas-link h5{
  font-size: 14px;
}

.ideas-link img{
  width: 12px;
}

}




/* ========================================
   SCOPE SECTION
   ======================================== */
.scope1{
  max-width:1520px;
  margin:auto;
  padding:160px 20px;
}

.scope{
  display:flex;
  gap:120px;
}

.scope-left{
  width:45%;
}

.scope-left h1{
  font-family: Inter Display;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #262626;
}

.scope-left p{
  margin-top:30px;
  color:#404040;
  font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
}

.scope-right{
  width:55%;
}

.right-number:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.right-number h5{
  font-family: Inter;
  font-weight: 500;
  font-style: Italic;
  font-size: 58px;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  text-transform:uppercase;
}

.right-number span{
  font-family: JUST Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  color:#404040;
}

.right-number p{
  margin-top:16px;
  padding-bottom:25px;
  border-bottom:1px solid #D9D9D9;
  font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  color:#404040;
}

/* ===============================
   DESKTOP (1440px and below)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

/* SECTION WRAPPER */
.scope1{
  max-width:1200px;
  padding:120px 20px;
}

/* FLEX CONTAINER */
.scope{
  gap:80px;
}

/* LEFT SIDE */
.scope-left h1{
  font-size:32px;
}

.scope-left p{
  font-size:16px;
}

/* RIGHT SIDE */
.right-number h5{
  font-size:48px;
  margin-top:40px;
}

.right-number span{
  font-size:16px;
}

.right-number p{
  font-size:16px;
  padding-bottom:20px;
}

}


/* ===============================
   DESKTOP (1200px and below)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

/* SECTION PADDING */
.scope1{
  padding:120px 70px;
}

/* LAYOUT GAP */
.scope{
  gap:80px;
}

/* LEFT SIDE */
.scope-left h1{
  font-size:32px;
}

.scope-left p{
  font-size:16px;
}

/* RIGHT SIDE NUMBERS */
.right-number h5{
  font-size:48px;
}

.right-number span{
  font-size:16px;
}

.right-number p{
  font-size:16px;
}

}

/* ===============================
   TABLET (1024px and below)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

/* SECTION */
.scope1{
  padding:120px 50px;
}

/* LAYOUT */
.scope{
  gap:60px;
}

/* LEFT */
.scope-left{
  width:50%;
}

.scope-left h1{
  font-size:32px;
}

.scope-left p{
  font-size:16px;
}

/* RIGHT */
.scope-right{
  width:50%;
}

.right-number h5{
  font-size:48px;
}

.right-number span{
  font-size:16px;
}

.right-number p{
  font-size:16px;
}

}

/* ===============================
   TABLET & BELOW (768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* SECTION */
.scope1{
  padding: 100px 30px;
}

/* STACK LAYOUT */
.scope{
  flex-direction: column;
  gap: 60px;
}

/* LEFT SIDE */
.scope-left,
.scope-right{
  width: 100%;
}

/* TEXT SIZES */
.scope-left h1{
  font-size: 28px;
}

.scope-left p{
  font-size: 16px;
  margin-top: 20px;
}

/* RIGHT CONTENT */
.right-number h5{
  font-size: 40px;
  margin-top: 30px;
}

.right-number span{
  font-size: 16px;
}

.right-number p{
  font-size: 16px;
  padding-bottom: 20px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  /* SECTION */
.scope1{
  padding: 100px 30px;
}

/* STACK LAYOUT */
.scope{
  flex-direction: column;
  gap: 60px;
}

/* LEFT SIDE */
.scope-left,
.scope-right{
  width: 100%;
}

/* TEXT SIZES */
.scope-left h1{
  font-size: 28px;
}

.scope-left p{
  font-size: 16px;
  margin-top: 20px;
}

/* RIGHT CONTENT */
.right-number h5{
  font-size: 40px;
  margin-top: 30px;
}

.right-number span{
  font-size: 16px;
}

.right-number p{
  font-size: 16px;
  padding-bottom: 20px;
}

}


/* ===============================
   MOBILE (425px and below)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* SECTION */
.scope1{
  padding: 80px 20px;
}

/* STACK LAYOUT */
.scope{
  flex-direction: column;
  gap: 40px;
}

/* LEFT SIDE */
.scope-left,
.scope-right{
  width: 100%;
}

/* TEXT */
.scope-left h1{
  font-size: 26px;
}

.scope-left p{
  font-size: 15px;
  margin-top: 16px;
}

/* RIGHT CONTENT */
.right-number h5{
  font-size: 36px;
  margin-top: 24px;
}

.right-number span{
  font-size: 14px;
}

.right-number p{
  font-size: 15px;
  margin-top: 10px;
  padding-bottom: 16px;
}

}


/* ===============================
   MOBILE (375px and below)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

/* SECTION */
.scope1{
  padding: 60px 20px;
}

/* LAYOUT */
.scope{
  flex-direction: column;
  gap: 40px;
}

/* LEFT SIDE */
.scope-left{
  width: 100%;
}

.scope-left h1{
  font-size: 26px;
}

.scope-left p{
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.5;
}

/* RIGHT SIDE */
.scope-right{
  width: 100%;
}

/* NUMBERS */
.right-number h5{
  font-size: 36px;
  margin-top: 32px;
}

.right-number span{
  font-size: 14px;
}

.right-number p{
  font-size: 15px;
  margin-top: 10px;
  padding-bottom: 16px;
}

}

/* ===============================
   SMALL MOBILE (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

/* SECTION */
.scope1{
  padding: 60px 12px;
}

/* STACK LAYOUT */
.scope{
  flex-direction: column;
  gap: 40px;
}

/* LEFT */
.scope-left,
.scope-right{
  width: 100%;
}

/* TEXT */
.scope-left h1{
  font-size: 22px;
}

.scope-left p{
  font-size: 14px;
  margin-top: 16px;
}

/* RIGHT NUMBERS */
.right-number h5{
  font-size: 34px;
  margin-top: 24px;
}

.right-number span{
  font-size: 14px;
}

.right-number p{
  font-size: 14px;
  margin-top: 10px;
  padding-bottom: 16px;
}

}







/* ========================================
   VISUAL SECTION
   ======================================== */
.visual1{
  max-width:1520px;
  margin:auto;
  padding:20px;
}

.visual-header{
  text-align:center;
  margin-bottom:100px;
}

.visual-header h1{
  font-family: Inter Display;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #262626;
}

.visual-header p{
  max-width:650px;
  margin:10px auto;
  padding-bottom: 50px;
 font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0%;
  text-align: center;
  color:#404040;
}

/* COMPARE BLOCK */

.compare-section{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:130px;
  margin-bottom:160px;
}

/* PHONE */

.phone-box{
  position:relative;
}

.phone{
  width:288px;
  height:593px;
  border-radius:40px;
  overflow:hidden;
  box-shadow:0 20px 40px rgba(0,0,0,0.15);
}

.phone img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* BADGES */

.badge-gray,
.badge-blue{
  position:absolute;
  top:-60px;
  left:50%;
  transform:translateX(-50%);
  padding:10px 70px;
  border-radius:8px;
  font-size:20px;
}

.badge-gray{
  border:1px solid #999;
  color:#777;
  background:#fafafa;
  font-family: Inter Display;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
}

.badge-blue{
  border:1px solid #3C61E0;
  color:#3C61E0;
  background:#fafafa;
  font-family: Inter Display;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0%;
}

/* NOTES */

.note{
  position:absolute;
  width:210px;
  padding:10px 14px;
  font-family: Inter Display;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 160%;
  border-radius:12px;
  background:#fafafa;
  text-align: center;
  border:1px solid #bfbfbf;
}

.left{
  left:-140px;
  top:180px;
}

.right{
  right:-140px;
  top:410px;
}

.blue-note{
  background:#eef3ff;
  border:1px solid #3C61E0;
  color:#355cff;
}

/* VECTOR */
.vector img{
  width: 146px;
}



/* ===============================
   DESKTOP (1440px and below)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

/* CONTAINER */
.visual1{
  max-width:100%;
}

/* HEADER */
.visual-header{
  margin-bottom:80px;
}

.visual-header h1{
  font-size:32px;
}

.visual-header p{
  font-size:16px;
  padding-bottom:40px;
}

/* COMPARE SECTION */
.compare-section{
  gap:100px;
  margin-bottom:120px;
}

/* PHONE */
.phone{
  width:250px;
  height:520px;
  border-radius:36px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  font-size:18px;
  padding:8px 60px;
  top:-50px;
}

/* NOTES */
.note{
  width:190px;
  font-size:15px;
}

/* NOTE POSITIONS */
.left{
  left:-120px;
  top:160px;
}

.right{
  right:-120px;
  top:380px;
}

/* VECTOR */
.vector img{
  width:130px;
}

}

/* ===============================
   TABLET / SMALL LAPTOP (1024px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

/* CONTAINER */
.visual1{
  max-width:900px;
}

/* HEADER */
.visual-header{
  margin-bottom:70px;
}

.visual-header h1{
  font-size:30px;
}

.visual-header p{
  font-size:16px;
  padding-bottom:40px;
}

/* COMPARE SECTION */
.compare-section{
  gap:80px;
  margin-bottom:120px;
}

/* PHONE */
.phone{
  width:240px;
  height:500px;
  border-radius:32px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  font-size:16px;
  padding:8px 50px;
  top:-50px;
}

/* NOTES */
.note{
  width:180px;
  font-size:14px;
}

/* NOTE POSITIONS */
.left{
  left:-120px;
  top:160px;
}

.right{
  right:-120px;
  top:360px;
}

/* VECTOR */
/* VECTOR */
.vector img{
  width: 100%;
  max-width: 90px;
}

}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
 
  /* CONTAINER */
.visual1{
  max-width:900px;
}

/* HEADER */
.visual-header{
  margin-bottom:70px;
}

.visual-header h1{
  font-size:30px;
}

.visual-header p{
  font-size:16px;
  padding-bottom:40px;
}

/* COMPARE SECTION */
.compare-section{
  gap:80px;
  margin-bottom:120px;
}

/* PHONE */
.phone{
  width:240px;
  height:500px;
  border-radius:32px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  font-size:16px;
  padding:8px 50px;
  top:-50px;
}

/* NOTES */
.note{
  width:180px;
  font-size:14px;
}

/* NOTE POSITIONS */
.left{
  left:-120px;
  top:160px;
}

.right{
  right:-120px;
  top:360px;
}

/* VECTOR */
/* VECTOR */
.vector img{
  width: 100%;
  max-width: 90px;
}

}

/* ===============================
   TABLET (768px and below)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

/* SECTION WRAPPER */
.visual1{
  padding:40px 16px;
}

/* HEADER */
.visual-header{
  margin-bottom:60px;
}

.visual-header h1{
  font-size:28px;
}

.visual-header p{
  font-size:16px;
  padding-bottom:30px;
}

/* COMPARE BLOCK */
.compare-section{
  gap:80px;
  margin-bottom:100px;
}

/* PHONE */
.phone{
  width:240px;
  height:500px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  top:-45px;
  padding:8px 50px;
  font-size:16px;
}

/* NOTES */
.note{
  position:static;
  width:100%;
  max-width:260px;
  margin:12px auto 0;
  font-size:14px;
}

/* VECTOR */
.vector img{
  width: 80px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px)  {
 
.visual1{
  padding: 40px 16px;
}

/* HEADER */
.visual-header{
  margin-bottom: 40px;
}

.visual-header h1{
  font-size: 24px;
}

.visual-header p{
  font-size: 14px;
  padding-bottom: 20px;
}

/* COMPARE SECTION */
.compare-section{
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

/* PHONE SIZE */
.phone{
  width: 220px;
  height: 450px;
  border-radius: 30px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  top: -45px;
  padding: 8px 40px;
  font-size: 14px;
}

/* NOTES */
.note{
  width: 170px;
  font-size: 13px;
  padding: 8px 10px;
}

/* POSITION NOTES UNDER PHONE */
.left,
.right{
  position: static;
  margin-top: 12px;
}

/* VECTOR */
.vector img{
  width: 90px;
  margin: 20px 0;
  transform: rotate(90deg);
  padding-bottom: 40px;
}

}


/* ===============================
   MOBILE DEVICES (425px and below)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

/* SECTION WRAPPER */
.visual1{
  padding: 40px 16px;
}

/* HEADER */
.visual-header{
  margin-bottom: 40px;
}

.visual-header h1{
  font-size: 24px;
}

.visual-header p{
  font-size: 14px;
  padding-bottom: 20px;
}

/* COMPARE SECTION */
.compare-section{
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

/* PHONE SIZE */
.phone{
  width: 220px;
  height: 450px;
  border-radius: 30px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  top: -45px;
  padding: 8px 40px;
  font-size: 14px;
}

/* NOTES */
.note{
  width: 170px;
  font-size: 13px;
  padding: 8px 10px;
}

/* POSITION NOTES UNDER PHONE */
.left,
.right{
  position: static;
  margin-top: 12px;
}

/* VECTOR */
.vector img{
  width: 90px;
  margin: 20px 0;
  transform: rotate(90deg);
  padding-bottom: 40px;
}

}

/* ===============================
   MOBILE (375px and below)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

/* CONTAINER */
.visual1{
  padding:40px 12px;
}

/* HEADER */
.visual-header{
  margin-bottom:40px;
}

.visual-header h1{
  font-size:22px;
}

.visual-header p{
  font-size:14px;
  padding-bottom:20px;
}

/* COMPARE SECTION */
.compare-section{
  flex-direction:column;
  gap:80px;
  margin-bottom:80px;
}

/* PHONE */
.phone{
  width:220px;
  height:460px;
  border-radius:28px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  top:-40px;
  padding:8px 40px;
  font-size:14px;
}

/* NOTES */
.note{
  position:static;
  width:100%;
  margin-top:12px;
  font-size:13px;
}

/* REMOVE SIDE POSITIONS */
.left,
.right{
  left:auto;
  right:auto;
  top:auto;
}

/* VECTOR */
.vector img{
  width:80px;
  transform: rotate(90deg);
  padding-bottom: 40px;
}

}

/* ===============================
   SMALL MOBILE (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

/* CONTAINER */
.visual1{
  padding: 10px;
}

/* HEADER */
.visual-header{
  margin-bottom: 40px;
}

.visual-header h1{
  font-size: 22px;
}

.visual-header p{
  font-size: 14px;
  padding-bottom: 20px;
}

/* COMPARE SECTION */
.compare-section{
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}

/* PHONE */
.phone{
  width: 200px;
  height: 410px;
  border-radius: 28px;
}

/* BADGES */
.badge-gray,
.badge-blue{
  top: -40px;
  padding: 6px 30px;
  font-size: 14px;
}

/* NOTES */
.note{
  width: 160px;
  font-size: 13px;
  padding: 8px;
}

/* NOTE POSITIONS */
.left{
  left: 50%;
  top: -60px;
}

.right{
  right: auto;
  left: 50%;
  top: 430px;
}

/* VECTOR */
.vector img{
  width: 80px;
  transform: rotate(90deg);
  padding-bottom: 40px;
}

}







/* ========================================
   KEY SECTION
   ======================================== */
.key-feature {
    width: 1920px;
    height: 826px;
    background-color: #0D0D0D;
    padding: 100px 200px;
} 

.key1 {
    display: flex;
    justify-content: space-between;
}

.key1 h1{
    width: 242px;
    height: 47px;
    font-family: Inter Display;
  font-weight: 700;
  font-style: Bold;
  font-size: 36px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
    color: #FAFAFA;
}

.key1 p{
    width: 564px;
    height: 87px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #BFBFBF;
}

.key-icon {
    width: 1520px;
    height: 439px;
    gap: 57px;
}

.key-icon1 {
    padding-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
}

.icon-box{
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    border-radius: 18px;
    border: 1px solid #595959;
}

.icon-text:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.icon-box img{
    width: 24px;
    height: 24px;
}


.icon-text h1 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #E6E6E6;
    padding-top: 20px;
}

.icon-text p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #B3B3B3;
    padding-top: 20px;
}


.key-icon2 {
    padding-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px;
}



/* ===============================
   LARGE SCREENS (max-width: 1440px)
================================ */

/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

/* Main Section */
.key-feature{
    width: 100%;
    height: auto;
    padding: 80px 120px;
}

/* Heading Row */
.key1 h1{
    font-size: 32px;
}

.key1 p{
    width: 480px;
    font-size: 17px;
}

/* Icon Container */
.key-icon{
    width: 100%;
    height: auto;
}

/* Icon Grids */
.key-icon1,
.key-icon2{
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

/* Icon Box */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* Icon Text */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 16px;
}

}

/* ===============================
   TABLET DEVICES (1024px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

  .key-feature{
    width: 100%;
    height: auto;
    padding: 80px 60px;
  }

  .key1{
    gap: 30px;
  }

  .key1 h1{
    width: 100%;
    font-size: 32px;
  }

  .key1 p{
    width: 100%;
    font-size: 16px;
  }

  .key-icon{
    width: 100%;
    height: auto;
  }

  /* 4 columns → 2 columns */
  .key-icon1,
  .key-icon2{
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 70px;
  }

  .icon-text h1{
    font-size: 18px;
  }

  .icon-text p{
    font-size: 16px;
  }

}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){
    .key-feature{
    width: 100%;
    height: auto;
    padding: 80px 60px;
  }

  .key1{
    gap: 30px;
  }

  .key1 h1{
    width: 100%;
    font-size: 32px;
  }

  .key1 p{
    width: 100%;
    font-size: 16px;
  }

  .key-icon{
    width: 100%;
    height: auto;
  }

  /* 4 columns → 2 columns */
  .key-icon1,
  .key-icon2{
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 70px;
  }

  .icon-text h1{
    font-size: 18px;
  }

  .icon-text p{
    font-size: 16px;
  }

}


/* ===============================
   TABLET DEVICES (max-width: 768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

/* Section Container */
.key-feature{
    width: 100%;
    height: auto;
    padding: 60px 30px;
}

/* Title + Description */
.key1{
    flex-direction: column;
    gap: 20px;
}

.key1 h1{
    width: 100%;
    font-size: 28px;
}

.key1 p{
    width: 100%;
    font-size: 16px;
}

/* Icon Area */
.key-icon{
    width: 100%;
    height: auto;
}

/* Icon Grid (2 columns instead of 4) */
.key-icon1,
.key-icon2{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* Icon Box */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* Icon Text */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 15px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  /* Section Container */
.key-feature{
    width: 100%;
    height: auto;
    padding: 60px 30px;
}

/* Title + Description */
.key1{
    flex-direction: column;
    gap: 20px;
}

.key1 h1{
    width: 100%;
    font-size: 28px;
}

.key1 p{
    width: 100%;
    font-size: 16px;
}

/* Icon Area */
.key-icon{
    width: 100%;
    height: auto;
}

/* Icon Grid (2 columns instead of 4) */
.key-icon1,
.key-icon2{
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* Icon Box */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* Icon Text */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 15px;
}

}

/* ===============================
   MOBILE DEVICES (425px & BELOW)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* SECTION */
.key-feature{
    width: 100%;
    height: auto;
    padding: 40px 20px;
}

/* TOP TEXT */
.key1{
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.key1 h1{
    width: 100%;
    height: auto;
    font-size: 24px;
}

.key1 p{
    width: 100%;
    height: auto;
    font-size: 15px;
}

/* ICON CONTAINER */
.key-icon{
    width: 100%;
    height: auto;
}

/* GRID → 2 COLUMNS */
.key-icon1,
.key-icon2{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 50px;
}

/* ICON BOX */
.icon-box{
    width: 48px;
    height: 48px;
}

.icon-box img{
    width: 22px;
    height: 22px;
}

/* TEXT */
.icon-text h1{
    font-size: 16px;
    padding-top: 15px;
}

.icon-text p{
    font-size: 14px;
    padding-top: 10px;
}

}

/* ===============================
   MOBILE DEVICES (max-width: 375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

/* SECTION */
.key-feature{
    width: 100%;
    height: auto;
    padding: 50px 20px;
}

/* TITLE ROW */
.key1{
    flex-direction: column;
    gap: 20px;
}

.key1 h1{
    width: 100%;
    height: auto;
    font-size: 26px;
    text-align: center;
}

.key1 p{
    width: 100%;
    height: auto;
    font-size: 16px;
    text-align: center;
}

/* ICON CONTAINER */
.key-icon{
    width: 100%;
    height: auto;
}

/* FIRST ICON GRID */
.key-icon1{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* SECOND ICON GRID */
.key-icon2{
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
}

/* ICON BOX */
.icon-box{
    width: 48px;
    height: 48px;
}

/* ICON IMAGE */
.icon-box img{
    width: 22px;
    height: 22px;
}

/* ICON TEXT */
.icon-text h1{
    font-size: 18px;
}

.icon-text p{
    font-size: 15px;
}

}


/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px){

  /* Main Section */
  .key-feature {
    width: 100%;
    height: auto;
    padding: 40px 15px;
  }

  /* Top Text Area */
  .key1 {
    flex-direction: column;
    gap: 20px;
  }

  .key1 h1 {
    width: 100%;
    font-size: 22px;
    text-align: center;
  }

  .key1 p {
    width: 100%;
    font-size: 14px;
    text-align: center;
  }

  /* Icon Container */
  .key-icon {
    width: 100%;
    height: auto;
  }

  /* First Row Icons */
  .key-icon1 {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Second Row Icons */
  .key-icon2 {
    padding-top: 40px;
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Icon Box */
  .icon-box {
    width: 48px;
    height: 48px;
  }

  .icon-box img {
    width: 22px;
    height: 22px;
  }

  /* Icon Text */
  .icon-text h1 {
    font-size: 16px;
    padding-top: 12px;
  }

  .icon-text p {
    font-size: 13px;
    padding-top: 10px;
  }

}










/* ========================================
   manage SECTION
   ======================================== */

.manage {
    margin: 0 auto;
    width: 1520px;
    padding-top: 160px;
    /* background-color: #F8F8F8; */
}

.manage-text1 {
    width: 1046px;
    height: 115px;
    gap: 10px;
    margin: auto;
}

.manage-text1 h1{
    width: 1075px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #262626;
}

.manage-text1 p{
    width: 882px;
    height: 58px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #404040;
    margin: auto;
}

/* MAIN LAYOUT */
.manage-text2   {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LEFT PHONE */
.phone-manage img{
    width: 388px;
    height: 750px;
}

/* CENTER LINE */


/* RIGHT SIDE */
.manage-right{
    width:350px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */
.card{
    width: 427px;
    height: 420px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
}

/* TEXT */
.manage-right p{
    width: 420px;
    height: 87px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
    padding-top: 20px;
}


/* 2 line */
.manage-text2 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse; 
}

.card5{
    width: 427px;
    height: 435px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card5:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card5 img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
    transform: rotate(-4deg);
    border-radius: 8px;
    padding-bottom: 10px;
}


/* 3 line */
.manage-text3 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;  
}

/* CARD */
.card1{
    width: 427px;
    height: 475px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card1:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card1 img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
}


/* 4 line */
.manage-text4 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   
}

/* CARD */
.card2{
    width: 427px;
    height: 550px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card2:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card2 img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
}


/* 5 line */
.manage-text5 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;  
}

/* CARD */
.card3{
    width: 427px;
    height: 400px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card3:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card3 img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
}


/* 6 line */
.manage-text6 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   
}


/* CARD */
.card4{
    width: 427px;
    height: 250px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.card4:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.card4 img{
    width:100%;
    border-radius:10px;
    padding-top: 20px;
    transform: rotate(-4deg);
    border-radius: 8px;
    padding-bottom: 10px;
}

/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

/* SECTION */
.manage{
    width:100%;
    padding-top:120px;
}

/* TITLE BLOCK */
.manage-text1{
    width:900px;
}

.manage-text1 h1{
    width:104%;
    font-size:32px;
}

.manage-text1 p{
    width:720px;
    font-size:17px;
}

/* MAIN ROWS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width:1100px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-manage img{
    width:340px;
    height:auto;
}

/* RIGHT COLUMN */
.manage-right{
    width:320px;
}

/* CARDS */
.card{
    width: 115%;
    height: 375px;
}

.card2{
    width: 115%;
    height: 500px;
}

.card3{
    width: 115%;
    height: 375px;
}

.card4{
    width: 115%;
    height: 230px;
}

.card5{
    width: 115%;
    height: 375px;
}

/* TEXT */
.manage-right p{
    width:100%;
    font-size:17px;
}

/* CARD IMAGE */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    padding-top:15px;
}

}

/* ===============================
   SCREENS ≤ 1200px
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

/* MAIN CONTAINER */
.manage{
    width: 100%;
    padding-top: 120px;
}

/* TOP TEXT */
.manage-text1{
    width: 90%;
}

.manage-text1 h1{
    width: 100%;
    font-size: 32px;
    text-align: center;
}

.manage-text1 p{
    width: 80%;
    font-size: 17px;
}

/* ALL ROWS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 95%;
    height: auto;
    padding-top: 120px;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 320px;
    height: auto;
}

/* RIGHT COLUMN */
.manage-right{
    width: 320px;
    gap: 20px;
}

/* CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width: 360px;
    height: auto;
}

/* TEXT INSIDE CARD COLUMN */
.manage-right p{
    width: 100%;
    font-size: 16px;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    padding-top: 15px;
}

}

/* ===============================
   TABLET / SMALL LAPTOP (1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

/* MAIN CONTAINER */
.manage{
    width: 100%;
    padding-top: 120px;
}

/* TOP TEXT */
.manage-text1{
    width: 90%;
}

.manage-text1 h1{
    width: 100%;
    font-size: 30px;
    text-align: center;
}

.manage-text1 p{
    width: 80%;
    font-size: 16px;
}

/* ALL ROW SECTIONS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 90%;
    height: auto;
    padding-top: 120px;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 300px;
    height: auto;
}

/* RIGHT COLUMN */
.manage-right{
    width: 320px;
    gap: 20px;
}

/* ALL CARDS */
.card{
    width: 100%;
    height: 350px;
}

.card5{
    width: 100%;
    height: 350px;
}

.card1{
    width: 100%;
    height: 385px;
}

.card2{
    width: 100%;
    height: 460px;
}

.card3{
    width: 100%;
    height: 350px;
}

.card4{
    width: 100%;
    height: 210px;
}

/* CARD TEXT */
.manage-right p{
    width: 100%;
    font-size: 16px;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    width: 100%;
}

/* OPTIONAL: soften rotations */
.card5 img,
.card4 img{
    transform: rotate(-2deg);
}

}

/* ===============================
   TABLET DEVICES (max-width: 768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* MAIN CONTAINER */
.manage{
    width: 100%;
    padding: 100px 20px 0;
}

/* TOP TEXT */
.manage-text1{
    width: 100%;
    height: auto;
}

.manage-text1 h1{
    width: 100%;
    font-size: 28px;
    text-align: center;
    line-height: 1.3;
}

.manage-text1 p{
    width: 100%;
    font-size: 16px;
    padding-top: 20px;
}

/* ALL ROW SECTIONS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 100%;
    height: auto;
    padding-top: 80px;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 260px;
    height: auto;
}

/* RIGHT SIDE */
.manage-right{
    width: 100%;
    align-items: center;
}

/* CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width: 90%;
    height: auto;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    width: 100%;
    height: auto;
    transform: none;
}

/* TEXT BELOW CARD */
.manage-right p{
    width: 100%;
    font-size: 16px;
    text-align: center;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

/* MAIN CONTAINER */
.manage{
    width: 100%;
    padding: 100px 20px 0;
}

/* TOP TEXT */
.manage-text1{
    width: 100%;
    height: auto;
}

.manage-text1 h1{
    width: 100%;
    font-size: 28px;
    text-align: center;
    line-height: 1.3;
}

.manage-text1 p{
    width: 100%;
    font-size: 16px;
    padding-top: 20px;
}

/* ALL ROW SECTIONS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 100%;
    height: auto;
    padding-top: 80px;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 260px;
    height: auto;
}

/* RIGHT SIDE */
.manage-right{
    width: 100%;
    align-items: center;
}

/* CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width: 90%;
    height: auto;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    width: 100%;
    height: auto;
    transform: none;
}

/* TEXT BELOW CARD */
.manage-right p{
    width: 100%;
    font-size: 16px;
    text-align: center;
}

}

/* ===============================
   MOBILE DEVICES (max-width: 425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

/* MAIN CONTAINER */
.manage{
    width:100%;
    padding-top:80px;
}

/* TOP TEXT */
.manage-text1{
    width:100%;
    height:auto;
    padding:0 20px;
}

.manage-text1 h1{
    width:100%;
    font-size:24px;
    text-align:center;
    line-height: 1.3;
}

.manage-text1 p{
    width:100%;
    font-size:15px;
    padding-top: 50px;
}

/* ALL ROWS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width:100%;
    height:auto;
    padding-top:80px;
    flex-direction:column;
    gap:40px;
}

/* PHONE IMAGE */
.phone-manage img{
    width:260px;
    height:auto;
}

/* RIGHT SIDE */
.manage-right{
    width:100%;
    align-items:center;
}

/* ALL CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width:90%;
    height:auto;
    padding:15px;
}

/* CARD IMAGE */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    padding-top:10px;
}

/* TEXT */
.manage-right p{
    width:100%;
    height:auto;
    font-size:15px;
    text-align:center;
}

}

/* ===============================
   MOBILE DEVICES (max-width: 375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

/* MAIN WRAPPER */
.manage{
    width: 100%;
    padding: 80px 16px;
}

/* TOP TEXT */
.manage-text1{
    width: 100%;
    height: auto;
}

.manage-text1 h1{
    width: 100%;
    font-size: 22px;
    text-align: center;
    line-height: 1.3;
}

.manage-text1 p{
    width: 100%;
    font-size: 14px;
    padding-top: 40px;
}

/* ALL SECTIONS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 100%;
    height: auto;
    padding-top: 80px;
    flex-direction: column;
    gap: 40px;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 220px;
    height: auto;
}

/* RIGHT SIDE */
.manage-right{
    width: 100%;
    align-items: center;
}

/* CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width: 100%;
    height: auto;
    padding: 12px;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    width: 100%;
    height: auto;
    transform: none;
}

/* TEXT */
.manage-right p{
    width: 100%;
    font-size: 14px;
    text-align: center;
}

}

/* ===============================
   EXTRA SMALL DEVICES (max-width: 320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px){

/* MAIN WRAPPER */
.manage{
    width: 100%;
    padding-top: 80px;
}

/* TOP TEXT */
.manage-text1{
    width: 100%;
    height: auto;
    padding: 0 12px;
}

.manage-text1 h1{
    width: 100%;
    font-size: 22px;
    text-align: center;
    line-height: 1.3;
}

.manage-text1 p{
    width: 100%;
    font-size: 14px;
    padding-top: 40px;
}

/* ALL ROW SECTIONS */
.manage-text2,
.manage-text3,
.manage-text4,
.manage-text5,
.manage-text6{
    width: 100%;
    height: auto;
    padding-top: 60px;
    flex-direction: column;
    gap: 30px;
}

/* PHONE IMAGE */
.phone-manage img{
    width: 220px;
    height: auto;
}

/* RIGHT COLUMN */
.manage-right{
    width: 100%;
    align-items: center;
}

/* ALL CARDS */
.card,
.card1,
.card2,
.card3,
.card4,
.card5{
    width: 100%;
    max-width: 260px;
    height: auto;
    padding: 12px;
}

/* CARD IMAGES */
.card img,
.card1 img,
.card2 img,
.card3 img,
.card4 img,
.card5 img{
    width: 100%;
    height: auto;
}

/* TEXT INSIDE RIGHT */
.manage-right p{
    width: 100%;
    font-size: 14px;
    text-align: center;
}

}








/* ========================================
   train SECTION
   ======================================== */

.train {
    margin: 0 auto;
    width: 1520px;
    padding-top: 160px;
}

.train-text1 {
    width: 772px;
    height: 115px;
    gap: 10px;
    margin: auto;
}

.train-text1 h1{
    width: 795px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    line-height: 140%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #262626;
    margin: auto;
}

.train-text1 p{
    width: 782px;
    height: 58px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #404040;
    margin: auto;
}

/* MAIN LAYOUT */
.train-text2   {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LEFT PHONE */
.phone-train img{
    width: 388px;
    height: 750px;
}

/* CENTER LINE */


/* RIGHT SIDE */
.train-right{
    width:350px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */
.train-card{
    width: 440px;
    height: 410px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.train-card img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
    transform: rotate(4deg);
}

/* TEXT */
.train-right p{
    width: 420px;
    height: 87px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
    padding-top: 20px;
}


/* 2 line */
.train-text2 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.train-card2:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.train-card2{
    width: 440px;
    height: 390px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card2 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
    transform: rotate(4deg);
}

/* 3 line */
.train-text3 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   
}

.train-card3:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.train-card3{
    width: 440px;
    height: 390px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card3 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
}

/* 4 line */
.train-text4 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.train-card4:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.train-card4{
    width: 440px;
    height: 410px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card4 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
}

/* 5 line */
.train-text5 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.train-card5:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.train-card5{
    width: 440px;
    height: 310px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card5 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
    transform: rotate(4deg);
}

/* 6 line */
.train-text6 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.train-card6:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.train-card6{
    width: 440px;
    height: 490px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.train-card6 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
}

/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

/* SECTION */
.train{
    width:100%;
    padding-top:120px;
}

/* TITLE */
.train-text1{
    width:680px;
}

.train-text1 h1{
    width:104%;
    font-size:32px;
}

.train-text1 p{
    width:100%;
    font-size:17px;
}

/* ROW LAYOUTS */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:1100px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-train img{
    width:340px;
    height:auto;
}

/* RIGHT SIDE */
.train-right{
    width:320px;
}

/* CARDS */
.train-card{
    width: 115%;
    height: 360px;
}

.train-card2{
    width:380px;
    height: 350px;
}

.train-card3{
    width:380px;
    height: 350px;
}

.train-card4{
    width:380px;
    height: 360px;
}

.train-card5{
    width:380px;
    height: 280px;
}

.train-card6{
    width:380px;
    height: 440px;
}

/* CARD IMAGE */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    padding-top:20px;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:17px;
}

}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

  /* SECTION */
.train{
    width:100%;
    padding-top:120px;
}

/* TITLE */
.train-text1{
    width:680px;
}

.train-text1 h1{
    width:104%;
    font-size:32px;
}

.train-text1 p{
    width:100%;
    font-size:17px;
}

/* ROW LAYOUTS */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:1100px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-train img{
    width:340px;
    height:auto;
}

/* RIGHT SIDE */
.train-right{
    width:320px;
}

/* CARDS */
.train-card{
    width: 115%;
    height: 360px;
}

.train-card2{
    width:380px;
    height: 350px;
}

.train-card3{
    width:380px;
    height: 350px;
}

.train-card4{
    width:380px;
    height: 360px;
}

.train-card5{
    width:380px;
    height: 280px;
}

.train-card6{
    width:380px;
    height: 440px;
}

/* CARD IMAGE */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    padding-top:20px;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:17px;
}

}


/* ===============================
   TABLET VIEW (max-width:1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

/* SECTION */
.train{
    width:100%;
    padding-top:120px;
}

/* HEADING */
.train-text1{
    width:650px;
}

.train-text1 h1{
    width:104%;
    font-size:30px;
}

.train-text1 p{
    width:100%;
    font-size:16px;
}

/* MAIN ROWS */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:900px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-train img{
    width:300px;
    height:auto;
}

/* RIGHT COLUMN */
.train-right{
    width:300px;
    gap:20px;
}

/* CARDS */
.train-card{
    width: 115%;
    height: 340px;
}

.train-card2{
    width: 115%;
    height: 330px;
}

.train-card3{
    width: 115%;
    height: 330px;
}

.train-card4{
    width: 115%;
    height: 340px;
}

.train-card5{
    width: 115%;
    height: 270px;
}

.train-card6{
    width: 115%;
    height: 400px;
}

/* CARD IMAGES */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:92%;
    padding-top:20px;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:16px;
}

}

/* ===============================
   TABLET VIEW (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* SECTION */
.train{
    width:100%;
    padding-top:100px;
}

/* TITLE */
.train-text1{
    width:100%;
}

.train-text1 h1{
    width:100%;
    font-size:28px;
    text-align:center;
}

.train-text1 p{
    width:90%;
    font-size:16px;
}

/* ALL ROWS STACK */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:100%;
    height:auto;
    padding-top:100px;
    flex-direction:column;
    gap:40px;
}

/* PHONE IMAGE */
.phone-train img{
    width:260px;
    height:auto;
}

/* RIGHT COLUMN */
.train-right{
    width:100%;
    align-items:center;
}

/* ALL CARDS */
.train-card,
.train-card2,
.train-card3,
.train-card4,
.train-card5,
.train-card6{
    width:90%;
    height:auto;
}

/* CARD IMAGE */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:92%;
    margin-left:0;
    transform:none;
}

/* TEXT */
.train-right p{
    width:90%;
    font-size:16px;
    text-align:center;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) { 

  /* SECTION */
.train{
    width:100%;
    padding-top:100px;
}

/* TITLE */
.train-text1{
    width:100%;
}

.train-text1 h1{
    width:100%;
    font-size:28px;
    text-align:center;
}

.train-text1 p{
    width:90%;
    font-size:16px;
}

/* ALL ROWS STACK */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:100%;
    height:auto;
    padding-top:100px;
    flex-direction:column;
    gap:40px;
}

/* PHONE IMAGE */
.phone-train img{
    width:260px;
    height:auto;
}

/* RIGHT COLUMN */
.train-right{
    width:100%;
    align-items:center;
}

/* ALL CARDS */
.train-card,
.train-card2,
.train-card3,
.train-card4,
.train-card5,
.train-card6{
    width:90%;
    height:auto;
}

/* CARD IMAGE */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:92%;
    margin-left:0;
    transform:none;
}

/* TEXT */
.train-right p{
    width:90%;
    font-size:16px;
    text-align:center;
}

}


/* ===============================
   MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* SECTION */
.train{
    width:100%;
    padding-top:80px;
}

/* TITLE */
.train-text1{
    width:100%;
    height:auto;
    padding:0 15px;
}

.train-text1 h1{
    width:100%;
    font-size:24px;
    line-height: 1.3;
}

.train-text1 p{
    width:100%;
    font-size:15px;
    padding-top: 30px;
}

/* ALL ROWS */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:100%;
    height:auto;
    padding-top:80px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-train img{
    width:260px;
    height:auto;
}

/* RIGHT SIDE */
.train-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.train-card{
    width: 90%;
    height: 320px;
}

.train-card2{
  width: 90%;
    height: 320px;
}

.train-card3{
  width: 90%;
    height: 320px;
}

.train-card4{
  width: 90%;
    height: 320px;
}

.train-card5{
  width: 90%;
    height: 250px;
}

.train-card6{
  width: 90%;
    height: 400px;
}

/* CARD IMAGE */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:92%;
    margin-left:0;
    padding-top:20px;
    transform:none;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:15px;
    text-align:center;
}

}

/* ===============================
   MOBILE DEVICES (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

/* SECTION */
.train{
    width:100%;
    padding:60px 16px;
}

/* TITLE */
.train-text1{
    width:100%;
    height:auto;
}

.train-text1 h1{
    width:100%;
    font-size:22px;
    text-align:center;
    line-height: 1.3;
}

.train-text1 p{
    width:100%;
    font-size:15px;
    padding-top: 20px;
}

/* ALL ROWS STACK */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:100%;
    height:auto;
    padding-top:60px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-train img{
    width:240px;
    height:auto;
}

/* RIGHT COLUMN */
.train-right{
    width:100%;
    align-items:center;
}

/* ALL CARDS */
.train-card{
    width:100%;
    height: 320px;
}

.train-card2{
    width:100%;
    height: 320px;
}

.train-card3{
    width:100%;
    height: 320px;
}

.train-card4{
    width:100%;
    height: 320px;
}

.train-card5{
    width:100%;
    height: 250px;
}

.train-card6{
    width:100%;
    height: 380px;
}

/* CARD IMAGES */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:90%;
    margin-left:auto;
    margin-right:auto;
    display:block;
    padding-top:20px;
    transform:none;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:15px;
    text-align:center;
}

}

/* ===============================
   EXTRA SMALL DEVICES (320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px){

/* SECTION */
.train{
    width:100%;
    padding-top:60px;
}

/* TITLE */
.train-text1{
    width:100%;
}

.train-text1 h1{
    width:100%;
    font-size:22px;
    text-align:center;
    line-height: 1.3;
}

.train-text1 p{
    width:100%;
    font-size:14px;
    padding-top: 20px;
}

/* ALL ROWS */
.train-text2,
.train-text3,
.train-text4,
.train-text5,
.train-text6{
    width:100%;
    height:auto;
    padding-top:60px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-train img{
    width:220px;
    height:auto;
}

/* RIGHT COLUMN */
.train-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.train-card{
    width:100%;
    height: 290px;
}

.train-card2 {
    width:100%;
    height: 290px;
}

.train-card3 {
    width:100%;
    height: 290px;
}

.train-card4 {
    width:100%;
    height: 290px;
}

.train-card5 {
    width:100%;
    height: 230px;
}

.train-card6 {
    width:100%;
    height: 340px;
}

/* CARD IMAGES */
.train-card img,
.train-card2 img,
.train-card3 img,
.train-card4 img,
.train-card5 img,
.train-card6 img{
    width:90%;
    margin:auto;
    display:block;
    padding-top:20px;
    transform:none;
}

/* TEXT */
.train-right p{
    width:100%;
    font-size:14px;
    text-align:center;
}

}







/* ========================================
   train SECTION
   ======================================== */

.Connect {
    margin: 0 auto;
    width: 1520px;
    padding: 160px 0 160px;
}

.Connect-text1 {
    width: 980px;
    height: 115px;
    gap: 10px;
    margin: auto;
}

.Connect-text1 h1{
    width: 980px;
    height: 47px;
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 34px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #262626;
    margin: auto;
    text-align: center;
}

.Connect-text1 p{
    width: 782px;
    height: 58px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color: #404040;
    margin: auto;
}

/* MAIN LAYOUT */
.Connect-text2   {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/* LEFT PHONE */
.phone-Connect img{
    width: 388px;
    height: 750px;
}


/* RIGHT SIDE */
.Connect-right{
    width:350px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

/* CARD */
.Connect-card{
    width: 440px;
    height: 405px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.Connect-card:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.Connect-card img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
    transform: rotate(4deg);
}

/* TEXT */
.Connect-right p{
    width: 420px;
    height: 87px;
    padding: 7px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #404040;
    padding-top: 20px;
}


/* 2 line */
.Connect-text2 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.Connect-card2:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.Connect-card2{
    width: 440px;
    height: 347px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.Connect-card2 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
    transform: rotate(-4deg);
}

/* 3 line */
.Connect-text3 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.Connect-card3:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.Connect-card3{
    width: 440px;
    height: 333px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.Connect-card3 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
}

/* 4 line */
.Connect-text4 {
    width: 1320px;
    height: 912px;
    padding-top: 150px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-direction: row-reverse;   /* ADD THIS */
}

.Connect-card4:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

/* CARD */
.Connect-card4{
    width: 440px;
    height: 358px;
    background:#ffffff;
    border-radius:12px;
    padding: 5x;
}

.Connect-card4 img{
    margin-left: 12px;
    width:95%;
    border-radius:10px;
    padding-top: 30px;
}

/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

/* SECTION */
.Connect{
    width:100%;
    padding-top:120px;
}

/* TITLE */
.Connect-text1{
    width:850px;
}

.Connect-text1 h1{
    width:103%;
    font-size:32px;
}

.Connect-text1 p{
    width:100%;
    font-size:17px;
}

/* ROW LAYOUTS */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:1100px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-Connect img{
    width:340px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:320px;
}

/* CARDS */
.Connect-card{
    width: 115%;
    height: 360px;
}

.Connect-card2{
    width: 115%;
    height: 320px;
}

.Connect-card3{
    width: 115%;
    height: 310px;
}

.Connect-card4{
    width: 115%;
    height: 320px;
}

/* CARD IMAGE */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    padding-top:20px;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:17px;
}

}

/* ===============================
   SMALL DESKTOP (max-width:1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

/* SECTION */
.Connect{
    width:100%;
    padding-top:120px;
}

/* TITLE */
.Connect-text1{
    width:760px;
}

.Connect-text1 h1{
    width:100%;
    font-size:32px;
}

.Connect-text1 p{
    width:100%;
    font-size:17px;
}

/* ROWS */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:1000px;
    height:auto;
    padding-top:120px;
}

/* PHONE */
.phone-Connect img{
    width:320px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:300px;
}

/* CARDS */
.Connect-card,
.Connect-card2,
.Connect-card3,
.Connect-card4{
    width:360px;
    height:auto;
}

/* CARD IMAGES */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    padding-top:20px;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:16px;
}

}

/* ===============================
   TABLET / SMALL LAPTOP (max-width:1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

/* SECTION */
.Connect{
    width:100%;
    padding-top:100px;
}

/* TITLE */
.Connect-text1{
    width:90%;
}

.Connect-text1 h1{
    width:100%;
    font-size:28px;
}

.Connect-text1 p{
    width:100%;
    font-size:16px;
}

/* MAIN ROWS */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:90%;
    height:auto;
    padding-top:100px;
}

/* PHONE */
.phone-Connect img{
    width:300px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:280px;
    gap:20px;
}

/* CARDS */
.Connect-card{
    width: 115%;
    height: 350px;
}

.Connect-card2{
    width: 115%;
    height: 280px;
}

.Connect-card3{
    width: 115%;
    height: 300px;
}

.Connect-card4{
    width: 115%;
    height: 310px;
}

/* CARD IMAGE */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:94%;
    padding-top:20px;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:16px;
}

}

/* ===============================
   TABLET DEVICES (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* SECTION */
.Connect{
    width:100%;
    padding:100px 16px 100px;
}

/* TITLE */
.Connect-text1{
    width:100%;
}

.Connect-text1 h1{
    width:100%;
    font-size:28px;
}

.Connect-text1 p{
    width:90%;
    font-size:16px;
}

/* ALL ROWS STACK */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:100%;
    height:auto;
    padding-top:100px;
    flex-direction:column;
    gap:60px;
}

/* PHONE */
.phone-Connect img{
    width:300px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.Connect-card,
.Connect-card2,
.Connect-card3,
.Connect-card4{
    width:90%;
    height:auto;
}

/* CARD IMAGES */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:95%;
    padding-top:20px;
    margin-left:13px;
}

/* TEXT */
.Connect-right p{
    width:90%;
    font-size:16px;
    text-align:center;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  .Connect{
    width:100%;
    padding:100px 16px 100px;
}

/* TITLE */
.Connect-text1{
    width:100%;
}

.Connect-text1 h1{
    width:100%;
    font-size:28px;
}

.Connect-text1 p{
    width:90%;
    font-size:16px;
}

/* ALL ROWS STACK */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:100%;
    height:auto;
    padding-top:100px;
    flex-direction:column;
    gap:60px;
}

/* PHONE */
.phone-Connect img{
    width:300px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.Connect-card,
.Connect-card2,
.Connect-card3,
.Connect-card4{
    width:90%;
    height:auto;
}

/* CARD IMAGES */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:95%;
    padding-top:20px;
    margin-left:13px;
}

/* TEXT */
.Connect-right p{
    width:90%;
    font-size:16px;
    text-align:center;
}

}

/* ===============================
   SMALL MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* SECTION */
.Connect{
    width:100%;
    padding:80px 16px 80px;
}

/* TITLE */
.Connect-text1{
    width:100%;
}

.Connect-text1 h1{
    width:100%;
    font-size:24px;
    line-height: 1.3;
}

.Connect-text1 p{
    width:100%;
    font-size:15px;
    padding-top: 30px;
}

/* ALL ROWS STACK */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:100%;
    height:auto;
    padding-top:80px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-Connect img{
    width:260px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.Connect-card{
    width:100%;
    height: 320px;
}

.Connect-card2{
    width:100%;
    height: 280px;
}

.Connect-card3{
    width:100%;
    height: 300px;
}

.Connect-card4{
    width:100%;
    height: 320px;
}


/* CARD IMAGE */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:90%;
    margin-left:auto;
    margin-right:auto;
    padding-top:20px;
    transform:none;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:15px;
    text-align:center;
    padding-top:15px;
}

}

/* ===============================
   MOBILE DEVICES (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

/* SECTION */
.Connect{
    width:100%;
    padding:80px 16px 80px;
}

/* TITLE */
.Connect-text1{
    width:100%;
    height:auto;
}

.Connect-text1 h1{
    width:100%;
    font-size:22px;
    line-height: 1.3;
}

.Connect-text1 p{
    width:100%;
    font-size:14px;
    padding-top: 40px;
}

/* ALL ROWS */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:100%;
    height:auto;
    padding-top:80px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-Connect img{
    width:220px;
    height:auto;
    margin:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.Connect-card{
    width:100%;
    height: 320px;
}

.Connect-card2{
    width:100%;
    height: 280px;
}

.Connect-card3{
    width:100%;
    height: 280px;
}

.Connect-card4{
    width:100%;
    height: 280px;
}

/* CARD IMAGE */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:95%;
    margin:0 auto;
    display:block;
    padding-top:20px;
    transform:none;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:14px;
    text-align:center;
}

}

/* ===============================
   EXTRA SMALL DEVICES (max-width:320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

/* SECTION */
.Connect{
    width:100%;
    padding-top:60px;
    padding-bottom: 50px;
}

/* TITLE */
.Connect-text1{
    width:100%;
    height:auto;
    padding:0 10px;
}

.Connect-text1 h1{
    width:100%;
    font-size:22px;
    line-height: 1.3;
}

.Connect-text1 p{
    width:100%;
    font-size:14px;
    padding-top: 35px;
}

/* ALL ROWS STACK */
.Connect-text2,
.Connect-text3,
.Connect-text4{
    width:100%;
    height:auto;
    padding-top:60px;
    flex-direction:column;
    gap:40px;
}

/* PHONE */
.phone-Connect img{
    width:200px;
    height:auto;
}

/* RIGHT SIDE */
.Connect-right{
    width:100%;
    align-items:center;
}

/* CARDS */
.Connect-card{
    width: 100%;
    height: 300px;
}

.Connect-card2{
    width: 100%;
    height: 245px;
}

.Connect-card3{
    width: 100%;
    height: 255px;
}

.Connect-card4{
    width: 100%;
    height: 260px;
}

/* CARD IMAGES */
.Connect-card img,
.Connect-card2 img,
.Connect-card3 img,
.Connect-card4 img{
    width:92%;
    padding-top:20px;
    margin-left:10px;
    transform:none;
}

/* TEXT */
.Connect-right p{
    width:100%;
    font-size:14px;
    text-align:center;
}

}










/* ========================================
   train SECTION
   ======================================== */
.guide {
    width: 1920px;
    height: 1251px;
    padding: 160px 200px;
    background-color:#0D0D0D;
}

.guide-line{
    width: 1520px;
    height: 31px;
    display: flex;
    justify-content: space-between;
}

.guide-line p{
    font-family: Inter Display;
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFF;
}

.guide-tabs {
    width: 406px;
    height: 25px;
    gap: 30px;
}

.guide-tabs {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #E6E6E6;
}

.guide-tabs span {
    padding-left: 15px;
}

.guide1 {
    width: 1520px;
    height: 274px;
    gap: 106px;
}

.manrope {
    width: 1520px;
    height: 137px;
    padding-top: 125px;
    display: flex;
    justify-content: space-between;
}

.manrope h1 {
    font-family: Manrope;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 100px;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FFF;
}

.manrope-3 {
    font-family: Manrope;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: right;
    text-transform: uppercase;
    color: #D9D9D9;
}

.manrope-3 h2,h3,h4 {
  width: 100%;
}

.guide-color {
    width: 1518px;
    height: 620px;
    padding-top: 40px;
}

.guide-color1 {
    width: 1518px;
    height: 300px;
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

/*-----------------------------------color1---------------------------------*/
.color1 {
    width: 493px;
    height: 300px;
    background-color: #284FDE;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color1:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.color1 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color1 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}


/*-----------------------------------color2---------------------------------*/
.color2 {
    width: 493px;
    height: 300px;
    background-color: #00875A;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color2:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.color2 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color2 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}



/*-----------------------------------color3---------------------------------*/
.color3 {
    width: 493px;
    height: 300px;
    background-color: #F4C841;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color3:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.color3 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #000000;
}


.color3 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}

.guide-color2 {
    width: 1518px;
    height: 300px;
    display: grid;
    padding-top: 20px;
    grid-template-columns: 1fr 1fr 1fr;
}

/*-----------------------------------color4---------------------------------*/
.color4 {
    width: 369px;
    height: 300px;
    background-color: #FF8A00;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color4:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.color4 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color4 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/*-----------------------------------color5---------------------------------*/
.color5 {
    width: 369px;
    height: 300px;
    background-color: #D93025;
    border-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color5:hover {
  transform: scale(1.02);
  transition: 0.3s;
}

.color5 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color5 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

.color6 {
    width: 740px;
    height: 300px;
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
/*-----------------------------------color6-1---------------------------------*/
.color6-1 {
    width: 148px;
    height: 300px;
    background-color: #000;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color6-1:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}


.color6-1 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color6-1 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/*-----------------------------------color6-2---------------------------------*/
.color6-2 {
    width: 148px;
    height: 300px;
    background-color: #262626;
    padding: 20px;
    position: relative; 
}

.color6-2:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.color6-2 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color6-2 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/*-----------------------------------color6-3---------------------------------*/
.color6-3 {
    width: 148px;
    height: 300px;
    background-color: #595959;
    padding: 20px;
    position: relative; 
}

.color6-3:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.color6-3 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color6-3 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/*-----------------------------------color6-4---------------------------------*/
.color6-4 {
    width: 148px;
    height: 300px;
    background-color: #999999;
    padding: 20px;
    position: relative; 
}

.color6-4:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.color6-4 {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #FFFFFF;
}


.color6-4 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #FFFFFF;
}

/*-----------------------------------color6-5---------------------------------*/
.color6-5 {
    width: 148px;
    height: 300px;
    background-color: #FFF;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 20px;
    position: relative; 
}

.color6-5:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.color6-5 p {
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 20px;
    letter-spacing: 0%;
    color:  #000000;
}


.color6-5 span {
    position: absolute; 
    bottom: 20px;
    right: 20px;
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
}


/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px) {

  /* MAIN SECTION */
  .guide {
    width: 100%;
    height: auto;
    padding: 120px 120px;
  }

  /* TOP LINE */
  .guide-line {
    width: 100%;
  }

  .guide-line p {
    font-size: 20px;
  }

  /* TABS */
  .guide-tabs {
    width: auto;
    font-size: 16px;
    gap: 15px;
  }

  /* GUIDE1 */
  .guide1 {
    width: 100%;
    height: auto;
    gap: 80px;
  }

  /* TITLE ROW */
  .manrope {
    width: 100%;
    height: auto;
    padding-top: 100px;
  }

  .manrope h1 {
    font-size: 80px;
  }

  .manrope-3 {
    font-size: 16px;
  }

  /* COLOR SECTION */
  .guide-color,
  .guide-color2 {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }

  /* COLOR GRIDS */
  .guide-color1,
  .guide-color2 {
    width: 100%;
    gap: 18px;
  }

  .guide-color1 {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-color2 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* COLOR CARDS */
  .color1,
  .color2,
  .color3,
  .color4,
  .color5 {
    width: 100%;
    height: 260px;
    border-radius: 18px;
  }

  .color1 p,
  .color2 p,
  .color3 p,
  .color4 p,
  .color5 p {
    font-size: 18px;
  }

  .color1 span,
  .color2 span,
  .color3 span,
  .color4 span,
  .color5 span {
    font-size: 14px;
  }

  /* COLOR6 GRID */
  .color6 {
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
  }

  .color6-1,
  .color6-2,
  .color6-3,
  .color6-4,
  .color6-5 {
    width: 100%;
    height: 260px;
  }

  .color6-1 p,
  .color6-2 p,
  .color6-3 p,
  .color6-4 p,
  .color6-5 p {
    font-size: 18px;
  }

  .color6-1 span,
  .color6-2 span,
  .color6-3 span,
  .color6-4 span,
  .color6-5 span {
    font-size: 14px;
  }

}

/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px) {

    /* MAIN SECTION */
  .guide {
    width: 100%;
    height: auto;
    padding: 120px 120px;
  }

  /* TOP LINE */
  .guide-line {
    width: 100%;
  }

  .guide-line p {
    font-size: 20px;
  }

  /* TABS */
  .guide-tabs {
    width: auto;
    font-size: 16px;
    gap: 15px;
  }

  /* GUIDE1 */
  .guide1 {
    width: 100%;
    height: auto;
    gap: 80px;
  }

  /* TITLE ROW */
  .manrope {
    width: 100%;
    height: auto;
    padding-top: 100px;
  }

  .manrope h1 {
    font-size: 80px;
  }

  .manrope-3 {
    font-size: 16px;
  }

  /* COLOR SECTION */
  .guide-color,
  .guide-color2 {
    width: 100%;
    height: auto;
    padding-top: 30px;
  }

  /* COLOR GRIDS */
  .guide-color1,
  .guide-color2 {
    width: 100%;
    gap: 18px;
  }

  .guide-color1 {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-color2 {
    grid-template-columns: repeat(3, 1fr);
  }

  /* COLOR CARDS */
  .color1,
  .color2,
  .color3,
  .color4,
  .color5 {
    width: 100%;
    height: 260px;
    border-radius: 18px;
  }

  .color1 p,
  .color2 p,
  .color3 p,
  .color4 p,
  .color5 p {
    font-size: 18px;
  }

  .color1 span,
  .color2 span,
  .color3 span,
  .color4 span,
  .color5 span {
    font-size: 14px;
  }

  /* COLOR6 GRID */
  .color6 {
    width: 100%;
    grid-template-columns: repeat(5, 1fr);
  }

  .color6-1,
  .color6-2,
  .color6-3,
  .color6-4,
  .color6-5 {
    width: 100%;
    height: 260px;
  }

  .color6-1 p,
  .color6-2 p,
  .color6-3 p,
  .color6-4 p,
  .color6-5 p {
    font-size: 18px;
  }

  .color6-1 span,
  .color6-2 span,
  .color6-3 span,
  .color6-4 span,
  .color6-5 span {
    font-size: 14px;
  }

}

/* ===============================
   SMALL LAPTOP (max-width:1025px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:100px 60px;
}

/* TOP BAR */
.guide-line{
    width:100%;
}

/* TEXT SIZE */
.guide-line p{
    font-size:20px;
}

.guide-tabs{
    font-size:16px;
}

/* WRAPPERS */
.guide1,
.manrope,
.guide-color,
.guide-color1,
.guide-color2{
    width:100%;
    height:auto;
}

/* BIG TITLE */
.manrope h1{
    font-size:64px;
}

.manrope-3{
    font-size:16px;
}

/* GRID */
.guide-color1{
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
}

/* COLOR 1-3 */
.color1,
.color2,
.color3{
    width:100%;
    height:240px;
}

/* SECOND ROW GRID */
.guide-color2{
    grid-template-columns:1fr 1fr 2fr;
    gap:16px;
}

/* COLOR 4-5 */
.color4,
.color5{
    width:100%;
    height:240px;
}

/* COLOR 6 GROUP */
.color6{
    width:100%;
    height:240px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

/* COLOR 6 CHILD */
.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:240px;
}

/* TEXT IN CARDS */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2,
.color6-3,
.color6-4,
.color6-5 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:14px;
}

}

/* ===============================
   TABLET / SMALL SCREEN (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:80px 20px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    align-items:center;
    gap: 20px;
}

.guide-line p{
    font-size:18px;
    text-align:center;
    width: 25%;
}

/* TABS */
.guide-tabs{
    width:100%;
    text-align: right;
    font-size:14px;
    gap:10px;
}

.guide-tabs span{
    padding-left:8px;
}

/* GUIDE1 BLOCK */
.guide1{
    width:100%;
    height:auto;
    flex-direction:column;
    gap:50px;
}

/* TITLE ROW */
.manrope{
    width:100%;
    align-items:center;
    padding-top:50px;
    gap:20px;
}

.manrope h1{
    font-size:50px;
    text-align:center;
}

.manrope-3{
    font-size:16px;
}

/* COLOR SECTION */
.guide-color,
.guide-color2{
    width:100%;
    height:auto;
    padding-top:20px;
}

/* 3-COLUMN GRID → 1 or 2 columns */
.guide-color1,
.guide-color2{
  width: 100%;
    display:grid;
    grid-template-columns:1fr;
    gap:15px;
}

/* COLOR CARDS */
.color1,
.color2,
.color3 {
    width: 100%;
    height:auto;
    padding:15px;
}

.color4,
.color5,
.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:auto;
    padding:15px;
}

/* CARD TEXT */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2 p,
.color6-3 p,
.color6-4 p,
.color6-5 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:12px;
}

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

/* MAIN SECTION */
.guide{
    width:100%;
    height: 1450px;
    padding:60px 16px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    gap:12px;
}

.guide-line p{
    font-size:18px;
}

/* TABS */
.guide-tabs{
    width:100%;
    font-size:14px;
    text-align: center;
}

/* TITLE AREA */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    padding-top:60px;
    flex-direction:column;
    gap:20px;
    margin-bottom: 50px;
}

.manrope h1{
    font-size:42px;
}

.manrope-3{
    font-size:14px;
    text-align:left;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* GRIDS → SINGLE COLUMN */
.guide-color1,
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
}

/* COLOR BOXES */
.color1,
.color2,
.color3,
.color4,
.color5{
    width:100%;
    height:auto;
    border-radius:16px;
}

/* COLOR6 GROUP */
.color6{
    width:100%;
    height:auto;
    grid-template-columns:1fr;
}

.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:120px;
    border-radius:12px;
}

/* TEXT */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2 p,
.color6-3 p,
.color6-4 p,
.color6-5 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:13px;
}

}


/* ===============================
   MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 16px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    gap:12px;
}

.guide-line p{
    font-size:18px;
}

/* TABS */
.guide-tabs{
    width:100%;
    font-size:14px;
    text-align: center;
}

/* TITLE AREA */
.guide1{
    width:100%;
    height:auto;
}

.manrope{
    width:100%;
    padding-top:60px;
    flex-direction:column;
    gap:20px;
    margin-bottom: 50px;
}

.manrope h1{
    font-size:42px;
}

.manrope-3{
    font-size:14px;
    text-align:left;
}

/* COLOR SECTION */
.guide-color{
    width:100%;
    height:auto;
}

/* GRIDS → SINGLE COLUMN */
.guide-color1,
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
}

/* COLOR BOXES */
.color1,
.color2,
.color3,
.color4,
.color5{
    width:100%;
    height:auto;
    border-radius:16px;
}

/* COLOR6 GROUP */
.color6{
    width:100%;
    height:auto;
    grid-template-columns:1fr;
}

.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:120px;
    border-radius:12px;
}

/* TEXT */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2 p,
.color6-3 p,
.color6-4 p,
.color6-5 p{
    font-size:16px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:13px;
}

}

/* ===============================
   MOBILE (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

/* SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 16px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    flex-direction:column;
    gap:15px;
}

.guide-line p{
  width: 100%;
    font-size:18px;
}

/* TABS */
.guide-tabs{
    font-size:14px;
    text-align: center;
}

/* TITLE AREA */
.manrope{
    width:100%;
    padding-top:60px;
    flex-direction:column;
    gap:20px;
}

.manrope h2{
    font-size: 16px;
}

.manrope-3{
    text-align:left;
    font-size:14px;
}

/* COLOR WRAPPER */
.guide-color{
    width:100%;
    height:auto;
}

/* GRID ROWS */
.guide-color1,
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
}

/* ALL COLOR CARDS */
.color1,
.color2,
.color3,
.color4,
.color5{
    width:100%;
    height:auto;
    border-radius:14px;
}

/* COLOR 6 GROUP */
.color6{
    width:100%;
    grid-template-columns:1fr;
}

.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:120px;
    border-radius:12px;
}

/* TEXT */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2,
.color6-3,
.color6-4,
.color6-5 p{
    font-size:14px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:12px;
}

}

/* ===============================
   EXTRA SMALL DEVICES (max-width:320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px){

/* MAIN SECTION */
.guide{
    width:100%;
    height:auto;
    padding:60px 16px;
}

/* TOP LINE */
.guide-line{
    width:100%;
    flex-direction:column;
    gap:15px;
}

.guide-line p{
    width: 100%;
    font-size:16px;
}

/* TABS */
.guide-tabs{
    width:100%;
    font-size:14px;
}

/* CONTENT */
.guide1{
    width:104%;
    height:auto;
}

/* TITLE AREA */
.manrope{
    width:100%;
    flex-direction:column;
    padding-top:50px;
    gap:20px;
}

.manrope h1{
    font-size:36px;
}

.manrope-3{
    font-size:14px;
    text-align:left;
}

/* COLOR CONTAINER */
.guide-color{
    width:100%;
    height:auto;
}

/* ALL GRIDS → SINGLE COLUMN */
.guide-color1,
.guide-color2{
    width:100%;
    grid-template-columns:1fr;
    gap:16px;
}

/* ALL COLOR BOXES */
.color1,
.color2,
.color3,
.color4,
.color5{
    width:100%;
    height: auto;
    border-radius:14px;
}

/* COLOR 6 WRAPPER */
.color6{
    width:100%;
    grid-template-columns:1fr;
    border-radius: 0;
}

/* COLOR 6 ITEMS */
.color6-1,
.color6-2,
.color6-3,
.color6-4,
.color6-5{
    width:100%;
    height:120px;
    border-radius:12px;
}

/* TEXT INSIDE COLORS */
.color1 p,
.color2 p,
.color3 p,
.color4 p,
.color5 p,
.color6-1 p,
.color6-2,
.color6-3,
.color6-4,
.color6-5 p{
    font-size:14px;
}

.color1 span,
.color2 span,
.color3 span,
.color4 span,
.color5 span,
.color6-1 span,
.color6-2 span,
.color6-3 span,
.color6-4 span,
.color6-5 span{
    font-size:12px;
}

}









/* ========================================
   trainer-logo SECTION
   ======================================== */
.trainer-logo {
    width: 1520px;
    height: 2180px;
    margin: auto;
    padding-top: 160px;
}

.trainer-line1 {
    width: 1520px;
    height: 650px;
    border-radius: 16px;
    background-color: #000;

    display: flex;
    justify-content: center;
    align-items: center;
}

.trainer-line1 img{
    width: 780px;
    height: 300px;
}

.trainer-line2 {
    width: 1520px;
    height: 512px;
    gap: 20px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.line-logo1 img{
    width: 512px;
    height: 512px;
    border-radius: 17px;
}

.line-logo2 img{
    width: 988px;
    height: 512px;
    border-radius: 16px;
}


.trainer-line3 {
    width: 1520px;
    height: 642px;
    gap: 20px;
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.line-logo3 img {
    width: 963px;
    height: 642px;
    border-radius: 17px;
}

.line-logo4 img{
    width: 537px;
    height: 462px;
    border-radius: 16px;
}

/* ===============================
   LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

  /* MAIN SECTION */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding: 87px;
    margin: auto;
  }

  /* LINE 1 */
  .trainer-line1 {
    width: 100%;
    height: auto;
    padding: 60px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .trainer-line1 img {
    width: 650px;
    height: auto;
  }

  /* LINE 2 GRID */
  .trainer-line2 {
    width: 100%;
    height: auto;
    gap: 15px;
    padding-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .line-logo1 img {
    width: 420px;
    height: auto;
    border-radius: 17px;
  }

  .line-logo2 img {
    width: 800px;
    height: auto;
    border-radius: 16px;
  }

  /* LINE 3 GRID */
  .trainer-line3 {
    width: 100%;
    height: auto;
    gap: 15px;
    padding-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .line-logo3 img {
    width: 800px;
    height: auto;
    border-radius: 17px;
  }

  .line-logo4 img {
    width: 450px;
    height: auto;
    border-radius: 16px;
  }

}

/* ===============================
   MEDIUM SCREEN (max-width:1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

  /* MAIN CONTAINER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding: 30px;
    margin: auto;
  }

  /* LINE 1 */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 16px;
  }

  .trainer-line1 img {
    width: 600px;
    height: auto;
  }

  /* LINE 2 */
  .trainer-line2 {
    width: 100%;
    height: auto;
    padding-top: 20px;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .line-logo1 img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

  .line-logo2 img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  /* LINE 3 */
  .trainer-line3 {
    width: 100%;
    height: auto;
    padding-top: 30px;
    gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .line-logo3 img {
    width: 100%;
    max-width: 700px;
    height: auto;
  }

  .line-logo4 img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }

}

/* ===============================
   TABLET SCREEN (max-width:1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

  /* MAIN WRAPPER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  /* LINE 1 - CENTER IMAGE */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 70px;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 - GRID 2 COLUMN → STACK */
  .trainer-line2 {
    width: 100%;
    display: flex;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 - GRID 2 COLUMN → STACK */
  .trainer-line3 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/* ===============================
   TABLET / MOBILE (max-width: 768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

  /* MAIN WRAPPER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  /* LINE 1 - CENTER IMAGE */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 70px;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 - GRID 2 COLUMN → STACK */
  .trainer-line2 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 - GRID 2 COLUMN → STACK */
  .trainer-line3 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

    /* MAIN WRAPPER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding: 30px;
  }

  /* LINE 1 - CENTER IMAGE */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 70px;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 - GRID 2 COLUMN → STACK */
  .trainer-line2 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 - GRID 2 COLUMN → STACK */
  .trainer-line3 {
    width: 100%;
    height: auto;
    display: flex;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

}

/* ===============================
   MOBILE SCREEN (max-width: 425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

  /* MAIN CONTAINER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding-top: 80px;
  }

  /* LINE 1 */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 30px;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 */
  .trainer-line2 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 15px;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 */
  .trainer-line3 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    padding-top: 15px;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

}

/* ===============================
   MOBILE SMALL (max-width: 375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px) {

  /* MAIN WRAPPER */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding-top: 60px;
  }

  /* LINE 1 - CENTER LOGO */
  .trainer-line1 {
    width: 100%;
    height: auto;
    padding: 30px;
    border-radius: 10px;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 - 2 COLUMNS → STACK */
  .trainer-line2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 - 2 COLUMNS → STACK */
  .trainer-line3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

}

/* ===============================
   SMALL MOBILE (max-width: 320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

  /* MAIN SECTION */
  .trainer-logo {
    width: 100%;
    height: auto;
    padding-top: 60px;
  }

  /* LINE 1 */
  .trainer-line1 {
    width: 100%;
    height: auto;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .trainer-line1 img {
    width: 90%;
    height: auto;
  }

  /* LINE 2 */
  .trainer-line2 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
  }

  .line-logo1 img,
  .line-logo2 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* LINE 3 */
  .trainer-line3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 15px;
  }

  .line-logo3 img,
  .line-logo4 img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

}







/* ========================================
    our-work SECTION
   ======================================== */

.our-work{
    width: 1920px;
    min-height: 1366px;

    background-image:url("../Assets/trainer/trainer53.webp");
    background-size:cover;
    background-position:center;
    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;
}

/* DARK OVERLAY */
.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.55);
}

/* WHITE CARD */
.work-box{
    position:relative;
    background:#fff;
    width: 1200px;
    height: 270px;
    top: 380px;
    padding: 60px 80px;
    text-align:center;
    box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

/* HEADING */
.work-box h2{
    font-size:26px;
    font-weight:600;
    margin-bottom:20px;
    color:#111;
}

/* PARAGRAPH */
.work-box p{
    font-family: Inter Display;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    color:#1A1A1A;
    margin-bottom:35px;
}

/* BUTTON AREA */
.buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* OUTLINE BUTTON */
.btn-outline{
    padding:12px 26px;
    border:1px solid #ccc;
    background:transparent;
    border-radius:8px;
    cursor:pointer;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #1C1C1C;
}

/* FILLED BUTTON */
.btn-fill{
    padding:12px 26px;
    background:#3b5cff;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-family: JUST Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 18px;
    line-height: 135%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
}

/* HOVER */
.btn-outline:hover{
    background:#c2c0c0;
}

.btn-fill:hover{
    background:#0022e2;
}

/* ===============================
   OUR WORK - LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

  /* SECTION */
  .our-work{
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* OVERLAY */
  .overlay{
    width: 100%;
    height: 100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 1000px;
    max-width: 90%;
    height: auto;
    top: 475px;
    padding: 50px 60px;
    text-align: center;
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
  }

  /* HEADING */
  .work-box h2{
    font-size: 24px;
    margin-bottom: 18px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 30px;
  }

  /* BUTTONS */
  .buttons{
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn-outline,
  .btn-fill{
    padding: 10px 22px;
    font-size: 14px;
  }

}

/* ===============================
   LARGE SCREEN (max-width:1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

  /* MAIN SECTION */
  .our-work{
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .overlay {
    width: 100%;
    height: 100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 90%;
    max-width: 1024px;
    height: auto;
    top: 480px;
    padding: 40px 30px;
  }

  /* HEADING */
  .work-box h2{
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  /* BUTTONS */
  .buttons{
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline,
  .btn-fill{
    padding: 10px 20px;
    font-size: 14px;
  }

}

/* ===============================
   TABLET SCREEN (max-width:1024px)
================================ */
/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px){

  /* MAIN SECTION */
  .our-work{
    width: 100%;
    min-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* OVERLAY */
  .overlay{
    height: 100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 90%;
    max-width: 800px;
    height: auto;
    top: 260px; 
    padding: 40px 50px;
    box-shadow:0 8px 30px rgba(0,0,0,0.35);
  }

  /* HEADING */
  .work-box h2{
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  /* BUTTONS */
  .buttons{
    flex-direction: column; /* stack buttons */
    gap: 15px;
  }

  .btn-outline,
  .btn-fill{
    padding: 10px 20px;
    font-size: 14px;
  }

}

/* ===============================
   TABLET / MOBILE (max-width: 768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

  /* MAIN SECTION */
  .our-work{
    width: 100%;
    min-height: 1000px; /* Reduce height */
    background-size: cover;
    background-position: center;
    flex-direction: column;
    padding: 20px 0;
  }

  /* OVERLAY */
  .overlay{
    height: 100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 90%;
    max-width: 350px;
    height: auto;
    top: 250px;
    padding: 30px 20px;
    text-align: center;
  }

  /* HEADING */
  .work-box h2{
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  /* BUTTON AREA */
  .buttons{
    flex-direction: column;
    gap: 15px;
  }

  /* BUTTONS */
  .btn-outline,
  .btn-fill{
    width: 100%;
    padding: 12px 0;
  }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  /* MAIN SECTION */
  .our-work{
    width: 100%;
    min-height: 1000px; /* Reduce height */
    background-size: cover;
    background-position: center;
    flex-direction: column;
    padding: 20px 0;
  }

  /* OVERLAY */
  .overlay{
    height: 100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 90%;
    max-width: 350px;
    height: auto;
    top: 250px;
    padding: 30px 20px;
    text-align: center;
  }

  /* HEADING */
  .work-box h2{
    font-size: 22px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 25px;
  }

  /* BUTTON AREA */
  .buttons{
    flex-direction: column;
    gap: 15px;
  }

  /* BUTTONS */
  .btn-outline,
  .btn-fill{
    width: 100%;
    padding: 12px 0;
  }

}

/* ===============================
   SMALL MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px){

  /* MAIN SECTION */
  .our-work {
    width: 100%;
    min-height: 277px;
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
  }

  /* OVERLAY */
  .overlay {
    height: 100%;
  }

  /* WHITE CARD */
  .work-box {
    width: 90%;
    height: auto;
    top: 35px;
    padding: 30px 20px;
  }

  /* HEADING */
  .work-box h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* BUTTONS */
  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline,
  .btn-fill {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

}

/* ===============================
   MOBILE SCREEN (max-width: 375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px){

  /* MAIN SECTION */
  .our-work{
    width:100%;
    min-height: auto;
    padding: 40px 0;
    flex-direction: column;
  }

  /* OVERLAY */
  .overlay{
    width:100%;
    height:100%;
  }

  /* WHITE CARD */
  .work-box{
    width: 90%;
    max-width: 340px;
    height: auto;
    top: -1px;
    padding: 30px 20px;
    text-align:center;
  }

  /* HEADING */
  .work-box h2{
    font-size:20px;
    margin-bottom:15px;
  }

  /* PARAGRAPH */
  .work-box p{
    font-size:14px;
    line-height:1.4;
    margin-bottom:20px;
  }

  /* BUTTON AREA */
  .buttons{
    flex-direction: column;
    gap:12px;
  }

  /* BUTTONS */
  .btn-outline,
  .btn-fill{
    width:100%;
    padding:10px 0;
    font-size:14px;
  }

}

/* ===============================
   SMALL MOBILE (max-width: 320px)
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px) {

  /* MAIN SECTION */
  .our-work {
    width: 100%;
    min-height: auto;
    padding: 20px 10px;
    background-size: cover;
    background-position: center;
  }

  /* OVERLAY */
  .overlay {
    background: rgba(0,0,0,0.55);
  }

  /* WHITE CARD */
  .work-box {
    width: 95%;
    height: auto;
    top: auto;
    padding: 30px 20px;
  }

  /* HEADING */
  .work-box h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  /* PARAGRAPH */
  .work-box p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
  }

  /* BUTTONS */
  .buttons {
    flex-direction: column;
    gap: 15px;
  }

  .btn-outline,
  .btn-fill {
    padding: 10px 20px;
    font-size: 14px;
    width: 100%;
  }

  /* BUTTON HOVER (optional, stays same) */
  .btn-outline:hover {
    background: #f2f2f2;
  }

  .btn-fill:hover {
    background: #2f4ae0;
  }

}








/* ========================================
    other-work SECTION
   ========================================  */
.work-section{
    width: 1620px;
    height: 877px;
    padding-top: 160px;
    margin: 0 auto;
}

.work-section h2{
    width: 245px;
    height: 47px;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    color: #262626;
}

.work-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
padding-top: 60px;
}

/* CARD */
.work-card{
    width: 512px;
    height: 560px;
    gap: 18px;
    text-align:left;
}

/* IMAGE AREA */
.image-box{
  position:relative;
  width: 512px;
  height: 405px;
  background-image: url(../Assets/trainer/trainer54.webp);
  border-radius:40px;
  overflow:hidden;
}

.image-box:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

.image-box.blue{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/trainer56.webp);
    border-radius:40px;
    overflow:hidden;
}

.image-box.purple{
    position:relative;
    width: 512px;
    height: 405px;
    background-image: url(../Assets/trainer/trainer58.webp);
    border-radius:40px;
    overflow:hidden;
}

/* MOBILE IMAGES */
.mobile{
position:absolute;
bottom:-10px;
width:130px;
filter:drop-shadow(0px 8px 20px rgba(0,0,0,0.25));
}

/* FIRST PHONE */
.img1{
left:35%;
z-index:2;
}

/* SECOND PHONE */
.img2{
left:55%;
z-index:1;
transform:scale(0.95);
}

.image-box .img1{
    width: 166px;
    height: 342px;
    left: 73px;
    top: 167px;
}

.image-box .img2{
    width: 208px;
    height: 427px;
    left: 233px;
    top: 104px;
}

.image-box.blue .mobile-img3{
    width: 185px;
    height: 382px;
    position: absolute;
    left: 91px;
    top: 104px;
}

/* Second Mobile */
.image-box.blue .mobile-img4{
    width: 179px;
    height: 369px;
    position: absolute;
    left: 241px;
    top: 155px;
}

.image-box.purple .mobile-img5{
    width: 145px;
    height: 299px;
    position: absolute;
    left: 22px;
    top: 174px;
}

/* Second Mobile */
.image-box.purple .mobile-img6{
    width: 509px;
    height: 289px;
    position: absolute;
    left: 2px;
    top: 104px;
}

/* TEXT */
.work-card h4{
  font-family: JUST Sans;
  font-weight: 400;
  font-style: Regular;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: uppercase;
    color: #4D4D4D;
  padding-top: 20px;
}

.work-card p{
  font-family: JUST Sans;
  font-weight: 500;
  font-style: Medium;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0%;
  text-transform: capitalize;
  color: #262626;
  padding-top: 20px;
}

/* ===============================
   WORK SECTION - LARGE SCREEN (max-width:1440px)
================================ */
/* Large Desktop (1440px - 1919px) */
@media screen and (min-width: 1440px) and (max-width: 1919px){

  /* SECTION */
  .work-section {
    width: 100%;
    padding: 100px 20px;
    height: auto;
    margin: 0 auto;
  }

  /* HEADING */
  .work-section h2 {
    font-size: 32px;
    width: 100%;
    height: auto;
  }

  /* GRID */
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    max-width: 460px;
    height: auto;
    gap: 15px;
    text-align: left;
  }

  .image-box{
    max-width: 440px;
  }

  .image-box .img1{
    width: 135px;
    height: 270px;
    left: 78px;
    top: 200px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 208px;
    top: 167px; 
  }

  .image-box.blue .mobile-img3 {
    width: 185px;
    height: 382px;
    position: absolute;
    left: 67px;
    top: 104px;
  }

  .image-box.blue .mobile-img4 {
    width: 179px;
    height: 369px;
    position: absolute;
    left: 226px;
    top: 155px;
  }

  .image-box.purple .mobile-img6 {
    width: 450px;
    height: 255px;
    position: absolute;
    left: 2px;
    top: 147px;
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 22px;
    padding-top: 15px;
  }
}

/* ===============================
   WORK SECTION - MEDIUM SCREEN (max-width:1200px)
================================ */
/* Desktop (1200px - 1439px) */
@media screen and (min-width: 1200px) and (max-width: 1439px){

  /* SECTION */
  .work-section {
    width: 95%;
    height: 680px;
    padding-top: 120px;
    margin: 0 auto;
  }

  .work-section h2 {
    font-size: 32px;
    width: 100%;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: center;
    align-content: center;
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    height: auto;
    text-align: left;
    gap: 15px;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 45px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 175px;
    top: 60px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 145px;
    height: 270px;
    left: 55px;
    top: 60px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 180px;
    top: 95px; 
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 120px;
  }

  .image-box.purple .mobile-img6 {
     width: 353px;
    height: 270px;
    left: 20px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 20px;
    padding-top: 15px;
  }

}

/* Tablet Large (992px - 1199px) */
@media screen and (min-width: 992px) and (max-width: 1199px) {

  
  /* SECTION */
  .work-section {
    width: 95%;
    height: 1100px;
    padding-top: 120px;
    margin: 0 auto;
  }

  .work-section h2 {
    font-size: 32px;
    width: 100%;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr ;
    justify-content: center;
    align-content: center;
    gap: 30px;
    padding-top: 50px;
  }

  /* CARD */
  .work-card {
    width: 100%;
    height: auto;
    text-align: left;
    gap: 15px;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 45px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 175px;
    top: 60px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 145px;
    height: 270px;
    left: 55px;
    top: 60px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 180px;
    top: 95px; 
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 120px;
  }

  .image-box.purple .mobile-img6 {
     width: 353px;
    height: 270px;
    left: 20px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 18px;
    padding-top: 15px;
  }

  .work-card p {
    font-size: 20px;
    padding-top: 15px;
  }

}

/* ===============================
   WORK SECTION - TABLET/MOBILE (max-width:768px)
================================ */
/* Tablet (768px - 991px) */
@media screen and (min-width: 768px) and (max-width: 991px){

  /* MAIN SECTION */
  .work-section{
    width: 90%;
    height: 1020px;
    padding-top: 80px;
    margin: 0 auto;
    min-height: auto;
  }

  .work-section h2{
    width: 100%;
    font-size: 28px;
    text-align: center;
  }

  /* GRID LAYOUT */
  .work-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 100%;
    height: auto;
    gap: 12px;
    text-align: center;
  }

  /* IMAGE AREA */
  .image-box{
    width: 330px; 
    height: 280px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 45px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 175px;
    top: 60px; 
  }

  .image-box.blue {
    width: 330px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 145px;
    height: 270px;
    left: 55px;
    top: 60px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 180px;
    top: 95px; 
  }

  .image-box.purple  {
    width: 330px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 120px;
  }

  .image-box.purple .mobile-img6 {
     width: 320px;
    height: 209px;
    left: 20px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 15px;
  }

  .work-card p{
    font-size: 20px;
    padding-top: 15px;
  }

}

/* Mobile Large (600px - 767px) */
@media screen and (max-width: 767px) {

  /* MAIN SECTION */
  .work-section{
    width: 100%;
    height: 1320px;
    padding-top: 80px;
  }

  .work-section h2{
    width: 90%;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* GRID STACKED */
  .work-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 90%;
    margin: 0 auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin: auto;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 45px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 175px;
    top: 60px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 145px;
    height: 270px;
    left: 55px;
    top: 60px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 180px;
    top: 95px; 
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 120px;
  }

  .image-box.purple .mobile-img6 {
     width: 353px;
    height: 270px;
    left: 20px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 12px;
  }

  .work-card p{
    font-size: 18px;
    padding-top: 12px;
  }

}

/* ===============================
   WORK SECTION - MOBILE (max-width:425px)
================================ */
/* Mobile Medium (480px - 599px) */
@media screen and (max-width: 599px) {

  /* MAIN SECTION */
  .work-section{
    width: 100%;
    height: 1320px;
    padding-top: 80px;
  }

  .work-section h2{
    width: 90%;
    font-size: 24px;
    text-align: center;
    margin: 0 auto;
    line-height: 1.2;
  }

  /* GRID STACKED */
  .work-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card{
    width: 90%;
    margin: 0 auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  /* IMAGE AREA */
  .image-box{
    width: 380px; 
    height: 280px;
    background-size: cover;
    margin: auto;
  }
  
 .image-box .img1{
    width: 135px;
    height: 270px;
    left: 45px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 144px;
    height: 270px;
    left: 175px;
    top: 60px; 
  }

  .image-box.blue {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 145px;
    height: 270px;
    left: 55px;
    top: 60px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 180px;
    top: 95px; 
  }

  .image-box.purple  {
    width: 380px; 
    height: 280px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 120px;
  }

  .image-box.purple .mobile-img6 {
     width: 353px;
    height: 270px;
    left: 20px;
    top: 70px; 
  }

  /* TEXT */
  .work-card h4{
    font-size: 16px;
    padding-top: 12px;
  }

  .work-card p{
    font-size: 18px;
    padding-top: 12px;
  }

}

/* ===============================
   WORK SECTION - SMALL MOBILE (max-width:375px)
================================ */
/* Mobile Small (375px - 479px) */
@media screen and (max-width: 479px)  {

  /* SECTION */
  .work-section {
    width: 100%;
    padding-top: 80px;
    height: 1360px;
    margin: 0 auto;
  }

  .work-section h2 {
    width: 100%;
    font-size: 24px;
    line-height: 1.2;
    text-align: center;
  }

  /* GRID */
  .work-grid {
    display: grid;
    grid-template-columns: 1fr; /* 1 column */
    gap: 30px;
    padding-top: 40px;
  }

  /* CARD */
  .work-card {
    width: 90%;
    margin: auto;
    height: auto;
    gap: 12px;
    text-align: center;
    padding: 0;
  }

  .image-box{
    width: 340px; 
    height: 270px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 140px;
    height: 270px;
    left: 40px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 140px;
    height: 270px;
    left: 174px;
    top: 60px; 
  }

  .image-box.blue {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 135px;
    height: 270px;
    left: 20px;
    top: 50px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 130px;
    height: 270px;
    left: 140px;
    top: 80px; 
  }

  .image-box.purple  {
    width: 340px; 
    height: 270px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
     width: 120px;
    height: 270px;
    left: 20px;
    top: 100px;
  }

  .image-box.purple .mobile-img6 {
     width: 320px;
    height: 270px;
    left: 20px;
    top: 60px; 
  }

  /* TEXT */
  .work-card h4 {
    font-size: 16px;
    padding-top: 10px;
  }

  .work-card p {
    font-size: 18px;
    padding-top: 10px;
  }

}

/* ===============================
   WORK SECTION - MOBILE 320px
================================ */
/* Mobile Extra Small (below 375px) */
@media screen and (max-width: 374px)  {

  .work-section {
    height: 1200px;
    padding-top: 60px;
    padding-left: 10px;
    padding-right: 10px;
    background-size: cover;
    background-position: center;
  }

  /* Phones stack vertically */
  .work-phones {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
  }

  .work-phones img {
    max-width: 180px;  /* smaller phones */
    height: auto;
    transform: translateY(0);
  }

 .image-box{
    width: 280px; 
    height: 220px;
    background-size: cover;
  }
  
 .image-box .img1{
    width: 120px;
    height: 270px;
    left: 20px;
    top: 95px; 
  }
  
  .image-box .img2{
    width: 115px;
    height: 270px;
    left: 134px;
    top: 60px; 
  }

  .image-box.blue {
    width: 280px; 
    height: 220px;
    background-size: cover;
  }

  .image-box.blue .mobile-img3 {
    width: 120px;
    height: 270px;
    left: 20px;
    top: 35px; 
  }
  
  .image-box.blue .mobile-img4{
    width: 115px;
    height: 270px;
    left: 124px;
    top: 67px; 
  }

  .image-box.purple  {
    width: 280px; 
    height: 220px;
    background-size: cover;
  }

  .image-box.purple .mobile-img5 {
     width: 120px;
    height: 270px;
    left: 20px;
    top: 100px;
  }

  .image-box.purple .mobile-img6 {
     width: 275px;
    height: 270px;
    left: 20px;
    top: 35px; 
  }

  /* Text below phones */
  .work-section .work-text {
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
  }

  .work-section .work-text h4 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .work-section .work-text p {
    font-size: 18px;
    line-height: 1.4;
  }

  /* Optional: adjust overlay opacity if used */
  .work-overlay {
    background: rgba(0,0,0,0.1);
  }
}




