/* ===== DESIGN TOKENS ===== */
:root{
  --bg:#050505;
  --surface:#0e0e0e;
  --surface-2:#121214;
  --accent:#ff1e1e;
  --accent-dim:rgba(255,30,30,0.12);
  --accent-glow:rgba(255,30,30,0.35);
  --text:#f5f5f5;
  --text-muted:#8a8a8a;
  --text-dim:#555;
  --line:rgba(255,255,255,0.07);
  --font-display:'Space Grotesk',sans-serif;
  --font-body:'Poppins',sans-serif;
  --font-mono:'JetBrains Mono',monospace;
}

/* ===== ARCHITECTURAL GLOBAL BASE ===== */
*{margin:0;padding:0;box-sizing:border-box;scroll-behavior:smooth;}
html,body{overflow-x:hidden;}
body{font-family:var(--font-body);background:#080808;color:white;}

body::before{
  content:'';position:fixed;width:100%;height:100%;
  background:radial-gradient(circle at top left,rgba(255,0,0,0.08),transparent 30%),
             radial-gradient(circle at bottom right,rgba(255,0,0,0.05),transparent 30%);
  z-index:-1;
}

.container{width:90%;max-width:1280px;margin:auto;}
section{padding:80px 0;position:relative;}
a{text-decoration:none;color:white;}
.red{color:#ff1e1e;}

/* Mono "terminal" treatment for eyebrows + badges */
.section-label{font-family:var(--font-mono);}
.section-label::before{content:'> ';color:var(--text-dim);}
.exp-badge,.edu-badge{font-family:var(--font-mono);}

/* Headline / heading typography upgrade */
h1,h2,h3,.section-big-title,.hero-text h1{font-family:var(--font-display);}

/* ===== LOGO LOADING UI ===== */
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader-wrapper.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-logo {
  font-size: 54px;
  font-weight: 800;
  color: white;
  letter-spacing: -2px;
  animation: pulseLogo 1.6s ease-in-out infinite;
}
.loader-logo span {
  color: #ff1e1e;
}
@keyframes pulseLogo {
  0%, 100% { transform: scale(0.95); opacity: 0.6; }
  50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(255,30,30,0.6)); }
}

/* ===== SIGNAL-LINE SECTION DIVIDERS ===== */
/* A thin "wire" between sections with a pulse traveling along it, like a signal on a network line */
section:not(.hero)::before{
  content:'';
  position:absolute;
  top:0; left:0; width:100%; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,30,30,0.35) 50%,transparent);
}
section:not(.hero)::after{
  content:'';
  position:absolute;
  top:-3px; left:0;
  width:7px; height:7px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 10px 2px var(--accent-glow);
  animation:travelSignal 6s linear infinite;
}
@keyframes travelSignal{
  0%{left:-2%;opacity:0;}
  8%{opacity:1;}
  92%{opacity:1;}
  100%{left:101%;opacity:0;}
}
section:nth-of-type(odd)::after{animation-delay:1.5s;}
section:nth-of-type(even)::after{animation-delay:4s;}
/* ===== ADVANCED MAX-MOTION & SCROLL-UP ENGINE ===== */

/* 1. Standard Smooth Rise */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(4px);
  transition: all 0.9s cubic-bezier(0.215, 0.610, 0.355, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* 2. Left Slide-In (Great for alternate cards/images) */
.reveal-left {
  opacity: 0;
  transform: translateX(-80px) rotate(-1deg);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.active {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

/* 3. Right Slide-In (Complements Left Slide-In) */
.reveal-right {
  opacity: 0;
  transform: translateX(80px) rotate(1deg);
  transition: all 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.active {
  opacity: 1;
  transform: translateX(0) rotate(0);
}

/* 4. Cinematic Pop/Scale (Perfect for Hero Images and Service Cards) */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85) translateY(30px);
  filter: saturate(0.2);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bounce Easing */
}
.reveal-scale.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: saturate(1);
}

/* 5. 3D Matrix Skew (For an aggressive, hyper-modern cyber aesthetic) */
.reveal-skew {
  opacity: 0;
  transform: perspective(1000px) rotateX(15deg) translateY(50px);
  transition: all 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-skew.active {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0);
}

/* Dynamic Stagger Delays for Grids */
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* Interactive Hover States (transform now handled by JS tilt engine — see script) */
.service-card, .skills-card, .specialty-card, .edu-card {
  transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.service-card:hover, .skills-card:hover {
  border-color: #ff1e1e !important;
  box-shadow: 0 15px 35px rgba(255, 30, 30, 0.15) !important;
}
.hero-image img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.hero-image img:hover {
  transform: scale(1.04) rotate(1deg);
}

/* ===== NAVBAR ===== */
nav{position:fixed;width:100%;top:0;z-index:1000;background:rgba(5,5,5,0.85);backdrop-filter:blur(14px);border-bottom:1px solid rgba(255,255,255,0.06);}
.nav-container{display:flex;justify-content:space-between;align-items:center;padding:14px 0;}

.logo{font-size:26px;font-weight:800;color:white;letter-spacing:-1px;}
.logo span{color:#ff1e1e;}

nav ul{display:flex;gap:28px;list-style:none;}
nav ul li a{font-size:14px;color:#c0c0c0;transition:0.3s;}
nav ul li a:hover{color:white;}

.cv-btn{
  padding:10px 20px;border:1.5px solid #ff1e1e;border-radius:50px;
  font-size:13px;font-weight:500;display:flex;align-items:center;gap:8px;
  transition:0.3s;color:white;
}
.cv-btn:hover{background:#ff1e1e;box-shadow:0 0 20px rgba(255,0,0,0.35);}
.menu-toggle{display:none;font-size:24px;cursor:pointer;color:white;}

/* ===== HERO ===== */
.hero{min-height:88vh;display:flex;align-items:center;justify-content:space-between;gap:20px;padding-top:110px;position:relative;overflow:hidden;}
#network-canvas{position:absolute;inset:0;width:100%;height:100%;z-index:0;pointer-events:none;}
.hero-text{flex:1;z-index:2;}
.hero-text h4{color:#ff1e1e;font-size:13px;letter-spacing:4px;margin-bottom:16px;text-transform:uppercase;font-family:var(--font-mono);}
.hero-text h1{font-size:70px;line-height:0.95;margin-bottom:18px;font-weight:800;}
.hero-text h3{color:#b0b0b0;font-size:17px;margin-bottom:16px;font-weight:400;font-family:var(--font-mono);min-height:1.4em;}
.typing-cursor{display:inline-block;width:2px;height:0.95em;background:var(--accent);margin-left:2px;vertical-align:-2px;animation:blinkCursor 0.9s step-end infinite;}
@keyframes blinkCursor{0%,49%{opacity:1;}50%,100%{opacity:0;}}
.hero-text p{color:#7a7a7a;line-height:1.8;font-size:14px;max-width:500px;margin-bottom:28px;}
.hero-buttons{display:flex;gap:14px;margin-bottom:26px;}
.btn{padding:12px 24px;border-radius:10px;transition:0.3s;display:inline-block;font-size:14px;font-weight:500;}
.primary-btn{background:#ff1e1e;}
.secondary-btn{border:1px solid #ff1e1e;}
.btn:hover{transform:translateY(-3px);box-shadow:0 0 20px rgba(255,0,0,0.3); color:white;}
.socials{display:flex;gap:10px;}
.socials a{width:40px;height:40px;border:1px solid rgba(255,255,255,0.1);display:flex;justify-content:center;align-items:center;border-radius:10px;transition:0.3s;font-size:15px;}
.socials a:hover{border-color:#ff1e1e;color:#ff1e1e;transform:translateY(-3px);}

.hero-image{flex:0 0 380px;display:flex;justify-content:flex-end;align-items:center;position:relative;z-index:2;}
.hero-image img{width:100%;max-width:380px;height:460px;object-fit:cover;border-radius:20px;border:1px solid rgba(255,0,0,0.2);box-shadow:0 0 40px rgba(255,0,0,0.12);display:block;}

/* Scan-frame corner brackets, like a targeting / verification reticle */
.corner{position:absolute;width:26px;height:26px;border:2px solid var(--accent);opacity:0.85;}
.corner-tl{top:14px;left:14px;border-right:none;border-bottom:none;border-top-left-radius:6px;}
.corner-tr{top:14px;right:14px;border-left:none;border-bottom:none;border-top-right-radius:6px;}
.corner-bl{bottom:14px;left:14px;border-right:none;border-top:none;border-bottom-left-radius:6px;}
.corner-br{bottom:14px;right:14px;border-left:none;border-top:none;border-bottom-right-radius:6px;}

.hero-image::after{
  content:'';position:absolute;left:14px;right:14px;height:2px;
  background:linear-gradient(90deg,transparent,var(--accent),transparent);
  box-shadow:0 0 12px 1px var(--accent-glow);
  animation:scanSweep 3.4s ease-in-out infinite;
}
@keyframes scanSweep{
  0%,100%{top:20px;opacity:0;}
  10%{opacity:1;}
  50%{top:calc(100% - 20px);opacity:1;}
  60%{opacity:0;}
}

/* ===== SHARED SECTION HEADERS ===== */
.section-label{color:#ff1e1e;text-transform:uppercase;font-size:13px;letter-spacing:3px;margin-bottom:10px;}
.section-big-title{font-size:44px;font-weight:800;margin-bottom:20px;line-height:1.1;}
.section-subtitle{color:#7a7a7a;font-size:14px;line-height:1.8;}
.section-center-header{text-align:center;margin-bottom:56px;}

/* ===== ABOUT ===== */
.about-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:70px;align-items:start;}
.about-image{display:flex;justify-content:center;position:sticky;top:100px;}
.about-image img{width:100%;max-width:340px;height:420px;object-fit:cover;border-radius:20px;border:1px solid rgba(255,0,0,0.2);box-shadow:0 0 40px rgba(255,0,0,0.12);}
.about-text p{color:#8a8a8a;line-height:1.85;margin-bottom:26px;font-size:15px;}

.tags{display:flex;flex-wrap:wrap;gap:9px;margin-bottom:30px;}
.tag{padding:6px 14px;border:1px solid rgba(255,255,255,0.15);border-radius:50px;font-size:12.5px;color:#bbb;transition:0.3s;cursor:default;}
.tag:hover{border-color:#ff1e1e;color:white;}

.about-specialty-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;}
.specialty-card{background:#0e0e0e;border:1px solid rgba(255,255,255,0.07);border-radius:14px;padding:20px;display:flex;gap:14px;align-items:flex-start;transition:border-color 0.3s ease;}
.specialty-card:hover{border-color:rgba(255,30,30,0.35);}
.specialty-icon{width:46px;height:46px;min-width:46px;background:rgba(255,30,30,0.1);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#ff1e1e;font-size:18px;}
.specialty-card h4{font-size:13px;font-weight:600;margin-bottom:5px;color:white;}
.specialty-card p{font-size:12px;color:#666;line-height:1.5;margin:0;}

/* ===== SERVICES ===== */
.services-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.service-card{background:#0e0e0e;padding:32px 26px;border-radius:16px;border:1px solid rgba(255,255,255,0.06);transition:0.3s;}
.service-card:hover{transform:translateY(-5px);border-color:rgba(255,30,30,0.25);box-shadow:0 8px 30px rgba(255,0,0,0.08);}
.service-icon-wrap{width:56px;height:56px;background:rgba(255,30,30,0.1);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:22px;}
.service-icon-wrap i{font-size:22px;color:#ff1e1e;}
.service-card h3{margin-bottom:12px;font-size:17px;font-weight:600;color:white;}
.service-card p{color:#7a7a7a;line-height:1.7;font-size:13.5px;}

/* ===== SKILLS ===== */
.skills-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;}
.skills-card{background:#0e0e0e;border-radius:16px;padding:28px;border:1px solid rgba(255,255,255,0.06);transition:0.3s;}
.skills-card:hover{border-color:rgba(255,30,30,0.2);}

.skills-card-header{display:flex;align-items:center;gap:14px;margin-bottom:28px;}
.skills-icon-wrap{width:42px;height:42px;min-width:42px;background:rgba(255,30,30,0.12);border-radius:10px;display:flex;align-items:center;justify-content:center;color:#ff1e1e;font-size:18px;}
.skills-card-title{flex:1;}
.skills-card-title h3{font-size:18px;font-weight:700;color:white;}
.skills-overall{font-size:28px;font-weight:800;color:white;}
.skills-overall span{font-size:16px;color:#ff1e1e;font-weight:700;}

.skill{margin-bottom:16px;}
.skill-label{font-size:13px;color:#a0a0a0;margin-bottom:7px;}
.progress{width:100%;height:5px;background:#1c1c1c;border-radius:20px;overflow:hidden;}
.progress span{display:block;height:100%;background:linear-gradient(90deg,#b30000,#ff1e1e);border-radius:20px;width:0;transition:width 1.4s cubic-bezier(0.16,1,0.3,1);position:relative;overflow:hidden;}
.progress span::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent);
  transform:translateX(-100%);
  animation:shimmer 2.2s ease-in-out infinite;
}
@keyframes shimmer{0%{transform:translateX(-100%);}100%{transform:translateX(100%);}}

/* ===== EXPERIENCE ===== */
.exp-timeline{position:relative;padding-left:60px;max-width:860px;margin:0 auto;}
.exp-line{position:absolute;left:28px;top:0;bottom:0;width:2px;background:rgba(255,30,30,0.3);}
.exp-dot{position:absolute;left:20px;top:0;width:18px;height:18px;background:#ff1e1e;border-radius:50%;border:3px solid #ff1e1e;box-shadow:0 0 12px rgba(255,0,0,0.5);}
.exp-dot::after{
  content:'';position:absolute;inset:-3px;border-radius:50%;border:2px solid var(--accent);
  animation:expPing 2s cubic-bezier(0,0,0.2,1) infinite;
}
@keyframes expPing{0%{transform:scale(1);opacity:0.8;}100%{transform:scale(2.2);opacity:0;}}
.exp-card{background:#0e0e0e;border:1px solid rgba(255,255,255,0.06);border-radius:16px;padding:32px 36px;}
.exp-card-header{display:flex;justify-content:space-between;align-items:flex-start;margin-bottom:12px;flex-wrap:wrap;gap:10px;}
.exp-badge{background:rgba(255,30,30,0.15);color:#ff1e1e;padding:5px 12px;border-radius:6px;font-size:12px;font-weight:600;letter-spacing:0.5px;}
.exp-company{color:#8a8a8a;font-size:14px;font-weight:500;}
.exp-role{font-size:22px;font-weight:700;margin-bottom:20px;color:white;}
.exp-list{list-style:none;padding:0;}
.exp-list li{position:relative;padding-left:18px;color:#8a8a8a;font-size:14px;line-height:1.9;margin-bottom:6px;}
.exp-list li::before{content:'';position:absolute;left:0;top:10px;width:6px;height:6px;background:#ff1e1e;border-radius:50%;}

/* ===== EDUCATION ===== */
.edu-list{display:flex;flex-direction:column;gap:16px;max-width:860px;margin:0 auto;}
.edu-card{background:#0e0e0e;border:1px solid rgba(255,255,255,0.06);border-radius:16px;padding:28px 32px;display:flex;align-items:flex-start;gap:22px;transition:0.3s;}
.edu-card:hover{border-color:rgba(255,30,30,0.2);transform:translateX(4px);}
.edu-icon-wrap{width:52px;height:52px;min-width:52px;background:rgba(255,30,30,0.12);border-radius:12px;display:flex;align-items:center;justify-content:center;color:#ff1e1e;font-size:20px;}
.edu-badge{display:inline-block;background:rgba(255,30,30,0.15);color:#ff1e1e;padding:4px 12px;border-radius:6px;font-size:12px;font-weight:600;margin-bottom:10px;}
.edu-title{font-size:18px;font-weight:700;margin-bottom:6px;color:white;}
.edu-title.red{color:#ff1e1e;}
.edu-inst{color:#6a6a6a;font-size:13.5px;}

/* ===== CONTACT ===== */
.contact-layout{display:grid;grid-template-columns:1.4fr 1fr;gap:40px;align-items:start;}
.contact-form-wrap{display:flex;flex-direction:column;gap:20px;}
.form-group{display:flex;flex-direction:column;gap:8px;}
.form-group label{font-size:13.5px;color:#c0c0c0;font-weight:500;}
.form-group input,
.form-group textarea{
  background:#0e0e0e;border:1px solid rgba(255,255,255,0.1);border-radius:10px;
  padding:14px 18px;color:white;font-family:'Poppins',sans-serif;font-size:14px;
  outline:none;transition:0.3s;width:100%;
}
.form-group input:focus,
.form-group textarea:focus{border-color:rgba(255,30,30,0.5);}
.form-group input::placeholder,
.form-group textarea::placeholder{color:#404040;}
.form-group textarea{resize:none;height:140px;}
.char-count{text-align:right;font-size:12px;color:#555;margin-top:4px;}
.send-btn{
  background:#ff1e1e;color:white;border:none;border-radius:50px;
  padding:15px;font-size:15px;font-weight:600;cursor:pointer;
  display:flex;align-items:center;justify-content:center;gap:10px;
  transition:0.3s;width:100%;
}
.send-btn:hover{background:#e01818;box-shadow:0 0 24px rgba(255,0,0,0.4);}

.contact-info-wrap{display:flex;flex-direction:column;gap:14px;}
.contact-info-card{
  background:#0e0e0e;border:1px solid rgba(255,255,255,0.07);border-radius:14px;
  padding:18px 20px;display:flex;align-items:center;gap:16px;transition:0.3s;
}
.contact-info-card:hover{border-color:rgba(255,30,30,0.3);}
.contact-info-icon{
  width:44px;height:44px;min-width:44px;background:rgba(255,30,30,0.12);
  border-radius:10px;display:flex;align-items:center;justify-content:center;
  color:#ff1e1e;font-size:17px;
}
.contact-info-label{font-size:11.5px;color:#666;margin-bottom:3px;}
.contact-info-value{font-size:14px;font-weight:600;color:white;word-break:break-word;}

/* ===== FOOTER ===== */
footer{padding:24px 0;border-top:1px solid rgba(255,255,255,0.06);}
.footer-inner{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:16px;}
.footer-logo{font-size:22px;font-weight:800;}
.footer-logo span{color:#ff1e1e;}
footer p{color:#555;font-size:13px;}
.footer-socials{display:flex;gap:10px;}
.footer-socials a{width:36px;height:36px;border:1px solid rgba(255,255,255,0.1);border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px;color:#888;transition:0.3s;}
.footer-socials a:hover{border-color:#ff1e1e;color:#ff1e1e;}

/* ===== CUSTOM CURSOR ===== */
body.custom-cursor-active{cursor:none;}
body.custom-cursor-active a,body.custom-cursor-active button{cursor:none;}
.cursor-dot,.cursor-ring{
  position:fixed;top:0;left:0;border-radius:50%;pointer-events:none;
  z-index:10000;transform:translate(-50%,-50%);
}
.cursor-dot{width:6px;height:6px;background:var(--accent);opacity:0;}
.cursor-ring{
  width:34px;height:34px;border:1.5px solid rgba(255,30,30,0.6);opacity:0;
  transition:width 0.25s ease,height 0.25s ease,border-color 0.25s ease,background 0.25s ease;
}
body.custom-cursor-active .cursor-dot,body.custom-cursor-active .cursor-ring{opacity:1;}
.cursor-ring.cursor-hover{width:54px;height:54px;background:rgba(255,30,30,0.08);border-color:var(--accent);}

/* ===== 3D TILT + SPOTLIGHT CARD ENGINE ===== */
.tilt-card,.spotlight-card{will-change:transform;transform-style:preserve-3d;}
.tilt-card.tilt-reset,.spotlight-card.tilt-reset{
  transition:transform 0.6s cubic-bezier(0.25,1,0.5,1),background 0.6s ease;
}

/* ===== REDUCED MOTION & TOUCH FALLBACKS ===== */
@media(prefers-reduced-motion:reduce){
  .reveal,.reveal-left,.reveal-right,.reveal-scale,.reveal-skew{transition:opacity 0.4s ease !important;transform:none !important;filter:none !important;}
  section:not(.hero)::after,.hero-image::after,.exp-dot::after,.progress span::after,.loader-logo{animation:none !important;}
  .progress span{transition:none !important;}
  #network-canvas{display:none;}
}
@media(pointer:coarse){
  .cursor-dot,.cursor-ring{display:none;}
  #network-canvas{display:none;}
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:#060606;}
::-webkit-scrollbar-thumb{background:#ff1e1e;border-radius:20px;}

/* ===== RESPONSIVE MEDIA BREAKPOINTS ===== */
@media(max-width:1100px){
  .hero{flex-direction:column-reverse;text-align:center;gap:45px;padding-top:140px;min-height:auto;}
  .hero-text p{margin: 0 auto 28px auto;}
  .hero-buttons,.socials{justify-content:center;}
  .hero-image{justify-content:center;}
  .about-grid{grid-template-columns:1fr;}
  .about-image{position:static;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .skills-grid{grid-template-columns:1fr;}
  .contact-layout{grid-template-columns:1fr;}
}

@media(max-width:768px){
  section{padding:60px 0;}
  
  /* UI adjustments for smaller screens */
  .menu-toggle{display:block;}
  .hidden-mobile {display:none;}
  
  nav ul{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:rgba(10,10,10,0.98);
    flex-direction:column;
    gap: 0;
    padding:10px 0;
    display:none;
    border-bottom:1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }
  nav ul.active{display:flex;}
  nav ul li{width: 100%; text-align: center;}
  nav ul li a{
    display: block;
    padding: 15px 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.02);
  }
  
  .hero-text h1{font-size:52px;}
  .section-big-title{font-size:34px;}
  .services-grid{grid-template-columns:1fr;}
  .about-specialty-grid{grid-template-columns:1fr;}
  .exp-timeline{padding-left:40px;}
  .exp-line{left:18px;}
  .exp-dot{left:10px;}
  .hero-image img{max-width:320px;height:380px;}
}

@media(max-width:500px){
  .container{width:88%;}
  .hero-text h1{font-size:42px;}
  .about-image img{max-width:100%;height:auto;aspect-ratio: 4/5;}
  .section-big-title{font-size:28px;}
  .hero-image img{max-width:280px;height:340px;}
  .edu-card {flex-direction: column; gap: 14px;}
  .edu-icon-wrap {width: 44px; height: 44px; min-width: 44px; font-size: 16px;}
}
