/* RESET */
*{margin:0;padding:0;box-sizing:border-box;}

body{
font-family:'Poppins', sans-serif;
line-height:1.7;
overflow-x:hidden;
color:#1e293b;
height: 100%;
margin: 0;
padding-top: 80px;
}

@keyframes gradientMove{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}


:root{
  --primary:#ff4d4d;
  --dark:#0f172a;
  --dark2:#1e293b;
  --light:#f8fafc;
  --text:#334155;
}

h1,h2,h3{
font-size: 32px;
color: #e63939;
}

p{
color:inherit;
}

/* NAVBAR */
.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:1000;
  background:rgba(255,255,255,0.85);
  backdrop-filter:blur(10px);

  transition: all 0.3s ease;
  padding: 7px 20px;
}

.navbar.scrolled{
  padding: 6px 20px;   
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.nav-container{
padding:10px 20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo img{
  height: 45px;
  width: auto;
  object-fit: contain;
  transition: 0.3s;
}

.navbar.scrolled .logo img{
  height: 38px;
}

.nav-links a{
margin:0 15px;
text-decoration:none;
color:#334155;
font-weight:500;
transition:0.3s;
}

.nav-links a:hover{
  color:#e63939;
}

.join-btn{
background:linear-gradient(45deg,#e63939,#ff6b6b);
color:white;
padding:10px 25px;
border-radius:30px;
text-decoration:none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background: url("images/per_pen.jpeg") center/cover no-repeat;
  animation: zoomHero 25s ease-in-out infinite alternate;
  z-index: 1;
}

.hero-overlay {   /* Clean dark overlay */
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 10px;
}

.marathi {
  display: block;
  font-size: 2.8rem;
  color: #ff6b6b;
  margin-top: 8px;
}

.tagline {
  font-size: 1.8rem;
  color: #ffd93d;
  font-weight: 600;
  margin: 20px 0 25px;
}

.hero-desc, .english-desc {
  font-size: 1.15rem;
  margin: 15px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff4d4d, #ff6b6b);
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 30px;
  transition: all 0.4s;
}

.cta-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.5);
}

@keyframes zoomHero {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("images/per_pen.jpeg") center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
}

.marathi {
    display: block;
    font-size: 2.9rem;
    color: #ff6b6b;
    margin-top: 10px;
}

.tagline {
    font-size: 1.9rem;
    color: #ffd93d;
    font-weight: 600;
    margin: 25px 0 30px;
}

.hero-desc, .english-desc {
    font-size: 1.18rem;
    max-width: 720px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(45deg, #ff4d4d, #ff6b6b);
    color: white;
    padding: 16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255,77,77,0.5);
}

@keyframes zoomHero {
    from { transform: scale(1); }
    to   { transform: scale(1.15); }
}

/* Mobile Fix */
@media (max-width: 768px) {
    .hero-title { font-size: 2.7rem; }
    .marathi { font-size: 2.3rem; }
    .tagline { font-size: 1.55rem; }
}

/* PROBLEM SECTION */
/* ==================== PROBLEM SECTION WITH HOVER ==================== */
.problem-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(to bottom, #f9f1e0, #f5e8d3);
  overflow: hidden;
}

.problem-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.problem-title {
  font-size: 2.4rem;
  color: #e63939;
  font-weight: 700;
  margin-bottom: 40px;
  line-height: 1.3;
}

.problem-row {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.problem-pill {
  background: white;
  color: #333;
  padding: 16px 28px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
}

.problem-pill:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(230, 57, 57, 0.25);
  background: #fff5f5;
  color: #e63939;
  scale: 1.05;
}

.solution-text {
  font-size: 1.35rem;
  color: #d97706;
  font-weight: 600;
  margin: 30px 0 50px;
}

.trust-title {
  font-size: 2.1rem;
  color: #1e293b;
  margin-bottom: 30px;
}

.trust-pills {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trust-pill {
  background: rgba(255,255,255,0.95);
  color: #166534;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1.08rem;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  cursor: pointer;
}

.trust-pill:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(22, 101, 52, 0.2);
  background: #f0fdf4;
  color: #15803d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .problem-title {
    font-size: 1.95rem;
  }
  .problem-row, .trust-pills {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .problem-pill, .trust-pill {
    width: 90%;
    max-width: 340px;
  }
}

.courses-section{
padding:90px 20px;
background:#f8fafc;
}

/* NOTE BOX */
.note-box{
max-width:800px;
margin:0 auto 60px;
text-align:center;
background:white;
padding:40px;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.note-box h2{
color:#e63939;
margin-bottom:15px;
}

.note-main{
font-size:20px;
font-weight:600;
margin-bottom:10px;
}

.note-desc{
color:#475569;
margin-bottom:10px;
}

.note-english{
font-style:italic;
color:#64748b;
}

/* TABLE STYLE */
.courses-table{
max-width:1000px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
}

.courses-section{
  position:relative;
  overflow:hidden;
  background:radial-gradient(circle,#4f400340,transparent 100%);
}

.courses-section::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:radial-gradient(circle,#ff4d4d40,transparent 100%);
  top:-100px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(120px);
}

/* ROW */
.course-row{
display:grid;
grid-template-columns:1fr 1fr 2fr;
background:white;
padding:16px 20px;
border-radius:12px;
box-shadow:0 5px 15px rgba(0,0,0,0.05);
font-size:15px;
}

/* HEADER */
.course-row.header{
background:#e63939;
color:white;
font-weight:600;
}

/* HOVER */
.course-row:not(.header):hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
transition:0.3s;
}

/* MOBILE */
@media(max-width:768px){
.course-row{
grid-template-columns:1fr;
gap:5px;
}
.course-row.header{
display:none;
}
}

/* SECTION */
.container{
max-width:1200px;
margin:auto;
}

.section-title{
text-align:center;
font-size:32px;
margin-bottom:20px;
color:#e63939;
}

.subtitle{
text-align:center;
margin-bottom:50px;
color:#000;
}

.typing::after{
  content:"|";
  animation:blink 1s infinite;
}

@keyframes blink{
  0%,100%{opacity:1;}
  50%{opacity:0;}
}

.why-pro{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:80px 20px;
  background:linear-gradient(135deg,#f8fafc,#fff5f5);
}

.why-header{
  text-align:center;
  margin-bottom:40px;
}

.why-header h2{
  font-size:36px;
  color:#e63939;
}

.timeline{
  position:relative;
  max-width:700px;
  margin:auto;
  padding-left:30px;
}

/* LINE */
.timeline::before{
  content:"";
  position:absolute;
  left:10px;
  top:0;
  width:3px;
  height:100%;
  background:#ffdede;
}

.step{
  position:relative;
  margin-bottom:50px;
}

.circle{
  position:absolute;
  left:-2px;
  top:6px;
  width:14px;
  height:14px;
  background:#ff4d4d;
  border-radius:50%;
}

.card{
  background:white;
  padding:20px 25px;
  border-radius:12px;
  margin-left:20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-5px);
}

/* TEXT */
.card h3{
  font-size:20px;
  color:#e63939;
}

.card p{
  font-size:15px;
  color:#334155;
}

/* ===== MOBILE ===== */
@media(max-width:768px){
  .why-pro{
    padding:60px 15px;
  }

  .why-header h2{
    font-size:24px;
  }

  .why-header p{
    font-size:14px;
  }

  .timeline{
    padding-left:20px;
  }

  .circle{
    width:12px;
    height:12px;
  }

  .card{
    margin-left:15px;
    padding:15px;
  }

  .card h3{
    font-size:16px;
  }

  .card p{
    font-size:13px;
  }

}

.grapho-modern{
  padding:100px 20px;
  background:#f8fafc;
  text-align:center;
  height: 100%;
}

.grapho-modern::before{
  content:"";
  position:absolute;
  width:500px;
  max-height:500px;
  background:radial-gradient(circle,#ff6b6b30,transparent 70%);
  top:-150px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(100px);
  z-index:0;
}

/* HEADER */
.grapho-modern p{
  max-width:700px;
  margin:10px auto 50px;
  color:#0f172a;
  font-size: 16px;
}

/* CARDS GRID */
.g-card-wrap{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

/* CARD */
.g-box{
  width:280px;
  background:#fff;
  border-radius:14px;
  padding:40px 20px 30px;
  position:relative;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  overflow:hidden;
}

.top-strip{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#ff6b6b,#ffd93d);
}

.icon{
  width:65px;
  height:65px;
  margin:-70px auto 15px;
  background:linear-gradient(135deg,#ff6b6b,#ffd93d);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  color:#fff;
  box-shadow:0 10px 25px rgba(255,107,107,0.4);
}

/* TEXT */
.g-box h3{
  margin:10px 0;
  color:#0f172a;
}

.g-box h5{
  font-size: 30px;
}
.g-box p{
  font-size:16px;
  color:#0f172a;
}

/* HOVER EFFECT */
.g-box:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* SHINE EFFECT 🔥 */
.g-box::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.5),transparent);
  transition:0.6s;
}

.g-box:hover::after{
  left:100%;
}

/* CTA */
.g-cta{
  margin-top:100px;
}

.g-cta a{
  display:inline-block;
  background:linear-gradient(45deg,#ff4d4d,#ff6b6b);
  color:white;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.g-cta a:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(255,77,77,0.4);
}

.g-cta p{
  margin-top:10px;
  font-size:14px;
  color:#64748b;
}

.results-section{
  padding:100px 20px;
  background:linear-gradient(135deg,#fff,#fff5f5);
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* GLOW BACKGROUND */
.results-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#ff6b6b30,transparent 70%);
  top:-150px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(120px);
}

/* HEADER */
.results-header h2{
  font-size:36px;
  color:#0f172a;
}

.results-header p{
  color:#64748b;
  margin-bottom:50px;
}

/* GRID */
.results-grid{
  display:flex;
  justify-content:center;
  gap:30px;
  flex-wrap:wrap;
}

/* CARD */
.r-card{
  width:280px;
  background:white;
  padding:35px 20px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

/* ICON */
.r-icon{
  width:70px;
  height:70px;
  margin:auto;
  border-radius:50%;
  background:linear-gradient(135deg,#ff6b6b,#ffd93d);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  color:white;
  margin-bottom:15px;
}

/* TEXT */
.r-card h3{
  margin-bottom:10px;
  color:#0f172a;
}

.r-card p{
  font-size:14px;
  color:#64748b;
}

/* HOVER */
.r-card:hover{
  transform:translateY(-12px) scale(1.03);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* SHINE EFFECT */
.r-card::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
 
}

.r-card:hover::after{
  left:100%;
}

.results-cta{
  margin-top:50px;
}

.results-cta a{
  display:inline-block;
  background:linear-gradient(45deg,#ff4d4d,#ff6b6b);
  color:white;
  padding:14px 30px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.results-cta a:hover{
  box-shadow:0 15px 35px rgba(255,77,77,0.4);
}

.results-cta p{
  margin-top:10px;
  font-size:14px;
  color:#64748b;
}

.impact-section{
  padding: 50px 20px;
  color:white;
}

.impact-section h2{
  text-align: center;
  top: 0;
}

.impact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
}

.impact-item{
  margin-bottom:25px;
  padding:15px 20px;
  border-left:3px solid #ffd93d;
  background:rgba(255,255,255,0.03);
  border-radius:8px;
}

.impact-item:hover{
  background:rgba(255,255,255,0.06);
}

.impact-item h5{
  color:#071266;
  margin-bottom:5px;
  font-size: 22px;
}

.impact-item p{
  color: #000;
  font-size: 16px;
  align-items: center;
  text-align: center;
}

/* RIGHT */
.impact-right{
  position:relative;
  height:350px;
  border-radius:20px;
  overflow:hidden;

  background:url('images/dau_fa.jpeg') center/cover no-repeat;
}

.impact-right::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(45deg,rgba(0,0,0,0.5),transparent);
}

.impact-left h2{
  text-align: center;
  align-items: center;
}

/* GLASS CARD 🔥 */
.glass-card{
  padding:40px 60px;
  border-radius:20px;
  font-size:20px;
  font-weight:600;
  backdrop-filter:blur(15px);
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  box-shadow:0 20px 60px rgba(0,0,0,0.5);
  z-index:2;
}

.glow-bg{
  position:absolute;
  width:300px;
  height:300px;
  background:radial-gradient(circle,#ff6b6b,transparent 70%);
  filter:blur(120px);
  z-index:1;
}

.visit-pro{
  padding:100px 20px;
  background:linear-gradient(135deg,#fff,#f1f5f9);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.visit-pro::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#ff6b6b30,transparent 70%);
  top:-150px;
  left:50%;
  transform:translateX(-50%);
  filter:blur(120px);
}

.visit-sub{
  color:#1c1d1f;
  max-width:600px;
  margin:10px auto 50px;
}
 
.visit-card{
  max-width:700px;
  margin:auto;
  background:white;
  padding:40px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.visit-item{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
  text-align:left;
}

.visit-item i{
  font-size:20px;
  color:#ff4d4d;
  background:#ffe5e5;
  padding:12px;
  border-radius:50%;
}

.visit-item h4{
  margin-bottom:5px;
  color:#0f172a;
}

.visit-item p{
  color:#475569;
  font-size:14px;
}

/* quote */
.visit-quote{
  margin-top:40px;
  font-size:18px;
  color:#e63939;
  font-weight:500;
}

.visit-btn{
  display:inline-block;
  margin-top:20px;
  padding:14px 30px;
  background:linear-gradient(45deg,#ff4d4d,#ff6b6b);
  color:white;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.visit-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 35px rgba(255,77,77,0.4);
}

/* mobile */
@media(max-width:768px){
  .visit-item{
    flex-direction:column;
    align-items:flex-start;
  }
}

.whatsapp-btn{
  display:inline-block;
  margin-top:15px;
  background:#25D366;
  color:white;
  padding:12px 26px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 15px 30px rgba(37,211,102,0.4);
}

.call-float{
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#ff4d4d;
  color:white;
  font-size:26px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 10px 30px rgba(0,0,0,0.3);
  z-index:999;
  animation:callPulse 1.8s infinite;
  text-decoration:none;
}

@keyframes callPulse{
  0%{box-shadow:0 0 0 0 rgba(255,77,77,0.6);}
  70%{box-shadow:0 0 0 20px rgba(255,77,77,0);}
  100%{box-shadow:0 0 0 0 rgba(255,77,77,0);}
}

@media (max-width:768px){
.hero{
  min-height: calc(100vh - 70px);
  text-align:center;
}

.hero::before{
  transform:scale(1);
}

.tagline{
  font-size:15px;
}

.hero-desc,
.english-desc{
  font-size:12px;
}

.cta-btn,
.secondary-btn{
  display:block;
  width:100%;
  margin:10px 0;
  text-align:center;
}

.problem-row{
  flex-direction:column;
  gap:10px;
}

.problem-row span{
  font-size:14px;
  padding:10px;
}

/* TRUST */
.trust-grid{
  flex-direction:column;
  gap:10px;
}

/* COURSES */
.course-row{
  grid-template-columns:1fr;
  font-size:14px;
}

/* NOTE BOX */
.note-box{
  padding:25px 15px;
}

/* TIMELINE */
.timeline{
  padding-left:25px;
}

.step{
  margin-bottom:40px;
}

/* WHY SECTION */
.why-header h2{
  font-size:26px;
}

.why-header p{
  font-size:16px;
}

.g-box{
  width:100%;
}

.r-card{
  width:100%;
}

.impact-grid{
  grid-template-columns:1fr;
}

.impact-right{
  height:250px;
}

.visit-card{
  padding:25px 15px;
}

.visit-title{
  font-size:26px;
}

.visit-sub{
  font-size:14px;
}

.nav-container{
  flex-direction:column;
  gap:10px;
}

.nav-links{
  position:absolute;
  top:60px;  
  left:0;
  width:100%;
  background:white;
}

.call-float{
  width:50px;
  height:50px;
  font-size:20px;
}

}

.menu-toggle{
  display:none;
  font-size:26px;
  cursor:pointer;
  margin-left: auto;
}

/* MOBILE NAV */
@media (max-width:768px){
  .menu-toggle{
    display:block;
  }

  .nav-container{
    justify-content:space-between;
  }

  .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    align-items:center;
    gap:15px;
    padding:20px 0;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-links a{
    font-size:16px;
  }

  .join-btn{
    display:none;
  }

  .mobile-btn{
    display:inline-block;
    margin-top:10px;
  }
}

@media(max-width:768px){

  .problem-section{
    padding:60px 0 15px;
    background-attachment: scroll;
  }

  .problem-title{
    font-size:22px;
    line-height:1.4;
  }

  .problem-row{
    flex-direction:column;
    gap:12px;
    margin-top:10px;
  }

  .problem-row span{
    width:100%;
    font-size:14px;
    padding:12px;
  }

  .solution-text{
    font-size:16px;
  }

  .trust-title{
    font-size:22px;
    margin-top:30px;
  }

  .trust-pills{
    flex-direction:column;
    gap:10px;
  }

  .trust-pills span{
    width:100%;
    font-size:14px;
    padding:10px 70px;
  }

}

@media(max-width:768px){

  .why-pro{
    padding:60px 15px;
  }

  .timeline{
    padding-left:25px;
  }

  .card{
    padding:18px;
  }

  .card h3{
    font-size:18px;
  }

  .card p{
    font-size:14px;
  }

}

@media(max-width:768px){
  .nav-container{
    flex-direction:row;  /* FIX */
  }
}
