@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html,body {
  color: #000000;
  font-family:'poppins',sans-serif;
}

.header-container {
  display: flex;
  justify-content: center;
  width: 100%;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%); 
  width: 85%; 
  background: rgba(255, 255, 255, 0.6); 
  backdrop-filter: blur(1px); 
  box-shadow: 0 4px 12px rgba(74, 144, 226, 0.2); 
  border-radius: 12px;
  padding: 15px 40px;
  z-index: 1000;
  transition: 0.3s ease-in-out;
}


.nav-logo .main-logo {
  height: 50px; 
  width: auto;
  transition: all 0.3s ease-in-out;
}

.nav-logo .main-logo:hover {
  transform: scale(0.8); 
  filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.5));
}

.nav-links {
  display: flex;
  gap: 20px;
}



.nav-link {
  text-decoration: none;
  color: black;
  font-weight: 500;
  padding: 8px 12px;
  transition: 0.3s ease-in-out;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #4a90e2;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: #4a90e2;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-name .logo-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  text-decoration: none;
  padding: 8px 12px;
  transition: 0.3s ease-in-out;
}

.logo-name:hover {
  color: #4a90e2;
}  



.main-container {
  margin: 0 auto;
  align-items: center;

}

.Hero-wrapper {
  width: 100vw;
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(253, 251, 251, 0.904)
    radial-gradient(rgba(2, 170, 226, 0.712) 10%, transparent 10.1%);
  background-size: 11px 11px; 
  padding: 7rem;
}

.Hero-container {
  width: 100%;
  display: flex; 
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  
}


.image-container {
  width: 80%;
  margin-right: 2rem;
  position: relative;
  display: flex;
  justify-content: center;
  animation: slidefromtop 0.8s ease forwards;
}

@keyframes slidefromtop {
  0% {
    opacity: 0;
    transform: translateZ(-100%);
  }
  100% {
    opacity: 100%;
    transform: translate(0);
  }
}



.image-container img {
  width: 100%;
  height: 700px;
  position: absolute;
  object-position: top;
  border-radius: 3rem;
  object-fit: cover;

}

.blob {
  position: relative;
  width:26rem;
  height: 26rem;
  overflow: hidden;
  border: 0.5rem solid rgb(93, 169, 227);
  border-radius: 50%;
  background: rgb(138, 66, 66);
  background-size: 500% 100%;
  
}

.main-text {
  margin-left: 2rem; 
  display: flex;
  flex-direction: column;
  width: 90%;
  gap: 1.6rem;
  animation: slidefromleft 0.8s ease forwards;

}

@keyframes slidefromleft {
  0% {
    opacity: 0;
    transform: translateX(+100%);
  }

  100% {
    opacity: 100%;
    transform: translateX(0);
  }
}

.name-greet {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.desc-button {
  display: flex;
  flex-direction: column;
  color: rgb(75 85 99);
  gap: 1.8rem;
} 

.greet {
  gap: 0.4rem;
}

.greet-gif {
  height: 34px;
  width: 34px;
}

.text_greet {
  font-size: 1.4rem;
  font-weight: 400;
}

.text_name {
  font-size: 2.4rem;
}

.about {
  font-size: 1rem;
  font-weight: 500;

}

.name {
  color: rgb(93, 169, 227);
}

.role-cv {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.text-role {
  width: fit-content;
  color: #5a43cb;
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 0.7rem;
  background-color:#e4e1f0;
  border-radius: 0.5rem;
  box-shadow: 1px 3px 10px #bfbbd1 ;
  font-weight: 500;
  font-family:"Archivo", sans-serif;
}

.mentor-badge {
  color: #0891b2;
  background-color: #cffafe;
  box-shadow: 1px 3px 10px #a5f3fc;
}

.download-btn {
  display: inline-block;
  padding: 10px 30px;
  border: none;
  border-radius: 10px;
  background-color: #111213;
  color: #ffffff;
  font-weight: bold;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s;
}

.download-btn:hover {
  background-color: #49494a;
  box-shadow: 0 0 20px #6fc5ff50;
  transform: scale(1.08);
  cursor: pointer;
}

.download-btn:active {
  background-color: #080a0b;
  transition: all 0.25s;
  box-shadow: none;
  transform: scale(0.98);
}

.socials {
  position: fixed;
  top: 33%;
  left: 0%;
}   

.socialContainer {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: rgb(44, 44, 44);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition-duration: .3s;
}


.containerOne:hover {
  background-color: #d62976;
  transition-duration: .3s;
}


.containerTwo:hover {
  background-color: #ff0000;
  transition-duration: .3s;
}


.containerThree:hover {
  background-color: #0072b1;
  transition-duration: .3s;
}


.containerFour:hover {
  background-color: #24262a;
  transition-duration: .3s;
}

.socialContainer:active {
  transform: scale(0.9);
  transition-duration: .3s;
}

.socialSvg {
  width: 17px;
}

.socialSvg path {
  fill: rgb(255, 255, 255);
}

.socialContainer:hover .socialSvg {
  animation: slide-in-top 0.3s both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-50px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
} 

.card {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px 25px;
  gap: 20px;
}

@media (max-width:1078px) {

  .nav-logo .main-logo {
    height: 30px;
  }

  .nav-logo {
    display: flex;
    align-items: center;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .nav-name .logo-name {
    font-size: 0.9rem;
  }

  .image-container {
    width: 100%;
    margin-right: 0;
    margin:4rem 0rem;
  }

  .image-container img {
    width: 100%;
    height: 550px;
    object-position: top;
    border-radius: 3rem;
    object-fit: cover;
  }
  .blob {
    width: 20rem;
    height: 20rem;
  }

  .Hero-container {
    flex-direction: column;
    align-items: center;
  }

  .main-text {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .text_name {
    font-size: 2rem;
  }

  .about {
    font-size: 0.9rem;
  }

  .role-cv {
    margin: 0 auto;
  }
}

@media (max-width:886px) {

  .main-logo , .logo-name {
    display: none;
  }
}

@media (max-width:656px) {

  .image-container img {
    width: 100%;
    height: 420px;
    object-position: top;
    border-radius: 3rem;
    object-fit: cover;
  }
  .blob {
    width: 15rem;
    height: 15rem;
  }

  .Hero-container {
    flex-direction: column;
    align-items: center;
  }

  .main-text {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

  .text_name {
    font-size: 1.2rem;
  }

  .about {
    font-size: 0.7rem;
  }

  .role-cv {
    margin: 0 auto;
  }

  .text-role {
    display: none;
  }

  .download-btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width:539px) {
  .nav-container {
    display: none;
  } 

  .Hero-wrapper {
    padding: 2rem ;
  }

  .socialContainer {
    height: 28px;
    width: 28px;
  }

  .socialSvg {
    width: 12px;
  }

  .socials {
    top: 20%;
    left: 0%;
  }
}


/* ===== SKILLS SECTION - COMPACT MARQUEE ===== */

#Skills {
  padding: 3rem 0;
  width: 100%;
  background: #fafafa;
  overflow: hidden;
}

.skills-container {
  width: 100%;
  text-align: center;
}

.skills-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 2rem;
  display: inline-block;
  position: relative;
}

.skills-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #63b3ed);
  border-radius: 2px;
}

.skills-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.skills-track {
  display: flex;
  gap: 2rem;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.skills-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.2rem;
  background: white;
  border-radius: 50px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(74, 144, 226, 0.15);
  border-color: #4a90e2;
}

.skill-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.skill-item span {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
  .skills-heading {
    font-size: 1.8rem;
    padding: 10px 30px;
  }

  .skills-description {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .toggle {
    width: 90px;
    height: 90px;
  }

  .toggle img {
    width: 40px;
    height: 40px;
  }

  .toggle p {
    font-size: 10px;
  }
  
  .skill-category {
    padding: 1.5rem 1rem;
  }
  
  .category-title {
    font-size: 1.1rem;
  }
  
  .skills-row {
    gap: 1rem;
  }
}



/* ===== PROJECTS SHOWCASE SECTION ===== */

#Projects {
  padding: 5rem 2rem;
  width: 100%;
  background: #fff;
}

.projects-showcase {
  max-width: 1200px;
  margin: 0 auto;
}

.projects-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a192f;
  text-align: center;
  margin-bottom: 3rem;
  display: inline-block;
  position: relative;
  width: 100%;
}

.projects-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4a90e2, #63b3ed);
  border-radius: 2px;
}

.project-showcase-item {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  padding: 2rem;
  background: #fafafa;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.project-showcase-item:hover {
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.1);
}

.project-showcase-item:nth-child(even) {
  flex-direction: row-reverse;
}

.project-preview {
  flex: 1;
  min-width: 45%;
}

.preview-window {
  background: #1e1e1e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.window-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #2d2d2d;
}

.window-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27ca3f; }

.window-title {
  flex: 1;
  text-align: center;
  font-size: 0.8rem;
  color: #888;
}

.preview-images {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.preview-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.preview-images img:first-child {
  opacity: 1;
  z-index: 2;
}

.preview-images img.active {
  opacity: 1 !important;
  z-index: 2 !important;
}

.project-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-number {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4a90e2;
  margin-bottom: 0.5rem;
}

.project-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a192f;
  margin-bottom: 1rem;
}

.project-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tech-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-pill {
  background: linear-gradient(135deg, #e8f4fd 0%, #d1e9ff 100%);
  color: #1e6091;
  padding: 0.4rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 500;
}

.features-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.features-list li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.features-list li i {
  color: #27ca3f;
  font-size: 0.8rem;
}

.live-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  width: fit-content;
}

.live-demo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

a {
  text-decoration: none;
}

/* ===== ACHIEVEMENTS SECTION - REDESIGNED ===== */

#Achievements {
  padding: 5rem 2rem;
  width: 100%;
  background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
  position: relative;
  overflow: hidden;
}

#Achievements::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.5;
}

.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.achievements-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-bottom: 3rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  width: 100%;
}

.achievements-heading::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #4a90e2, #63b3ed);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
}

/* Stats Showcase - Large Cards */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card-large {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.stat-card-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card-large:hover::before {
  opacity: 1;
}

.stat-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(74, 144, 226, 0.3);
  border-color: rgba(74, 144, 226, 0.5);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.stat-icon i {
  font-size: 2rem;
  color: white;
}

.stat-info {
  flex: 1;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 0%, #4a90e2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.3rem;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Achievement Banner */
.achievement-banner {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(99, 179, 237, 0.2) 100%);
  border: 2px solid rgba(74, 144, 226, 0.3);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.banner-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.banner-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4);
}

.banner-icon i {
  font-size: 2.5rem;
  color: #0a192f;
}

.banner-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.banner-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Highlights Modern Grid */
.highlights-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.highlight-modern {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.highlight-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.2);
  border-color: rgba(74, 144, 226, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.highlight-badge {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
  filter: drop-shadow(0 5px 15px rgba(74, 144, 226, 0.3));
}

.highlight-modern h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.8rem;
}

.highlight-modern p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* ---------- Responsive Styles ---------- */

@media (max-width: 992px) {
  .project-showcase-item {
    flex-direction: column !important;
    gap: 2rem;
  }
  
  .project-preview {
    min-width: 100%;
  }
  
  .preview-images {
    height: 240px;
  }
  
  .stats-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .banner-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .projects-heading,
  .achievements-heading {
    font-size: 1.5rem;
  }
  
  .project-showcase-item {
    padding: 1.5rem;
  }
  
  .project-name {
    font-size: 1.4rem;
  }
  
  .preview-images {
    height: 200px;
  }
  
  .highlights-modern {
    grid-template-columns: 1fr;
  }
  
  .stats-showcase {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stat-card-large {
    flex-direction: column;
    text-align: center;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .banner-text h3 {
    font-size: 1.2rem;
  }
  
  .banner-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .stat-card-large {
    padding: 1.5rem;
  }
  
  .stat-icon {
    width: 60px;
    height: 60px;
  }
  
  .stat-icon i {
    font-size: 1.5rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .stat-desc {
    font-size: 0.8rem;
  }
  
  .preview-images {
    height: 180px;
  }
  
  .project-desc {
    font-size: 0.9rem;
  }
  
  .tech-pill {
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
  }
  
  .highlight-badge {
    font-size: 2.5rem;
  }
  
  .highlight-modern h4 {
    font-size: 1rem;
  }
  
  .highlight-modern p {
    font-size: 0.85rem;
  }
  
  .banner-icon {
    width: 60px;
    height: 60px;
  }
  
  .banner-icon i {
    font-size: 2rem;
  }
}





#qualification {
  padding: 7rem;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  display: flex; 
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #e8f4fd 0%, #ffffff 100%);
}


.qualification-container {
  width: 80%;
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.qualification-heading {
  padding: 12px 44px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a192f;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom:3rem;
}

.academics-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.college-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.college-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.15);
}

.college-image { 
    width: 45%;
    max-width: 350px;
    background-color: #f8f9ff;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
}

.college-image:hover {
  transform: scale(1.03);
}

.college-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.college-info {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}

.college-info h3,
.school-info h3 {
  font-size: 1.4rem;
  color: #0a192f;
  font-weight: 700;
}

.degree {
  font-size: 1.1rem;
  color: #4a90e2;
  font-weight: 600;
}

.duration {
  font-size: 0.95rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.duration i {
  color: #4a90e2;
}

.info-detail {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-top: 0.5rem;
}

.school-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.school-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(74, 144, 226, 0.15);
}

.school-image {
    width: 45%;
    max-width: 350px;
    background-color: #f8f9ff;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center; 
    transition: all 0.3s ease-in-out;
}

.school-image:hover {
  transform: scale(1.03);
}

.school-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.school-info {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 0.5rem;
}

/* ===== FOOTER SECTION ===== */

.footer-section {
  background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  font-size: 2rem;
}

.footer-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-quote {
  color: #94a3b8;
  font-size: 0.95rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.footer-divider {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #4a90e2, transparent);
  margin: 0 auto 1.5rem;
}

.copyright {
  color: #64748b;
  font-size: 0.85rem;
}

@media (max-width:934px) {

  #qualification {
    padding: 4rem 2rem;
  }
  
  .college-container,
  .school-container {
    flex-direction: column;
    padding: 1.5rem;
  }

  .college-image,
  .school-image {
    width: 100%;
    max-width: 100%;
  }

  .college-info,
  .school-info {
    width: 100%;
    text-align: center;
    align-items: center;
  }
  
  .qualification-heading {
    font-size: 2rem;
    padding: 10px 25px;
  }
  
  .duration {
    justify-content: center;
  }
}


Footer {
  padding-top: 6rem;
  text-align: center;
}















  
  

  






  













