*{
  margin: 0%;
  padding: 0%;
  list-style: none;
  text-decoration: none;
  box-sizing:border-box;
  font-family: 'Poppins', sans-serif;
}

a{
  color: black;
}


:root {
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FDBA74;

  --secondary: #10B981;
  --secondary-dark: #059669;
  --secondary-light: #6EE7B7;

  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --text-muted: #9CA3AF;

  --bg-main: #F9FAFB;
  --bg-section: #FFFFFF;
  --bg-soft: #FFF7ED;

  --card-bg: #FFFFFF;
  --border: #E5E7EB;
  --shadow: rgba(0, 0, 0, 0.05);

  --rating: #F59E0B;
  --info: #3B82F6;
}

/* ================= HEADER ================= */

header{
  position: fixed;
  top: 0%;
  width: 100%;
  display: flex;
  height: 60px;
  justify-content: space-between;
  align-items: center;
  /* border-bottom: solid 1px #F97316; */
  z-index: 1000;
  backdrop-filter: blur(18px);
}

.logo{
  /* font-size: 24px; */
  font-weight: 900;
}

.logo>span{
  color: #ff7c3c;
  font-weight: 900;
}

nav{
  display: flex;
  justify-content: space-between;
  text-align: center;
  width: 95%;
  max-width: 1200px;
  margin: 0% auto;
  align-items: center;
}

.link-nav li a{
  text-decoration:none;
  color:#222;
  font-weight: 500;
  transition:0.3s;
}

.link-nav li{
  position: relative;
}

/*Hover-efe*/
/* 
nav ul li a::after{
  content:"";
  position:absolute;
  width:0%;
  height:2px;
  left:0;
  bottom:-5px;
  background:#ff6b2c;
  transition:0.4s;
} 

nav ul li a:hover::after{
  width:100%;
}
*/

nav ul li a::before {
  content: "";
  position: absolute;
  height: 2px;
  top: -5px;
  right: 0;
  background: var(--primary);
  transition: .5s;
  width: 0%;
}
nav ul li a::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: .5s;
  width: 0%;
}

/*hover-bfo,aft*/

nav ul li a:hover{
  color: var(--primary);
}

nav ul li a:hover::before {
  width: 100%;
  transition: .5s;
}
nav ul li a:hover::after {
  width: 100%;
  transition: .5s;
}

/*hover-bfo,aft*/

/*Hover-efe*/
.link-flex-container{
  display: flex;
}

.link-flex-container>ul{
  display: flex;
  gap: 28px;
  align-items: center;
}

.link-flex-container>ul a{
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  margin:0 5px;
}

/*dropdown*/

/* .dropdown{
  display: inline-block; 
} */

.dropdown-menu{
  position:absolute;
  top:32px;
  left: 5px;
  padding:15px 8px;
  margin: 5px 8px;
  background: #E5E7EB;
  width:150px;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  opacity:0;
  visibility: hidden;
  transform:translateY(10px);
  backdrop-filter: blur(18px);
  transition:.5s;
  z-index: 1001;
  border: solid 1px var(--primary-light);
}

.dropdown-menu li{
  padding:8px 3px;
  margin: 0 20px;
}

.dropdown-menu li a{
  color:#333;
}
.anchor-arrow-svg>.arrow-svg{
  transform: rotate(180deg);
  margin-left: 3px; 
  margin-bottom: -2px;
  transition: .5s;
}
.anchor-arrow-svg:hover>.arrow-svg{
  transform: rotate(0);
  transition: .5s;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility: visible;
  transform:translateY(0);
  transition: .5s;
}

/*dropdown*/

.header-btn {
  display: flex;
  gap: 20px;
  align-items: center;
}
.header-btn a{
  color: #ffffff;
  font-size: 15px;
}
.svg-anchor{
  margin-top: 3px;
  padding: 8px 6px;
  border-radius: 100%;
  background: #fe7234;
  display: flex;
  justify-content: center;
  transition: .2s;
}

.svg-anchor:hover{
  background: #f84d03;
  transition: .2s;
}

/* .Join{
  height: 40px;
  display: flex;
  width: 90px;
  justify-content: center;
  align-items: center;
  background: #0f0f0f ;
  border-radius: 30px;
  border: none;
  color: #fff7f7;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.Join::before{
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0%;
  height: 100%;
  border-radius: 30px;
  width: 0%;
  transition: .5s;

}
.Join:hover::before{
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0%;
  height: 100%;
  border-radius: 30px;
  width: 101%;
  transition: .5s;
  z-index: 1;
}  */
/* .Join{
  height: 40px;
  display: flex;
  width: 90px;
  justify-content: center;
  align-items: center;
  background: #0f0f0f ;
  border-radius: 30px;
  border: none;
  color: #fff7f7;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.Join::before{
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0%;
  height: 100%;
  border-radius: 30px;
  width: 0%;
  transition: .5s;

}
.Join:hover::before{
  content: "";
  position: absolute;
  background: var(--primary);
  left: 0%;
  height: 100%;
  border-radius: 30px;
  width: 101%;
  transition: .5s;
  z-index: 1;
}  */

.Join{
  position:relative;
  padding:9.8px 22px;
  border-radius:30px;
  text-decoration:none;
  /* color: var(--primary) !important; */
  background:#141414;
  overflow:hidden;
  display:inline-block;
  font-weight:600;
}

/* sliding-background */

.Join::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0%;
  height:100%;
  background:var(--primary);
  transition:0.5s;
  border-radius:30px;
  z-index:0;
}

/* text-above-background */

.Join span{
  position:relative;
  z-index:1;
}

/* hover-effect */

.Join:hover::before{
  transition:0.5s;
  width:100%;
}

.humberger-menu{
  display: none;
}

/*=========== header-ends-here==========*/



/*=========== hero-section-starts-here==========*/

.section-1{
  height: 100vh;
  position: relative;
  background-color: #f7eae7;
}

.blur{
  position: absolute;
  bottom: -120px;
  background: #f7eae7;
  filter: blur(18px);
  height: 150px;
  width: 100%;
  z-index: 5;
}

.heros-flex-container{
  display: flex;
  width: 90%;
  margin: 0  auto;
  padding: 70px 0 0;
  height: 100%;
}

.heros-text{
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  width:46%; 
}

.span{
  background: #f8c3b3;
  display: block;
  width: fit-content;
  color: #f55f32;
  border-radius: 17px;
  padding: 3px 8px;
  transform: rotate(-23deg);
  font-weight: bolder;
  margin-bottom: 40px;
}

.heros-text h1{
  font-size: 58px;
  font-weight: 700;
  line-height: 65px;
  color: #141414;
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.heros-text h1>span{
  color: var(--primary);
}

.heros-text p{
  color: #202020;
}

.heros-text .heros-btn{
  margin-top: 30px;
  margin-bottom: -20px;
  display: flex;
  gap: 28px;
  align-items: center;
}

.green-anchor{
  background: var(--secondary);
  padding: 11px 25px;
  color: #E5E7EB;
  border-radius: 25px;
  transition: .4s;
}

.green-anchor:hover{
  background: #089666;
  transition: .4s;
}

.green-anchor svg{
  margin-left: 5px;
  transition: .4s;
}

.green-anchor:hover svg{
  transform: translate(3px , -2px);
  transition: .3s
}

.org-anchor{
  color: #121213;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.org-anchor>div{
  background: var(--primary);
  color: #E5E7EB;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  backdrop-filter: blur(4px);
  transition:ease-in-out .5s;

}

.org-anchor::before{
  content: "";
  position: absolute;
  left: 0%;
  width: 0;
  bottom: 0%;
  top: 0%;
  height: 100%;
  background: #f97416;
  border-radius: 25px;
  transition:ease-in-out .5s;
  z-index: 1;
}

.org-anchor:hover::before{
  width: 100%;
  transition:ease-in-out .5s;
}
.org-anchor:hover{
  gap: 0px;
  color: #E5E7EB;
  transition: .5s;
  width: 180px;
}

.org-anchor p{
  z-index: 2;
  transition: .5s;
}
.org-anchor:hover p{
  margin-left: -60px;
  color: #E5E7EB;
  transition: .5s;
}

.org-anchor:hover div{
  transform: translateX(92px) rotate(360deg);
  color: #E5E7EB;
  z-index: 2;
  transition: ease-in-out .5s;
}


.heros-materials{
  position: relative;
  width: 52%;
}

.no-bg-crc-container{
  position: absolute;
  top: 120px;
  left: 100px;
}

.no-bg-circle{
  border-radius: 100%;
  border: solid 1px #f0a46e;
  padding: 35px;
  transition: .5s;
  z-index: -1;
}

/* .no-bg-circle:hover{
  transition: .5s;
  padding: 45px;
} */

.no-bg-circle-1{
  width: 350px;
  height: 350px;
}
.no-bg-circle-2{
  width: 300px;
  height: 300px;
}
.no-bg-circle-3{
  width: 250px;
  height: 250px;
}
.no-bg-circle-4{
  width: 200px;
  height: 200px;
}
.no-bg-circle-5{
  width: 150px;
  height: 150px;
}

.students-img{
  margin-top: 70px;
  margin-left: 40px;
  position: absolute;
}

.hero-mini-crcl{
  position: absolute;
  border-radius: 100%;
}

.org-mini-crcl{
  top: 100px;
  left: 50px;
  width: 20px;
  height: 20px;
  background: #f55f32;
}

.green-crcl{
  top: 40px;
  right: 180px;
  width: 30px;
  height: 30px;
  background:#059669;
}

.heros-png{
  position: absolute;
  width: 100px;
}

.heros-google-png{
  width: 60px;
  background: #f3f3f3;
  box-shadow: 0px 5px 10px #302f2f9d;
  padding: 10px 13px;
  border-radius: 10px;
  top: 160px;
  right: 30px;
  transform: rotate(-30deg);
}

.heros-fulffy-png{
  top: 200px;
  left: 50px;
}

.rectangular-shape{
  position: relative;
  z-index: 1;
}

.rectangular-shape>div{
  position: absolute;
  width: 230px;
  height: 250px;
  transform: skewX(-20deg);
  border-radius: 18px;
  overflow: hidden;
}

.rectangle-green{
  background: #076445;
  top: 300px;
  right: 60px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.8);
  z-index: 20;
}
.rectangle-org{
  height: 200px !important;
  background: #f84d03;
  top: 450px;
  right: 40px;
  z-index: 1;
}

/*=========== hero-section-ends-here ==========*/

/*---------about us--------*/

.about-us-section{
  background: #f5f7fb;
}

.about-us-container{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 35px;
  text-align: center;
  width: 80%;
  margin: 110px auto 0;
  padding: 50px;
}

.About-us-text{
  display: flex;
  justify-items: center;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}

.About-us-text>span{
  width: fit-content;
  background: var(--secondary);
  color: #f3f3f3;
  padding: 5px 18px;
  transform: rotate(335deg); 
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 20px;
}

.About-us-text h2 span{
  color: #141414;
  margin-right: 5px;
}
.About-us-text h2{
  color: #888787;
  font-weight: 600;
}

.about-us-flex{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.flex-contain{
  display: flex;
  text-align: left;
  width: 300px;
  gap: 18px;
  align-items: center;
  border-right:  solid 1px rgba(129, 128, 128, 0.925);
  padding: 0 20px;
}

.flex-contain-1{
  border: none;
}

.flex-contain .flex-contain-no {
  font-size: 50px;
  font-weight: bolder;
}
.flex-contain .flex-contain-p {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

hr{
  width: 75%;
  filter: blur(5px);
  margin: 50px auto;
  height: 1px;
}

/*---------about us--------*/

/*--------Course----------*/

.course-section{
  background: #f5f7fb;
}

.section-4-heading-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-title h2{
  color: var(--text-primary);
  font-size: 45px;
}

.course-container{
  width: 80%;
  margin: 0px auto;
}

.inline-container{
  background: #f55f32;
  display: block;
  width: fit-content;
  color: #ffffff;
  border-radius: 17px;
  padding: 3px 13px;
  transform: rotate(-20deg);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 34px;
}

.search-container{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  width: 500px;
  border-radius: 30px;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.1);
  height: 70px;
  margin-top: 35px;
  margin-right: -30px;
}

.search-container input{
  border: 0px;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  padding: 23px 23px;
  margin-left: 0px;
}

.search-container a{
  margin-left:-80px;
}
.search-container .search-icon{
  width: 50px;
  height: 50px;
  color: white;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EA580C;
  position: relative;
  right: 15px;
  border-radius: 100%;
}

/* 1. Grid Container */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  padding: 20px;
  background-color: #f8f9fa;
}

/* 2. Card Styling */
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 3. Typography & Spacing */
.card-content {
  padding: 16px;
}

.rating {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.star { color: #ffb400; }

.title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #1a1a1a;
}

/* 4. Footer Flexbox */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 12px;
}

.author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.price {
  font-weight: bold;
  color: #ff6b6b;
  font-size: 18px;
}

/*--------Course----------*/

.edu-category-wrapper {
  background-color: #fdf6f3;
  padding: 80px 20px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* Top Header Area */
.edu-section-head {
  text-align: center;
  margin-bottom: 60px;
}

.edu-badge-top {
  display: inline-block;
  background-color: #ff6b35;
  color: #ffffff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transform: rotate(-24deg);
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.2);
}
.edu-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
 line-height: 1.2;
  margin: 0;
}

/* Grid Container */
.edu-category-grid {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
/* Individual Card */
.edu-cat-card {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 35px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}
.edu-cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}
/* Background Number Effect */
.edu-card-number {
  position: absolute;
  bottom: -15px;
  right: 15px;
  font-size: 100px;
  font-weight: 900;
  color: #f7ede9; 
  line-height: 1;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.edu-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
}
.edu-cat-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px 0;
}
.edu-cat-card p {
  font-size: 14px;
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0 0 25px 0;
  max-width: 90%;
}
/* Bottom Pill/Badge */
.edu-course-count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  background-color: #fef0eb;
  color: #ff6b35;
}
/* Active Card Style */
.edu-cat-card.is-active .edu-course-count {
  background-color: #ff6b35;
  color: #ffffff;
}
.edu-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: currentColor;
}
/* Footer Button */
.edu-btn-wrap {
  margin-top: 60px;
}
.edu-btn-wrap a{
  color: white;
}
.edu-view-all {
  background-color: #111111;
  color: #ffffff;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.edu-view-all:hover {
  background-color: #000000;
}

/*Growth - skill -section*/

.ds-growth-wrapper {
  padding: 80px 20px;
  background-color: #ffffff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ds-container {
  max-width: 1140px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}
/* Left Side: Images & Visuals */
.ds-visual-column {
  flex: 1;
  min-width: 350px;
  position: relative;
  display: flex;
  justify-content: center;
}
.ds-main-image-arch {
  width: 320px;
  height: 450px;
  background: #f1e4d1;
  border-radius: 200px 200px 20px 20px;
  overflow: hidden;
  position: relative;
}.ds-main-image-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ds-float-img {
  position: absolute;
  border: 4px solid #fff;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.ds-img-top {
  width: 120px;
  height: 80px;
  top: 20px;
  right: 0;
  border-radius: 40px;
}
.ds-img-bottom {
  width: 100px;
  height: 100px;
  bottom: -20px;
  right: 40px;
}
.ds-info-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}
.ds-info-icon {
  width: 40px;
  height: 40px;
  background: #fff5f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
}
.ds-info-text span {
  display: block;
  font-size: 11px;
  color: #777;
  font-weight: 600;
}
.ds-info-text strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #1a1a1a;
}
/* Right Side: Content */
.ds-content-column {
  flex: 1;
  min-width: 350px;
}
.ds-badge-orange {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-3deg);
  margin-bottom: 25px;
}
.ds-content-column h2 {
  font-size: 44px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 30px;
}
.ds-highlight {
    color: #ff6b35;
}
.ds-description {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}
.ds-actions {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  align-items: center;
}
.ds-btn-browse {
  background-color: #1ebba3;
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
   font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}
.ds-btn-ai {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.ds-btn-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}
/* AI Modal Styles */
#ai-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(5px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.ai-modal-content {
  background: white;
  width: 100%;
  max-width: 600px;
  border-radius: 24px;
  padding: 40px;
  position: relative;
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.ai-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #999;
}
.ai-header {
  text-align: center;
  margin-bottom: 25px;
}
.ai-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}
.ai-input-group textarea {
  width: 100%;
  height: 120px;
  padding: 15px;
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  font-family: inherit;
  resize: none;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}
.ai-input-group textarea:focus {
  outline: none;
  border-color: #6366f1;
}
#ai-result {
  margin-top: 20px;
  padding: 20px;
  background: #f8faff;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
  max-height: 250px;
  overflow-y: auto;
  display: none;
}
.shimmer {
  background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
  height: 14px;
  margin-bottom: 10px;
}


.tm-wrapper {
  padding: 100px 20px;
  background-color: #fdf6f3; /* Matching the light background from previous sections*/
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Top Header Section */
.tm-header {
  text-align: center;
  margin-bottom: 50px;
}
.tm-badge {
  display: inline-block;
  background-color: #ff6b35;
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  transform: rotate(-4deg);
  margin-bottom: 20px;
  text-transform: capitalize;
}
.tm-title {
  font-size: 40px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin: 0;
}
.tm-highlight {
  color: #ff6b35;
}
/* Main Testimonial Card */
.tm-card {
  background-color: #ffffff;
  width: 100%;
  max-width: 900px;
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
  z-index: 2;
}
/* Decorative World Map Background */
.tm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://www.transparenttextures.com/patterns/world-mappng'); /* Faint map pattern */
  opacity: 0.05;
  pointer-events: none;
  z-index: -1;
}
.tm-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
}
.tm-logo-icon {
    background-color: #111;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
}
.tm-logo-text {
    font-weight: 700;
    font-size: 22px;
    color: #1a1a1a;
}
.tm-quote {
    font-size: 22px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto 40px;
}
.tm-user-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.tm-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.tm-name {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a1a;
}
.tm-role {
    font-weight: 400;
    color: #777;
}
/* Decorative Background Elements */
.tm-green-dot {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 35px;
    height: 35px;
    background-color: #1ebba3;
    border-radius: 50%;
    z-index: 1;
}
.tm-circles {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    z-index: 0;
}
.tm-circles::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 50%;
}

/* footeer */

.ds-f-wrapper {
    background-color: #fdf6f3; /* Light peach background from screenshot */
    padding: 80px 20px 40px 20px;
    font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
    color: #6b6b6b;
}
.ds-f-container {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 50px;
}
/* Brand Column */
.ds-f-logo {
    font-size: 28px;
    font-weight: 900;
    color: #ff6b35; /* Brand Orange */
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}
.ds-f-logo span {
    color: #1a1a1a;
    margin-left: 2px;
}
.ds-f-about {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 300px;
}
/* Social Media Icons */
.ds-f-heading {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}
.ds-f-social {
    display: flex;
    gap: 12px;
}
.ds-f-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6b6b6b;
    transition: 0.3s;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}
.ds-f-social-btn.active {
    background-color: #ff6b35;
    color: #ffffff;
}
/* Link Columns */
.ds-f-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.ds-f-list li {
    margin-bottom: 12px;
}
.ds-f-list a {
    text-decoration: none;
    color: #6b6b6b;
    font-size: 14px;
    transition: color 0.2s;
}
.ds-f-list a:hover {
    color: #ff6b35;
}
/* Contact & App Column */
.ds-f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 14px;
}
.ds-f-contact-icon {
  color: #ff6b35;
  font-size: 18px;
  flex-shrink: 0;
}
.ds-f-app-btns {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.ds-f-app-btn {
  padding: 10px 18px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: 0.3s;
}
.ds-f-btn-google {
  background-color: #ff6b35;
  color: white;
}
.ds-f-btn-apple {
  background-color: #fcece5;
  color: #ff6b35;
}
/* Payment Gateway Section */
.ds-f-payment-section {
  max-width: 1140px;
  margin: 40px auto;
}
.ds-f-payment-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}
.ds-f-payment-item {
  background: white;
  padding: 8px 15px;
  border-radius: 6px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}
.ds-f-payment-item img {
  height: 18px;
  filter: grayscale(1); 
  opacity: 0.7;
}
/* Bottom Copyright */
.ds-f-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 13px;
    color: #888;
}


/* 1. Large Tablets & Small Laptops (Max 1024px) */
@media (max-width: 1024px) {
    .container, .ds-container, .tm-card, .ds-f-container {
        max-width: 95%;
    }
    
    .edu-main-title, .ds-content-column h2, .tm-title {
        font-size: 34px !important;
    }

    .ds-f-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* 2. Tablets & Mobile Landscape (Max 768px) */
@media (max-width: 768px) {
    /* --- NAVIGATION --- */
  nav {
    padding: 15px 20px;
  }

  .link-flex-container {
    display: none; /* Hide standard nav for mobile */
  }

  .btn-flex-container {
    gap: 10px;
  }

  .header-btn-1, .header-btn-2 {
    padding: 8px 15px;
    font-size: 13px;
  }

    /* --- CATEGORIES GRID --- */
  .edu-category-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }

   /* --- GROWTH SKILL SECTION --- */
  .ds-container {
      flex-direction: column;
      text-align: center;
  }

  .ds-visual-column {
    min-width: 100%;
    margin-bottom: 40px;
  }

  .ds-main-image-arch {
    width: 280px;
    height: 380px;
  }

  .ds-info-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
    width: 260px;
    padding: 12px;
  }

  .ds-actions {
    flex-direction: column;
    gap: 10px;
  }

  .ds-btn-browse, .ds-btn-ai {
    width: 100%;
    justify-content: center;
  }

    /* --- TESTIMONIAL --- */
  .tm-card {
    padding: 30px 20px;
    border-radius: 24px;
  }

  .tm-quote {
      font-size: 16px;
  }

  .tm-green-dot, .tm-circles {
      display: none; /* Hide background clutter on mobile */
  }
}

/* 3. Small Mobile Devices (Max 480px) */
@media (max-width: 480px) {
  .edu-main-title, .ds-content-column h2, .tm-title {
    font-size: 26px !important;
  }

    /* --- FOOTER --- */
  .ds-f-container {
    grid-template-columns: 1fr; /* Stack everything */
  }

  .ds-f-app-btns {
    flex-direction: column;
  }

  .ds-f-payment-row {
    justify-content: center;
  }

  /* --- HERO/CARDS --- */
  .edu-cat-card {
    padding: 25px;
  }

  .edu-card-number {
    font-size: 70px;
    bottom: -10px;
  }

  /* AI Modal Adjustments */
  .ai-modal-content {
    padding: 25px 15px;
    width: 95%;
  }
}

