    :root {
      --primary: #032241;
      --secondary: #4db8ff;
      --accent: #ff6b6b;
      --light: #f8faff;
      --dark: #02182e;
      --gray: #6c757d;
      --white: #ffffff;
      --shadow: 0 10px 30px rgba(0,0,0,0.1);
      --transition: all 0.3s ease;
    }
    
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
      font-family: 'Poppins', sans-serif; 
    }
    
    body { 
      background: var(--light); 
      color: #333; 
      overflow-x: hidden; 
      line-height: 1.6;
    }
    
    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Navbar */
    header {
      width: 100%; 
      position: fixed; 
      top: 0; 
      left: 0;
      background: rgba(3,34,65,0.95); 
      backdrop-filter: blur(6px);
      padding: 15px 5%; 
      display: flex; 
      justify-content: space-between; 
      align-items: center;
      z-index: 1000;
      transition: var(--transition);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    header.scrolled {
      padding: 10px 5%;
      background: rgba(3,34,65,0.98);
    }
    
    header .logo { 
      display: flex; 
      align-items: center; 
      gap: 12px; 
    }
    
    header img { 
      height: 45px; 
      transition: var(--transition);
    }
    
    header h1 { 
      color: var(--white); 
      font-weight: 700; 
      font-size: 24px; 
      letter-spacing: 0.5px;
    }
    
    header h1 span { 
      color: var(--secondary); 
    }
    
    nav ul { 
      list-style: none; 
      display: flex; 
      gap: 30px; 
    }
    
    nav ul li a {
      color: var(--white); 
      text-decoration: none; 
      font-weight: 500; 
      position: relative;
      padding: 8px 0;
      transition: var(--transition);
    }
    
    nav ul li a::after {
      content: ''; 
      width: 0%; 
      height: 2px; 
      background: var(--secondary);
      position: absolute; 
      left: 0; 
      bottom: 0; 
      transition: var(--transition);
    }
    
    nav ul li a:hover::after, 
    nav ul li a.active::after { 
      width: 100%; 
    }
    
    nav ul li a:hover {
      color: var(--secondary);
    }
    
    .mobile-menu {
      display: none;
      font-size: 24px;
      color: var(--white);
      cursor: pointer;
    }

    /* Hero Section */
    .hero {
      height: 100vh; 
      background: linear-gradient(rgba(3,34,65,0.8), rgba(3,34,65,0.7)), url('../../assets/main-building.png') center/cover no-repeat;
      display: flex; 
      justify-content: center; 
      align-items: center; 
      text-align: center; 
      padding: 0 20px;
      position: relative;
    }
    
    .hero-content { 
      position: relative; 
      color: var(--white); 
      z-index: 2; 
      max-width: 800px; 
      animation: fadeIn 1s ease;
    }
    
    .hero-content h2 { 
      font-size: 56px; 
      font-weight: 800; 
      margin-bottom: 24px; 
      line-height: 1.1;
      background: linear-gradient(135deg, var(--white) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    .hero-content p {
      font-size: 20px;
      margin-bottom: 40px;
      opacity: 0.95;
      font-weight: 300;
      letter-spacing: 0.5px;
    }
    
    .login-box {
      margin-top: 40px; 
      background: rgba(255,255,255,0.15);
      padding: 40px; 
      border-radius: 24px; 
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      border: 1px solid rgba(255,255,255,0.15);
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;

    }
    
    .cta-button {
      display: flex; 
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin: 0; 
      padding: 18px 24px; 
      background: var(--secondary);
      color: var(--white);
      text-decoration: none; 
      border-radius: 12px; 
      font-weight: 600; 
      font-size: 16px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      border: 1px solid rgba(255,255,255,0.2);
    }
    
    .cta-button:hover { 
      background: #3498db;
      transform: translateY(-2px); 
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    
    .cta-button i {
      font-size: 20px;
      transition: transform 0.3s ease;
    }
    
    .cta-button:hover i {
      transform: scale(1.1);
    }

    /* Section Styling */
    .section { 
      padding: 100px 10%; 
      background: var(--white); 
    }
    
    .section:nth-child(even) {
      background: #f5f9ff;
    }
    
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    
    .section-header h3 { 
      font-size: 36px; 
      font-weight: 700; 
      color: var(--primary); 
      margin-bottom: 15px; 
      position: relative;
      display: inline-block;
    }
    
    .section-header h3::after {
      content: '';
      position: absolute;
      width: 80px;
      height: 3px;
      background: var(--secondary);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    .section-header p { 
      font-size: 18px; 
      line-height: 1.8; 
      max-width: 800px; 
      margin: 0 auto;
      color: var(--gray);
    }
    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
    
    .about-text p {
      margin-bottom: 20px;
      font-size: 16px;
    }
    
    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    
    .stat-item {
      text-align: center;
      padding: 20px;
      background: var(--light);
      border-radius: 10px;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }
    
    .stat-item:hover {
      transform: translateY(-5px);
    }
    
    .stat-number {
      font-size: 36px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 5px;
    }
    
    .stat-text {
      font-size: 14px;
      color: var(--gray);
    }
    
    .about-image {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }

    /* Companies Section */
    .company-slider { 
      position: relative;
      overflow: hidden;
      padding: 20px 0;
    }
    
    .company-track { 
      display: flex; 
      animation: scroll 30s linear infinite; 
    }
    
    .company-track img {
      height: 80px;
      width: 160px;
      object-fit: contain;
      margin: 0 30px; 
      filter: grayscale(100%); 
      transition: var(--transition);
      opacity: 0.7;
      background: var(--white);
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    .company-track img:hover { 
      filter: none; 
      transform: scale(1.1); 
      opacity: 1;
    }
    
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .company-slider::before,
    .company-slider::after {
      content: '';
      position: absolute;
      top: 0;
      width: 100px;
      height: 100%;
      z-index: 2;
    }
    
    .company-slider::before {
      left: 0;
      background: linear-gradient(to right, rgba(255,255,255,1), rgba(255,255,255,0));
    }
    
    .company-slider::after {
      right: 0;
      background: linear-gradient(to left, rgba(255,255,255,1), rgba(255,255,255,0));
    }

    /* Students Section */
    .students-container {
      position: relative;
      max-width: 300px;
      margin: 0 auto;
    }
    
    .students-carousel {
      position: relative; 
      overflow: hidden; 
      border-radius: 12px; 
      box-shadow: var(--shadow);
    }
    
    .students-slide { 
      display: flex; 
      transition: transform 0.8s ease-in-out; 
    }
    
    .student-card {
      min-width: 100%;
      position: relative;
    }
    
    .student-card img { 
      width: 100%; 
      height: 600px; 
      object-fit: cover; 
      display: block;
    }
    
    .student-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(3,34,65,0.9));
      color: var(--white);
      padding: 30px;
      transform: translateY(20px);
      opacity: 0;
      transition: var(--transition);
    }
    
    .student-card:hover .student-info {
      transform: translateY(0);
      opacity: 1;
    }
    
    .student-info h4 {
      font-size: 22px;
      margin-bottom: 5px;
    }
    
    .student-info p {
      font-size: 16px;
      margin-bottom: 10px;
    }
    
    .student-company {
      display: inline-block;
      background: var(--secondary);
      padding: 5px 15px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 500;
    }
    
    .carousel-controls {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 30px;
    }
    
    .carousel-btn {
      display: none;
    }

    /* Process Section */
    .process-steps {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    margin-top: 50px;
    position: relative;
    gap: 20px;
    }

    .process-step {
    text-align: center;
    padding: 28px 16px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    flex: 0 0 200px;
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    }

    .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

    .process-step h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    }

    .process-step p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    }

    .step-number {
    width: 56px;
    height: 56px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(3,34,65,0.3);
    }

    .process-steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 2px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    z-index: 0;
    }

    /* Students Carousel */
    .students-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    }

    .students-carousel {
    position: relative; 
    overflow: hidden; 
    border-radius: 12px; 
    box-shadow: var(--shadow);
    height: 600px;
    }

    .students-slide { 
    display: flex; 
    transition: transform 0.8s ease-in-out; 
    height: 100%;
    }

    .student-card {
    min-width: 100%;
    position: relative;
    height: 100%;
    }

    .student-card img { 
    width: 100%; 
    height: 100%; 
    object-fit: contain; 
    display: block;
    background: var(--light);
    }

    .student-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(3,34,65,0.9));
    color: var(--white);
    padding: 30px;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    }

    .student-card:hover .student-info {
    transform: translateY(0);
    opacity: 1;
    }

    .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    }

    .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    }

    .indicator.active {
    background: var(--secondary);
    transform: scale(1.2);
    }

    /* Responsive for Process Section */
    @media(max-width: 1100px){
    .process-step {
        flex: 0 0 170px;
        width: 170px;
    }
    .process-steps::before {
        display: none;
    }
    }

    @media(max-width: 860px){
    .process-steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    .process-step {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    }

    @media(max-width: 768px){
    .process-step {
        flex: 0 0 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .students-carousel {
        height: 350px;
    }
    }

    @media(max-width: 576px){
    .students-carousel {
        height: 300px;
    }
    }

    /* Contact Section */
    .contact { 
      background: var(--primary); 
      color: var(--white); 
      padding: 100px 10%; 
    }
    
    .contact .section-header h3 {
      color: var(--white);
    }
    
    .contact .section-header h3::after {
      background: var(--secondary);
    }
    
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      margin-top: 60px;
    }
    
    .contact-info { 
      display: flex; 
      flex-direction: column;
      gap: 32px;
    }
    
    .contact-item { 
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      background: rgba(255,255,255,0.08);
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.1);
      transition: all 0.3s ease;
    }
    
    .contact-item:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-2px);
    }
    
    .contact-item i { 
      font-size: 28px; 
      color: var(--secondary); 
      margin-top: 2px;
      min-width: 28px;
    }
    
    .contact-details h4 {
      font-size: 20px;
      margin-bottom: 8px;
      font-weight: 600;
    }
    
    .contact-details p {
      opacity: 0.9;
      font-size: 16px;
      line-height: 1.5;
    }
    
    .contact-form {
      background: rgba(255,255,255,0.08);
      padding: 40px;
      border-radius: 20px;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.1);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-control {
      width: 100%;
      padding: 16px 20px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 12px;
      color: var(--white);
      font-size: 16px;
      transition: all 0.3s ease;
      font-family: inherit;
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--secondary);
      background: rgba(255,255,255,0.18);
      box-shadow: 0 0 0 3px rgba(77, 184, 255, 0.2);
    }
    
    .form-control::placeholder {
      color: rgba(255,255,255,0.7);
      font-weight: 400;
    }
    
    textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }
    
    .submit-btn {
      background: linear-gradient(135deg, var(--secondary) 0%, #3498db 100%);
      color: var(--white);
      border: none;
      padding: 16px 32px;
      border-radius: 12px;
      font-weight: 600;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 4px 15px rgba(77, 184, 255, 0.3);
    }
    
    .submit-btn:hover {
      background: linear-gradient(135deg, #3498db 0%, var(--secondary) 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(77, 184, 255, 0.4);
    }
    
    .social-icons { 
      margin-top: 40px; 
      text-align: center; 
    }
    
    .social-icons a { 
      color: var(--white); 
      font-size: 24px; 
      margin: 0 15px; 
      transition: var(--transition); 
      display: inline-block;
    }
    
    .social-icons a:hover { 
      color: var(--secondary); 
      transform: translateY(-5px);
    }

    /* Footer */
    footer { 
      background: linear-gradient(135deg, var(--dark) 0%, #001122 100%);
      color: var(--white); 
      padding: 60px 5% 30px; 
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--secondary), transparent);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      text-align: left;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .footer-column {
      transition: all 0.3s ease;
    }
    
    .footer-column h4 {
      font-size: 20px;
      margin-bottom: 24px;
      color: var(--white);
      position: relative;
      padding-bottom: 12px;
      font-weight: 600;
    }
    
    .footer-column h4::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--secondary), #3498db);
      border-radius: 2px;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      padding: 6px 0;
    }
    
    .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(8px);
      padding-left: 8px;
    }
    
    .footer-links a i {
      font-size: 16px;
      color: var(--secondary);
    }
    
    .copyright {
      padding-top: 30px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 15px;
      opacity: 0.8;
      background: rgba(255,255,255,0.02);
      margin: 0 -5%;
      padding-left: 5%;
      padding-right: 5%;
      padding-bottom: 30px;
      margin-bottom: -30px;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--secondary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
      box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .back-to-top.active {
      opacity: 1;
      visibility: visible;
    }
    
    .back-to-top:hover {
      background: var(--primary);
      transform: translateY(-5px);
    }

    /* Responsive */
    @media(max-width: 1200px){
      .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      
      .about-image {
        order: -1;
      }
    }
    
    @media(max-width: 992px){
      .contact-container {
        grid-template-columns: 1fr;
      }
      
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      
      .process-step::before {
        display: none;
      }
      
      .students-slide img {
        height: 400px;
      }
    }
    
    @media(max-width: 768px){
      header {
        padding: 12px 5%;
      }
      
      header.scrolled {
        padding: 8px 5%;
      }
      
      nav ul { 
        display: none; 
      }
      
      .mobile-menu {
        display: block;
      }
      
      .hero-content h2 { 
        font-size: 36px; 
      }
      
      .login-box {
        grid-template-columns: 1fr;
      }
      
      .section { 
        padding: 80px 5%; 
      }
      
      .contact { 
        padding: 80px 5%; 
      }
      
      footer {
        padding: 30px 5%;
      }
      
      .stats {
        grid-template-columns: 1fr;
      }
      
      .process-steps {
        grid-template-columns: 1fr;
      }
      
      .students-slide img {
        height: 300px;
      }
    }
    
    @media(max-width: 576px){
      .hero-content h2 { 
        font-size: 28px; 
      }
      
      .section-header h3 {
        font-size: 28px;
      }
      
      .student-info {
        padding: 20px;
      }
      
      .student-info h4 {
        font-size: 18px;
      }
    }