body
{
  margin:0;
  padding:0;
  background:#01ffdd;
}
.back{
  background: radial-gradient( circle farthest-corner at 8.3% 21.6%,  rgba(252,92,125,1) 13.1%, rgba(106,130,251,1) 90% ) no-repeat center center;
  background-size: 100%;
  height: 100vh;
  width: 100%;
  z-index: 100;
}
.preloader
{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:150px;
  height:150px;
  background:transparent;
  border:3px solid #3c3c3c;
  border-radius:50%;
  text-align:center;
  line-height:150px;
  font-family:sans-serif;
  font-size:20px;
  color:#ff00ff;
  letter-spacing:4px;
  text-transform:uppercase;
  text-shadow:0 0 10px #5300ee;
  box-shadow:0 0 20px rgba(0,0,0,.5);
}
.preloader:before
{
  content:'';
  position:absolute;
  top:-3px;
  left:-3px;
  width:100%;
  height:100%;
  border:3px solid transparent;
  border-right:3px solid #2f00ff;
  border-radius:50%;
  animation:animateC 2s linear infinite;
}
.pl
{
  display:block;
  position:absolute;
  top:calc(50% - 2px);
  left:50%;
  width:50%;
  height:4px;
  background:transparent;
  transform-origin:left;
  animation:animate 2s linear infinite;
}
.pl:before
{
  content:'';
  position:absolute;
  width:16px;
  height:16px;
  border-radius:50%;
  background:#ff00f2;
  top:-6px;
  right:-8px;
  box-shadow:0 0 20px #008516;
}



@keyframes animateC
{
  0%
  {
    transform:rotate(0deg);
  }
  100%
  {
    transform:rotate(360deg);
  }
}
@keyframes animate
{
  0%
  {
    transform:rotate(45deg);
  }
  100%
  {
    transform:rotate(405deg);
  }
}
:root {
    --primary: #5a00ff;
    --secondary: #00a2ff;
    --text: #e8e8e8;
    --card-bg: rgba(255,255,255,0.08);
    --border-glow: rgba(0,162,255,0.4);
    --radius: 18px;
}

/* Main Card */
.about-themed {
    width: 95%;
    max-width: 1100px;
    margin: 60px auto;
    padding: 40px 25px;
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 25px rgba(0,162,255,0.2),
                inset 0 0 10px rgba(90,0,255,0.3);
    color: var(--text);
    font-family: 'Poppins', sans-serif;
}

/* Layout Side-by-side */
.about-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

/* =========================== */
/*      OWNER PREMIUM CARD     */
/* =========================== */
.owner-card {
    width: 280px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    text-align: center;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 25px rgba(0,162,255,0.2);
    transition: 0.3s;
}

.owner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 35px rgba(0,162,255,0.4);
}

/* Circular Photo */
.owner-img-box {
    width: 180px;
    height: 180px;
    margin: auto;
    position: relative;
}

.owner-img-box img {
    width: 80%;
    height: 100%;
    border-radius: -10px;
    object-fit: cover;
    border: 4px solid rgba(0,162,255,0.5);
    box-shadow: 0 0 20px rgba(0,162,255,0.4);
    transition: 0.3s;
}

/* Neon Hover Glow on Image */
.owner-img-box img:hover {
    box-shadow: 0 0 25px rgba(90,0,255,0.7);
    transform: scale(1.05);
}

/* Name + Title */
.owner-name {
    margin-top: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #000;
}

.owner-title {
    font-size: 14px;
    margin-top: 5px;
    color: #aaccff;
}

/* =========================== */
/*         READ MORE           */
/* =========================== */
.about-text h2 {
    font-size: 32px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-full {
    display: none;
}

#readMoreBtn {
    margin-top: 20px;
    padding: 10px 26px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: white;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0,162,255,0.5);
    transition: 0.3s;
}

#readMoreBtn:hover {
    transform: scale(1.05);
}

/* =========================== */
/*      SMOOTH SCROLL FADE     */
/* =========================== */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.7s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0px);
}

/* =========================== */
/*      MOBILE RESPONSIVE      */
/* =========================== */

@media(max-width: 850px) {
    .about-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .owner-card {
        width: 90%;
    }

    .owner-img-box {
        width: 150px;
        height: 150px;
    }

    .about-text h2 {
        font-size: 28px;
    }
}



/* Neon Blue + Purple Institute Theme on White Background */
:root{
  --primary:#5B2EFF; /* neon purple */
  --secondary:#00C8FF; /* neon blue */
  --dark:#0A0A12;
  --text:#0A0A12; /* dark text for white bg */
  --glass:rgba(255,255,255,0.08);
  --card-bg:#f8f9ff;
}

*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
body{
  background:#ffffff;
  color:var(--text);
  line-height:1.5;
}

/* Navbar */
header{
  background:linear-gradient(90deg,var(--primary),var(--secondary));
  padding:18px 10px;
  position:sticky;top:0;z-index:999;
  box-shadow:0 4px 20px rgba(0,200,255,0.15);
}

.navbar {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 50px 0px 0px;
    box-shadow: 0px 0px 30px 0px white;
    backdrop-filter: blur(40px);
    transition: 0.3s;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255,255,255,1);
}

.logo {
    font-weight: bold;
    color: var(--primary);
    display: flex;
    margin-bottom: 04px;
    padding-left:20px;
    margin-left:0;
    width: 80px;
}

.shcsn{
  height: 100px;
  width: 400px;
  box-shadow: #fff;
}





.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: bold;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--secondary);
    transition: 0.3s;
}

/* Mobile */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0;
        height: 100vh;
        top: 0;
        background: #0A0A12;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        padding-top: 100px;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links.active {
        transform: translateX(0%);
    }

    .burger {
        display: flex;
    }
    .shcsn{
  height: 50px;
  width: 190px;
  padding-right: 23px;
  padding-left: -6px;
}

}

/* Hero Section */
.hero{
  animation:fadeIn 1.2s ease forwards;
  opacity:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1200px;
  margin:auto;
  padding:80px 20px;
  gap:20px;
  background-image: url(https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?q=80&w=2072&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position-y: 0px ;

}
.hero-text h1{
  font-size:46px;
  color:white;
  margin-bottom:12px;
}
.hero-text p{
  font-size:18px;
  color:white;
  margin-bottom:24px;
}

.btns{
  margin-top: 30px;
}

.btn{
  padding: 12px 22px;
  background:var(--secondary);
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 0 18px var(--secondary);
  transition:0.3s;
}
.btn:hover{
  transform:scale(1.05);
  box-shadow:0 0 25px var(--primary);
}

.hero img{
  width:420px;
  border-radius:16px;
  box-shadow:0 0 25px var(--primary);
}


/* Courses Section */
.section{
  padding:60px 24px;
  max-width:1200px;
  margin:auto;
}
.section h2{
  text-align:center;
  font-size:36px;
  margin-bottom:32px;
  color:var(--secondary);
}

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:26px;
}

.card{
  background:var(--card-bg);
  padding:18px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.05);
  transition:0.3s;
  transform-style:preserve-3d;
}
.card:hover{
  transform:rotateY(8deg) rotateX(8deg) scale(1.02);
  box-shadow:0 0 25px var(--secondary);
}
.card img{
  width:100%;
  border-radius:10px;
  margin-bottom:12px;
}
.card h4{
  margin-bottom:8px;
  color:var(--primary);
}
.card p{
  color:#555;
  font-size:15px;
  margin-bottom:10px;
}
.price{
  color:var(--secondary);
  font-weight:700;
  font-size:18px;
}
.about-section {
  padding: 60px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* IMAGE + NAME */
.about-image {
  width: 35%;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.owner-name {
  margin-top: 12px;
  font-size: 20px;
  font-weight: 700;
}

/* TEXT SIDE */
.about-content {
  width: 55%;
}

.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
}

/* ----------------------- */
/* RESPONSIVE (MOBILE)     */
/* ----------------------- */

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;        /* Mobile me column */
    text-align: center;
  }

  .about-image,
  .about-content {
    width: 60%;                   /* Mobile full width */
  }

  .about-content h2 {
    font-size: 26px;
  }

  .owner-name {
    font-size: 18px;
  }
}


/* Footer */
footer{
  background:#f0f0ff;
  padding:40px 24px;
  text-align:center;
  color:#555;
  border-top:1px solid rgba(0,0,0,0.05);
  margin-top:60px;
}

/* Animations */
.fade-in{animation:fadeIn 1.2s ease forwards;opacity:0}
.slide-up{animation:slideUp 1s ease forwards;opacity:0}
.glow{animation:glowPulse 2.5s infinite ease-in-out}

@keyframes fadeIn{0%{opacity:0;transform:translateY(20px)}100%{opacity:1;transform:translateY(0)}}
@keyframes slideUp{0%{opacity:0;transform:translateY(40px)}100%{opacity:1;transform:translateY(0)}}
@keyframes glowPulse{0%{box-shadow:0 0 12px var(--secondary)}50%{box-shadow:0 0 22px var(--primary)}100%{box-shadow:0 0 12px var(--secondary)}}

/* Responsive */
@media(max-width:900px){
  .hero{
    flex-direction:column;
    text-align:center;
  }
  .hero img{
    width:85%;
  }
}
/* Testimonials */
:root {
  --primary: #3b82f6; /* blue */
  --purple: #8b5cf6;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --card-bg: #ffffff;
  --shadow: rgba(0,0,0,0.08);
}

body {
  background: #ffffff;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
}

/* Section */
.testimonial-section {
  max-width: 1100px;
  margin: auto;
  padding: 50px 20px;
}
.categories-section {
    padding: 50px 20px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 30px;
}

.category-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.category-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 150, 255, 0.15);
    transition: 0.3s ease-in-out;
    border: 2px solid #e6f7ff;
}

.category-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 150, 255, 0.25);
    border-color: #00aaff;
}

.category-box img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}

.category-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: #0077cc;
    margin-bottom: 8px;
}

.category-box p {
    font-size: 14px;
    color: #555;
}


/* Header */
.t-header {
  text-align: center;
  margin-bottom: 30px;
}

.t-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.t-header p {
  font-size: 16px;
  color: var(--text-light);
  margin-top: 8px;
}

/* Slider */
.t-slider {
  overflow: hidden;
  position: relative;
}

.t-track {
  display: flex;
  gap: 20px;
  transition: 0.4s ease;
}

/* Card */
.t-card {
  min-width: 300px;
  background: white;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 4px 18px var(--shadow);
  border: 1px solid #f1f5f9;
  text-align: center;
}

.t-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* Avatar */
.t-avatar {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid transparent;
  background: linear-gradient(45deg, var(--primary), var(--purple)) padding-box;
}

/* Quote */
.t-quote {
  margin: 15px 0;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Name & Role */
.t-name {
  margin: 0;
  font-weight: 600;
}

.t-role {
  font-size: 14px;
  color: var(--text-light);
}

/* Controls */
.t-controls {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.t-arrow {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: none;
  background: #f8fafc;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 2px 8px var(--shadow);
}

.t-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  cursor: pointer;
}

.t-dot.active {
  background: var(--primary);
}

/* Mobile */
@media (max-width: 640px) {
  .t-card {
    min-width: 90%;
  }
}
