* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #2c1f25;
      color: #fff;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 60px;
      position: fixed;
      width: 100%;
      background: transparent;
      z-index: 1000;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #f4a261;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    nav ul li a {
      text-decoration: none;
      color: #f4a261;
      font-weight: 500;
      transition: 0.3s;
    }
    nav ul li a:hover {
      color: #fff;
    }
    .hero-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 150px 60px 0;
      min-height: 100vh;
      background: linear-gradient(
        135deg,
        #2c1f25 0%,
        #2c1f25 40%,
        #3a2732 40%,
        #3a2732 60%,
        #2c1f25 60%,
        #2c1f25 100%
      );
      overflow: hidden;
    }
    .hero-text {
      max-width: 50%;
      align-self: center;
    }
    .hero-text h1 {
      font-size: 56px;
      margin-bottom: 20px;
      color: white;
    }
    .hero-text h1 span {
      display: inline-block;
      font-size: 48px;
      color: #f4a261;
      margin-top: 10px;
      min-height: 58px;
    }
    .hero-img {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      height: 100%;
    }
    .hero-img img {
      height: 100vh;
      object-fit: contain;
    }
    @media (max-width: 960px) {
      .hero-section {
        flex-direction: column;
        padding: 120px 20px 0;
        align-items: center;
        text-align: center;
      }
      .hero-text, .hero-img {
        max-width: 100%;
      }
      .hero-text h1 {
        font-size: 40px;
      }
      .hero-text h1 span {
        font-size: 36px;
      }
      .hero-img img {
        height: auto;
        width: 70%;
      }
    }
    .facilities-section, .certificate-section {
      background-color: #f8f8f8;
      padding: 60px 20px;
    }
    .activity-title, .certificate-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      color: #b30000;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .facilities-wrapper, .certificate-wrapper {
      position: relative;
      overflow: hidden;
      max-width: 100%;
      margin: auto;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }
    .facilities-wrapper.active, .certificate-wrapper.active {
      opacity: 1;
      transform: translateY(0);
    }
    .facilities-carousel, .certificate-carousel {
      display: flex;
      overflow-x: auto;
      scroll-behavior: smooth;
      gap: 20px;
      padding: 10px;
    }
    .facilities-carousel::-webkit-scrollbar, .certificate-carousel::-webkit-scrollbar {
      display: none;
    }
    .facility-card, .certificate-card {
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      width: 300px;
      flex: 0 0 auto;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .facility-card img, .certificate-card img {
      width: 100%;
      height: 200px;
      object-fit: contain;
      padding: 10px;
    }
    .facility-card h3, .certificate-card h3 {
      font-size: 18px;
      margin: 15px;
      color: #b30000;
      font-weight: bold;
      text-align: center;
    }
    .facility-card p, .certificate-card p {
      font-size: 14px;
      color: #444;
      margin: 0 15px 15px;
      text-align: center;
    }
    .slide-btn {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      background: #b30000;
      color: #fff;
      border: none;
      font-size: 24px;
      padding: 10px;
      cursor: pointer;
      z-index: 10;
      border-radius: 50%;
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    }
    .slide-btn.prev { left: 0; }
    .slide-btn.next { right: 0; }
    @media (max-width: 768px) {
      .slide-btn { display: none; }
    }
    .services-section {
      background-color: #3a2732;
      padding: 80px 60px;
    }
    .services-container {
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }
    .services-title {
      font-size: 32px;
      color: #fff;
      margin-bottom: 40px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .service-card {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 30px 20px;
      border-radius: 8px;
      transition: 0.3s ease;
      color: #fff;
    }
    .service-card:hover {
      border-color: #f4a261;
      transform: translateY(-5px);
    }
    .service-card img {
      width: 48px;
      height: 48px;
      margin-bottom: 20px;
      opacity: 0.8;
    }
    .service-card h3 {
      font-size: 20px;
      color: #f4a261;
      margin-bottom: 10px;
    }
    .service-card p {
      font-size: 14px;
      color: #ddd;
      line-height: 1.6;
    }
    .about-section {
      position: relative;
      background-color: #2c1f25;
      padding: 100px 20px;
      color: white;
    }
    .about-overlay {
      background: #2c1f25;
      padding: 60px 20px;
    }
    .about-content {
      max-width: 1100px;
      margin: auto;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 40px;
    }
    .about-image img {
      width: 200px;
      height: 250px;
      object-fit: contain;
      border-radius: 50%;
      border: 6px solid #ccc;
      background: transparent;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    }
    .about-text {
      flex: 1;
      min-width: 280px;
    }
    .about-text .hello {
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 300;
      margin-bottom: 10px;
    }
    .about-text h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 15px;
    }
    .about-text h2 span {
      color: #00aaff;
    }
    .about-text .desc {
      font-size: 15px;
      color: #ddd;
      line-height: 1.7;
      margin-bottom: 25px;
    }
    .skills-section {
      background-color: #3a2732;
      padding: 80px 20px;
      color: white;
    }
    .skills-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
    }
    .skills-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 40px;
    }
    .skill-circle {
      width: 150px;
      height: 150px;
      position: relative;
    }
    .skill-circle svg {
      transform: rotate(-90deg);
    }
    .skill-circle circle {
      fill: none;
      stroke-width: 12;
      stroke-linecap: round;
    }
    .skill-bg {
      stroke: rgba(255, 255, 255, 0.1);
    }
    .skill-bar {
      stroke: #00aaff;
      stroke-dasharray: 408;
      stroke-dashoffset: 408;
      animation: animateSkill 2s ease forwards;
    }
    @keyframes animateSkill {
      to {
        stroke-dashoffset: var(--offset);
      }
    }
    .skill-info {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      text-align: center;
    }
    .skill-info h4 {
      font-size: 16px;
      margin: 0;
      color: #f4a261;
    }
    .skill-info span {
      font-size: 18px;
      font-weight: bold;
      color: #fff;
    }
    .education-section {
      background: #3a2732;
      padding: 80px 20px;
      color: white;
    }
    .education-title {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      color: #f4a261;
    }
    .education-container {
      max-width: 1100px;
      margin: auto;
    }
    .education-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
    }
    .edu-card {
      background-color: #2c1f25;
      border: 1px solid rgba(255, 255, 255, 0.1);
      padding: 25px 20px;
      border-radius: 10px;
      transition: 0.3s;
    }
    .edu-card:hover {
      border-color: #00aaff;
      transform: translateY(-5px);
    }
    .edu-card h3 {
      font-size: 18px;
      color: #f4a261;
      margin-bottom: 15px;
    }
    .edu-card p {
      font-size: 14px;
      color: #ddd;
      margin: 5px 0;
    }
    .edu-logo {
      width: 60px;
      height: 60px;
      object-fit: contain;
      margin-bottom: 10px;
      border-radius: 50%;
      background-color: #fff;
      padding: 6px;
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.1);
    }
    .footer-section {
      background-color: #2c1f25;
      padding: 60px 20px 20px;
      color: #fff;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      margin-bottom: 30px;
    }
    .footer-contact h3,
    .footer-social h3 {
      color: #f4a261;
      margin-bottom: 15px;
      font-size: 20px;
    }
    .footer-contact p {
      margin: 5px 0;
      color: #ddd;
      font-size: 14px;
    }
    .social-icons {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 10px;
    }
    .social-icons img {
      width: 32px;
      height: 32px;
      opacity: 0.8;
      transition: transform 0.3s, opacity 0.3s;
    }
    .social-icons a:hover img {
      opacity: 1;
      transform: scale(1.1);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 20px;
      font-size: 14px;
      color: #aaa;
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #2c1f25;
      color: #fff;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 25px 60px;
      position: fixed;
      width: 100%;
      background: transparent;
      z-index: 1000;
    }
    .logo {
      font-size: 24px;
      font-weight: bold;
      color: #f4a261;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 25px;
    }
    nav ul li a {
      text-decoration: none;
      color: #f4a261;
      font-weight: 500;
      transition: 0.3s;
    }
    nav ul li a:hover {
      color: #fff;
    }
    .menu-toggle {
      display: none;
      font-size: 28px;
      color: #f4a261;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: #2c1f25;
        width: 100%;
        display: none;
        gap: 0;
      }

      nav ul.show {
        display: flex;
      }

      nav ul li {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      }

      .menu-toggle {
        display: block;
      }
    }

    .hero-section {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 150px 60px 0;
      min-height: 100vh;
      background: linear-gradient(
        135deg,
        #2c1f25 0%,
        #2c1f25 40%,
        #3a2732 40%,
        #3a2732 60%,
        #2c1f25 60%,
        #2c1f25 100%
      );
      overflow: hidden;
    }
    .hero-text {
      max-width: 50%;
      align-self: center;
    }
    .hero-text h1 {
      font-size: 56px;
      margin-bottom: 20px;
      color: white;
    }
    .hero-text h1 span {
      display: inline-block;
      font-size: 48px;
      color: #f4a261;
      margin-top: 10px;
      min-height: 58px;
    }
    .hero-img {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: flex-end;
      height: 100%;
    }
    .hero-img img {
      height: 100vh;
      object-fit: contain;
    }

    @media (max-width: 960px) {
      .hero-section {
        flex-direction: column;
        padding: 120px 20px 0;
        align-items: center;
        text-align: center;
      }
      .hero-text, .hero-img {
        max-width: 100%;
      }
      .hero-text h1 {
        font-size: 40px;
      }
      .hero-text h1 span {
        font-size: 36px;
      }
      .hero-img img {
        height: auto;
        width: 70%;
      }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', sans-serif;
    }

    .projects-section {
      background-color: #1f171b;
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .projects-title {
      font-size: 2.5em;
      margin-bottom: 20px;
    }

    .project-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      justify-content: center;
      align-items: center;
      padding: 20px 0;
    }

    .project-box {
      background: #2c1f25;
      padding: 20px;
      border-radius: 12px;
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.8s ease-in-out;
    }

    .project-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
    }

    .project-name {
      display: block;
      font-size: 1.2em;
      font-weight: bold;
      color: #fff;
      margin-bottom: 10px;
      text-decoration: none;
      transition: color 0.3s;
    }

    .project-name:hover {
      color: #f44336;
    }

    .download-btn {
      display: inline-block;
      margin-top: 10px;
      padding: 8px 16px;
      background-color: #f44336;
      color: white;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.3s;
    }

    .download-btn:hover {
      background-color: #c62828;
    }

    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }