
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary-dark: #1a1b39;
            --accent-green: #79da03;
            --accent-teal: #00d6fe;
            --dark-bg: #0c0d1f;
            --text-light: #ffffff;
            --text-dark: #073830;
        }

        body {
            color: var(--text-light);
            overflow-x: hidden;
            min-height: 100vh;
            font-family: "Inter-Regular", Helvetica;
            background: var(--dark-bg);
            padding-top: 5rem; /* Space for fixed navbar */
        }
        
        /* =================== NEW NAVBAR STYLES =================== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            padding: 1.5rem 2rem;
            z-index: 1000;
            transition: all 0.4s ease;
            height: 5rem;
            background: #0a0b1f;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1800px;
        }
        
        .logo-container a {
            display: flex;
            align-items: center;
            text-decoration: none;
        }
        
        .logo-container img {
            height: 120px;
            transition: all 0.3s ease;
        }
        
        .nav-links {
            display: flex;
            gap: 1.2rem;
            align-items: center;
        }
        
        .nav-item {
            position: relative;
            font-size: 1.05rem;
            font-weight: 500;
            color: var(--text-light);
            text-decoration: none;
            padding: 0.6rem 1.2rem;
            border-radius: 2rem;
            transition: all 0.3s ease;
        }
        
        .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
            font-weight: 600;
        }
        
        .login-btn {
            background: transparent;
            color: var(--text-light);
            border: 2px solid var(--text-light);
            border-radius: 2rem;
            padding: 0.6rem 1.8rem;
            font-size: 1.05rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 1rem;
        }
        
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--text-light);
            cursor: pointer;
            margin-left: 1.5rem;
            transition: all 0.3s ease;
        }
        .close-menu {
    display: none;
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    z-index: 1000001;
    transition: color 0.3s;
}
.close-menu:hover {
    color: var(--accent-teal);
}

@media (max-width: 992px) {
    .close-menu {
        display: block;
    }
    .navbar.scrolled .close-menu {
        color: var(--primary-dark);
    }
}

        
        /* Scrolled state */
        .navbar.scrolled {
            background-color: white;
            padding: 0.8rem 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.scrolled .nav-item {
            color: var(--primary-dark);
        }
        
        .navbar.scrolled .nav-item:hover:not(.active) {
            color: #00a2c7;
        }
        
        .navbar.scrolled .nav-item.active {
            background-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .login-btn {
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        
        .navbar.scrolled .login-btn:hover {
            background-color: var(--accent-teal);
            border-color: var(--accent-teal);
            color: var(--text-dark);
        }
        
        .navbar.scrolled .hamburger {
            color: var(--primary-dark);
        }
        
        /* Hover effects */
        .nav-item:hover:not(.active) {
            color: var(--accent-teal);
            transform: translateY(-2px);
        }
        
        .nav-item.active:hover {
            background-color: #00bde5;
            box-shadow: 0 0 15px rgba(0, 214, 254, 0.5);
        }
        
        .login-btn:hover {
            background-color: rgba(0, 214, 254, 0.1);
        }
        
        .hamburger:hover {
            color: var(--accent-teal);
            transform: scale(1.1);
        }
        
        /* Mobile menu */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: var(--primary-dark);
                flex-direction: column;
                align-items: flex-start;
                padding: 7rem 2rem 2rem;
                transition: right 0.4s ease;
                z-index: 1;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }
            
            .nav-links.active {
                right: 0;
            }
            
            .navbar.scrolled .nav-links {
                background: white;
            }
            
            .navbar.scrolled .nav-links .nav-item {
                color: var(--primary-dark);
            }
            
            .hamburger {
                display: block;
                z-index: 1000000;
            }
        }
        
        @media (max-width: 768px) {
            .logo-container img {
                height: 100px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-container img {
                height: 80px;
            }
            
            .login-btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.95rem;
                margin-left: 0.5rem;
            }
        }
        /* =================== END NEW NAVBAR STYLES =================== */
        
        /* Existing styles */
        .header-section {
            position: relative;
            min-height: 100vh;
            padding: 2rem;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            background-color: var(--dark-bg);
            min-width: fit-content;
        }
        
        .header-content {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            max-width: 1800px;
            margin: 0 auto;
            padding: 2rem 0;
            position: relative;
            z-index: 2;
        }
        
        .text-content {
            max-width: 650px;
            padding-right: 2rem;
            z-index: 3;
        }
        
        .your-journey-to-a {
            font-weight: 700;
            color: var(--accent-green);
            font-size: 55px;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            font-family: "Inter-Bold", Helvetica;
        }
        
        .empowering-the-next {
            font-weight: 400;
            color: var(--text-light);
            font-size: 25px;
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }
        
        .cta-buttons {
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .cta-btn {
            padding: 1rem 2.5rem;
            border-radius: 3rem;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            min-width: 180px;
        }
        
        .btn-primary {
            background-color: var(--accent-teal);
            color: var(--text-dark);
            border: none;
        }
        
        .btn-primary:hover {
            background-color: #00bde5;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 214, 254, 0.4);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: var(--text-light);
            border: 2px solid var(--accent-teal);
        }
        
        .btn-secondary:hover {
            background-color: rgba(0, 214, 254, 0.1);
            transform: translateY(-5px);
        }
        
    .image-content {
  position: relative;
  z-index: 2;
  width: 50%;
  display: flex;
  justify-content: flex-end;
}

        
    .vecteezy-dna-spiral {
  position: absolute;
  width: 80%;
  max-width: 700px;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.3;
  animation: dna-pulse 3s ease-in-out infinite;
  transform-origin: center;
  z-index: 1;
}
        
  .vecteezy {
  width: 80%;
  max-width: 700px;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  margin-bottom: -4rem;
}

        
        @keyframes dna-pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.05);
                opacity: 0.4;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.3;
            }
        }

        /* Responsive Design */
@media (max-width: 1200px) {
  .header-content {
    flex-direction: column;
    text-align: center;
    padding-top: 4rem;
  }

  .text-content {
    max-width: 100%;
    padding-right: 0;
    margin-top: 3rem;
  }

  .image-content {
    width: 100%;
    justify-content: center;
    max-width: 700px;
  }

  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 992px) {

  .header-content {
    align-items: center;
  }


  .background-shape {
    height: 90%;
  }
}

@media (max-width: 768px){
      .header-content img{
    margin-bottom: -3rem;
  }

    .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .header-content {
    align-items: center;
  }

  .text-content {
    margin-top: 5rem;
  }

  .header-content h1 {
    font-size: 26px;
    font-weight: 700;
    margin-left: -0.8rem;
    text-align: center;
    margin-top: 2rem;
  }

  .header-content p {
    font-size: 15px;
    text-align: center;
    padding-left: 1.5rem !important;
    margin-right: .8rem !important;
  }
  .stats-section{
    margin-top: -4rem;
  }
  .welcome-section p{
    padding-left: 2rem;
    margin-right: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    margin: 0;
    gap: 0.8rem;
  }
  .text-wrapper-40{
    margin-left: 1rem !important;
  }

  .cta-btn {
    width: 100%;
    box-sizing: border-box;
  }
  .programs-container{
    padding: .8rem;
  }
  .why-nips-container{
    padding: .8rem;
  }
  .campus-section{
    padding: .8rem !important;
  }

  .vecteezy {
    width: 100%;
  }

  .background-shape {
    width: 95%;
    height: 92%;
    border-radius: 3rem;
  }
}

        
        /* Scroll indicator */
        .scroll-indicator {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #00d6fe, #0a8cff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            z-index: 100;
        }
        
        .scroll-indicator:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
 
        /*------------------------------
        WELCOME NIPS SECTION
        ------------------------------*/

        /* Welcome Section */
        .welcome-section {
          position: relative;
          padding: 150px 0 100px;
          height: auto;
          align-items: center;
          background-color: #e0f5fa;
          width: 100%;
          z-index: 1;
        }

        .welcome-heading {
          text-align: center;
        }

        .text-wrapper-36 {
          font-family: "Inter", sans-serif;
          font-weight: 700;
          color: #1a1b39;
          font-size: 48px;
          letter-spacing: 0;
          margin-top: -5rem;
        }

        .welcome-line {
          margin-top: 1rem;
        }

        .text-wrapper-37 {
          font-family: "Inter", sans-serif;
          font-weight: 500;
          color: #000000;
          font-size: 24px;
          letter-spacing: 0;
          margin-bottom: 5rem;
          margin-top: 2rem;
        }

        .overlap-3 {
          position: relative;
          max-width: 1192px;
          margin: 0 auto;
          height: auto;
        }

        .overlap-4 {
          display: flex;
          flex-wrap: wrap;
          position: relative;
          gap: 40px;
        }

        .text-content {
          flex: 1;
          min-width: 300px;
          position: relative;
          z-index: 2;
        }

        .text-wrapper-38,
        .text-wrapper-39,
        .strategically {
          font-family: "Inter", sans-serif;
          font-weight: 400;
          color: #000000;
          font-size: 20px;
          letter-spacing: 0;
          line-height: 32px;
          margin-bottom: 30px;
        }

        .image-container {
          flex: 1;
          min-width: 300px;
          position: relative;
          display: flex;
          justify-content: center;
          align-items: center;
        }

        .rectangle-8 {
          position: absolute;
          width: 450px;
          height: 503px;
          background-color: #00d6feba;
          border-radius: 35px;
          z-index: 1;
        }

        .vecteezy-young {
          width: 100%;
          max-width: 599px;
          height: auto;
          object-fit: cover;
          position: relative;
          z-index: 2;
          margin-top: -1.6rem;
          margin-left: -8rem;
        }

        .div-wrapper {
          position: absolute;
          width: 193px;
          height: 74px;
          background-color: #00d6fe;
          border-radius: 68px;
          display: flex;
          align-items: center;
          justify-content: center;
          cursor: pointer;
          transition: all 0.3s ease;
          bottom: -30px;
          left: 0;
          z-index: 3;
        }

        .div-wrapper:hover {
          transform: translateY(-5px);
          box-shadow: 0 10px 20px rgba(0, 214, 254, 0.4);
        }

        .text-wrapper-40 {
          font-family: "Inter", sans-serif;
          font-weight: 600;
          color: #ffffff;
          font-size: 24px;
          letter-spacing: 0;
          line-height: 38.4px;
        }

        /* Statistics Section */
        .stats-section {
          padding: 150px 0 100px;
          position: relative;
          background-color: #e0f5fa;
        }

        .stats-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          gap: 40px;
          max-width: 1200px;
          margin: 0 auto;
        }

        .stat-card {
          position: relative;
          width: 249px;
          height: 271px;
          background-color: #ffffff;
          border-radius: 22px;
          box-shadow: 7px 7px 8px rgba(98, 98, 98, 0.25);
          display: flex;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          padding: 30px;
          text-align: center;
        }

        .stat-number {
          font-family: "Inter", sans-serif;
          font-weight: 700;
          color: #00d6fe;
          font-size: 64px;
          line-height: 102.4px;
          margin-bottom: 10px;
        }

        .stat-title {
          font-family: "Inter", sans-serif;
          font-weight: 600;
          color: #1a1b39;
          font-size: 24px;
          letter-spacing: 0;
          line-height: 38.4px;
        }

        /* Animation Classes */
        .hidden {
          opacity: 0;
          transform: translateY(50px);
          transition: all 1s ease;
        }

        .show {
          opacity: 1;
          transform: translateY(0);
        }

        .slide-in-left {
          transform: translateX(-100px);
          opacity: 0;
          transition: all 1s ease;
        }

        .slide-in-right {
          transform: translateX(100px);
          opacity: 0;
          transition: all 1s ease;
        }

        .slide-in-left.show,
        .slide-in-right.show {
          transform: translateX(0);
          opacity: 1;
        }

        .scale-in {
          transform: scale(0.8);
          opacity: 0;
          transition: all 1s ease;
        }

        .scale-in.show {
          transform: scale(1);
          opacity: 1;
        }


/* Responsive Design */
@media (max-width: 1100px) {
  .overlap-4 {
    flex-direction: column;
  }

  .image-container {
    order: -1;
    margin-bottom: 60px;
  }

  .div-wrapper {
    position: relative;
    margin-top: 30px;
    bottom: 0;
    left: 0;
  }

  .line {
    top: 80px;
  }
}

@media (max-width: 768px) {
  .welcome-section {
    padding: 100px 0 50px !important;
    justify-content: center;
  }
 

  .text-wrapper-36 {
    font-size: 36px;
  }

  .text-wrapper-37 {
    font-size: 20px;
  }
  .overlap-7,
  .overlap-6,
  .overlap-5 {
    border-radius: 22px;
    margin-left: -3rem;
    width: 225px;
  }
  .stats-container {
    justify-content: center;
  }

  .text-wrapper-38,
  .text-wrapper-39,
  .strategically {
    font-size: 18px;
    line-height: 28px;
  }

  .text-wrapper-41,
  .text-wrapper-43,
  .text-wrapper-44,
  .stat-number {
    font-size: 48px;
    line-height: 76.8px;
  }

  .text-wrapper-42,
  .text-wrapper-45,
  .internship-guarantee,
  .stat-title {
    font-size: 20px;
    line-height: auto;
    justify-content: left;
  }

  .rectangle-8 {
    width: 300px;
    height: 400px;
    margin-left: 1rem;
  }
  .vecteezy-young {
    width: 29rem;
    margin-right: -6rem;
  }
  .image-container{
    display: none;
  }
  .text-content {
    margin-left: 2rem;
    margin-top: -3rem;
  }
  .div-wrapper {
    margin-left: 7rem;
  }
}

@media (max-width: 480px) {
  .text-wrapper-36 {
    font-size: 28px;
  }

  .text-wrapper-37 {
    font-size: 18px;
  }

  .text-wrapper-38,
  .text-wrapper-39,
  .strategically {
    font-size: 16px;
    line-height: 24px;
  }

  .div-wrapper {
    width: 160px;
    height: 60px;
  }

  .text-wrapper-40 {
    font-size: 20px;
  }

  .stat-card {
    width: 100%;
    max-width: 300px;
  }

  .line {
    width: 200px;
  }
}

/*----------------------------------
OUR PROGRAMS SECTION
----------------------------------*/

.programs-section {
  padding: 100px 20px;
  background-color: rgb(191, 239, 249);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1b39;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  max-width: 612px;
  margin: 0 auto;
}

.section-divider {
  width: 272px;
  height: 10px;
  margin-bottom: 2rem;
}

.programs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.program-card {
  width: 374px;
  background: #ffffff;
  border-radius: 34px;
  box-shadow: 2px -1px 19.5px 1px rgba(38, 38, 38, 0.25);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.program-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 2px 10px 30px rgba(38, 38, 38, 0.3);
}

.program-image {
  width: 100%;
  height: 341px;
  object-fit: cover;
  display: block;
}

.program-content {
  padding: 30px 25px 40px;
}

.program-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1b39;
  line-height: 1.3;
  margin-bottom: 25px;
}

.program-duration {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 10px;
}

.program-description {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1.5;
  margin-bottom: 30px;
}

.program-features {
  list-style: none;
  margin-bottom: 30px;
}

.program-feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}

.feature-icon {
  width: 17px;
  height: 17px;
  margin-right: 15px;
  color: #00d6fe;
}

.feature-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 15px 0;
}

.learn-more-btn {
  width: 201px;
  height: 36px;
  background: #00d6fe;
  border-radius: 60px;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  cursor: pointer;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background: #00bde5;
}

/* Responsive design */
@media (max-width: 1200px) {
  .programs-container {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .program-card {
    width: 340px;
  }
}

@media (max-width: 768px) {
  .programs-section {
    padding: 70px 20px;
  }

  .section-header {
    margin-bottom: 60px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .program-card {
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .program-title {
    font-size: 22px;
  }

  .program-description,
  .program-feature {
    font-size: 15px;
  }
}
 /*---------------------------
        WHY CHOSE NIPS SECTION
        ----------------------------*/

        .why-nips-section {
          background-color: #e0f5fa;
          padding: 80px 20px;
          position: relative;
          overflow: hidden;
          min-height: 100vh;
          display: flex;
          align-items: center;
          z-index: 1;
        }

        .why-nips-container {
          max-width: 1400px;
          width: 100%;
          margin: 0 auto;
          position: relative;
          z-index: 2;
        }

        .section-header {
          text-align: center;
          margin-bottom: 70px;
          position: relative;
        }

        .section-header h2 {
          font-size: 48px;
          font-weight: 700;
          color: #1a1b39;
          margin-bottom: 20px;
          position: relative;
          display: inline-block;
        }

        .section-header p {
          font-size: 24px;
          font-weight: 500;
          color: #000;
          max-width: 700px;
          margin: 0 auto 50px;
          line-height: 1.4;
        }

        .features-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 40px;
        }

        .feature-card {
          background: #fff;
          border-radius: 40px;
          box-shadow: 0 10px 30px rgba(122, 122, 122, 0.15);
          padding: 40px 25px;
          text-align: center;
          transition: all 0.4s ease;
          position: relative;
          overflow: hidden;
          transform: translateY(30px);
          opacity: 0;
          animation: fadeInUp 0.6s forwards;
        }

        .feature-card:nth-child(1) {
          animation-delay: 0.2s;
        }
        .feature-card:nth-child(2) {
          animation-delay: 0.4s;
        }
        .feature-card:nth-child(3) {
          animation-delay: 0.6s;
        }
        .feature-card:nth-child(4) {
          animation-delay: 0.8s;
        }
        .feature-card:nth-child(5) {
          animation-delay: 1s;
        }
        .feature-card:nth-child(6) {
          animation-delay: 1.2s;
        }

        .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 15px 35px rgba(0, 118, 189, 0.2);
        }

        .feature-card::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 5px;
          background: linear-gradient(90deg, #00d6fe, #0a8cff);
          opacity: 0;
          transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
          opacity: 1;
        }

        .icon-container {
          width: 132px;
          height: 132px;
          background: linear-gradient(135deg, #00d6fe, #0a8cff);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          margin: 0 auto 30px;
          transition: all 0.3s ease;
          box-shadow: 0 5px 15px rgba(0, 214, 254, 0.3);
        }

        .feature-card:hover .icon-container {
          transform: scale(1.1);
          box-shadow: 0 10px 25px rgba(0, 214, 254, 0.4);
        }

        .icon-container i {
          font-size: 60px;
          color: white;
        }

        .feature-title {
          font-size: 24px;
          font-weight: 700;
          color: #1a1b39;
          margin-bottom: 20px;
          line-height: 1.3;
        }

        .feature-description {
          font-size: 16px;
          font-weight: 400;
          color: #000;
          line-height: 1.6;
        }

        /* Animation */
        @keyframes fadeInUp {
          from {
            opacity: 0;
            transform: translateY(30px);
          }
          to {
            opacity: 1;
            transform: translateY(0);
          }
        }


/* Responsive Design */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 36px;
  }
  

  .section-header p {
    font-size: 20px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-card {
    padding: 35px 20px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 32px;
  }

  .section-header h2::after {
    width: 200px;
  }

  .section-header p {
    font-size: 18px;
    margin-top: 40px;
  }

  .icon-container {
    width: 110px;
    height: 110px;
  }

  .icon-container i {
    font-size: 50px;
  }

  .feature-title {
    font-size: 22px;
  }

  .decorative-circle {
    display: none;
  }
}

/*----------------------------------
INTERSHIP SECTION
---------------------------------*/

.internship-section {
  max-width: 1556px;
  margin: 0 auto;
  position: relative;
  background-color: rgb(191, 239, 249);
  overflow: hidden;
  padding: 96px 20px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.internship-section .section-title {
  text-align: center;
  font-weight: 700;
  color: #1a1b39;
  font-size: 48px;
  letter-spacing: 0;
  margin-bottom: 40px;
}

.internship-section .divider-line {
  margin-left: 35rem;
  margin-top: -1rem;
}

.internship-section .section-subtitle {
  text-align: center;
  font-weight: 500;
  color: #000000;
  font-size: 24px;
  letter-spacing: 0;
  max-width: 612px;
  margin: 0 auto 60px;
  margin-top: 1rem;
}

.internship-section .content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.internship-section .text-content {
  flex: 1;
  min-width: 600px;
}

.internship-section .intro-text {
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 32px;
  margin-bottom: 40px;
}

.internship-section .steps-container {
  position: relative;
  padding-left: 30px;
}

.internship-section .step-line {
  position: absolute;
  width: 8px;
  background: #1a1b39;
  left: 28px;
  top: 70px;
  bottom: 70px;
  margin-top: -4rem;
  margin-left: 1.8rem;
  height: 30rem;
}

.internship-section .step {
  position: relative;
  margin-bottom: 60px;
  padding-left: 70px;
}

.internship-section .step-circle {
  position: absolute;
  width: 56px;
  height: 56px;
  background-color: #00d6fe;
  border-radius: 50%;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 214, 254, 0.4);
}

.internship-section .step-number {
  font-weight: 400;
  color: #ffffff;
  font-size: 36px;
}

.internship-section .step-title {
  font-weight: 700;
  color: #1a1b39;
  font-size: 24px;
  margin-bottom: 15px;
}

.internship-section .step-description {
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  line-height: 32px;
}

.internship-section .cta-button {
  display: inline-block;
  background-color: #00d6fe;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  padding: 18px 40px;
  border-radius: 68px;
  text-decoration: none;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 214, 254, 0.3);
}

.internship-section .cta-button:hover {
  background-color: #00b8d9;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 214, 254, 0.4);
}

.internship-section .images-container {
  flex: 1;
  min-width: 500px;
  position: relative;
  height: 700px;
}

.internship-section .image {
  position: absolute;
  border-radius: 10%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  border: 5px solid white;
}

.internship-section .image-1 {
  width: 287px;
  height: 393px;
  top: 110px;
  right: 100px;
  z-index: 3;
}

.internship-section .image-2 {
  width: 193px;
  height: 262px;
  top: 283px;
  left: 80px;
  z-index: 2;
}

.internship-section .image-3 {
  width: 287px;
  height: 393px;
  top: 438px;
  left: 150px;
  z-index: 1;
}

.internship-section .image-1:hover,
.image-2:hover,
.image-3:hover {
  transform: translateY(-10px);
  z-index: 10;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .internship-section .content-container {
    gap: 40px;
  }

  .internship-section .text-content {
    min-width: 500px;
  }

  .internship-section .images-container {
    min-width: 400px;
  }
}

@media (max-width: 992px) {
  .internship-section .section-title {
    font-size: 42px;
  }

  .internship-section .section-subtitle {
    font-size: 22px;
    margin-bottom: 50px;
  }

  .internship-section .content-container {
    flex-direction: column;
    gap: 40px;
  }

  .internship-section .images-container {
    height: 600px;
    min-width: 100%;
    margin-top: 30px;
  }

  .internship-section .image-1 {
    top: 50px;
    right: 50px;
  }

  .internship-section .image-2 {
    top: 200px;
    left: 50px;
  }

  .internship-section .image-3 {
    top: 350px;
    left: 100px;
  }
}

@media (max-width: 768px) {
  .internship-section .internship-section {
    padding: 60px 20px;
  }

  .internship-section .section-title {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .internship-section .section-subtitle{
    margin-bottom:-2rem;
    
  }

  .step-line {
    height: 39rem !important;
  }

  .internship-section .section-subtitle {
    font-size: 20px;
  }

  .internship-section .text-content {
    min-width: 100%;
    padding: 0 10px;
    margin-top: 4rem;
  }

  .internship-section .intro-text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 30px;
  }

  .internship-section .step {
    margin-bottom: 50px;
    padding-left: 60px;
  }

  .internship-section .step-circle {
    width: 50px;
    height: 50px;
  }

  .internship-section .step-number {
    font-size: 32px;
  }

  .internship-section .step-title {
    font-size: 22px;
  }

  .step-description {
    font-size: 18px;
    line-height: 28px;
  }

  .cta-button {
    font-size: 20px;
    padding: 16px 36px;
    margin-top: 10px;
    margin-left: -3rem;
  }

  /* Hide images on mobile */
  .images-container {
    display: none;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 32px;
  }

  .divider-line {
    width: 150px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .step {
    padding-left: 50px;
    margin-bottom: 40px;
  }

  .step-circle {
    width: 45px;
    height: 45px;
  }

  .step-number {
    font-size: 28px;
  }

  .step-title {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 16px;
    line-height: 26px;
  }

  .cta-button {
    font-size: 18px;
    padding: 14px 32px;
    width: 100%;
    text-align: center;
  }

  .step-line {
    height: 26rem;
    margin-top: -3.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }

  .step-line {
    height: 24rem;
  }
}

/*-------------------------------
        TESTIMONIAL SECTION
        ---------------------------------*/

.testimonials-section {
  margin: 0 auto;
  padding: 60px 15px;
  text-align: center;
  position: relative;
  width: 100%;
  background-color: #e0f5fa;
}

.section-heading {
  font-weight: 700;
  color: #1a1b39;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding: 0 10px;
}

.section-subheading {
  font-weight: 500;
  color: #4a5568;
  font-size: clamp(18px, 3vw, 24px);
  margin-bottom: 50px;
  position: relative;
  max-width: 700px;
  margin: 20px auto 50px;
  padding: 0 20px;
  line-height: 1.4;
}

.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 10px 0 30px;
}

.testimonials-carousel {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
  padding: 10px 0;
  touch-action: pan-y;
}

.testimonial-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 25px;
  min-width: 300px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 12px;
  flex: 0 0 calc(100% - 24px);
  width: calc(100% - 24px);
  max-width: 340px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.testimonial-avatar {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  top: 25px;
  left: 25px;
  border: 4px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-name {
  font-weight: 700;
  color: #1a1b39;
  font-size: clamp(20px, 2.5vw, 24px);
  text-align: center;
  margin-top: 5px;
  margin-bottom: 6px;
  padding-left: 95px;
}

.testimonial-role {
  font-weight: 500;
  color: #4a5568;
  font-size: clamp(14px, 1.8vw, 16px);
  text-align: center;
  margin-bottom: 15px;
  padding-left: 95px;
}

.testimonial-text {
  font-weight: 400;
  color: #4a5568;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: 1.65;
  text-align: left;
}

/* Decorative elements */
.decorative-element {
  position: absolute;
  opacity: 0.05;
  z-index: -1;
}

.decor-1 {
  top: 8px;
  right: 8px;
  width: 55px;
  transform: rotate(15deg);
}

.decor-2 {
  bottom: 8px;
  left: 8px;
  width: 45px;
  transform: rotate(-10deg);
}

/* Navigation buttons */
.carousel-nav {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 15px;
}

.nav-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: white;
  border: 2px solid #e2e8f0;
  color: #1a1b39;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.nav-btn:hover {
  background: #1a1b39;
  color: white;
  transform: scale(1.05);
}

.nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  background: white;
  color: #1a1b39;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #1a1b39;
  transform: scale(1.2);
}

.rating {
  color: #f59e0b;
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  margin: 12px 0 15px;
  padding-left: 95px;
}

/* Responsive adjustments */
@media (min-width: 576px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 70px 20px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 24px);
    max-width: calc(50% - 24px);
  }

  .carousel-container {
    padding: 15px 0 40px;
  }
}

@media (min-width: 992px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 24px);
    max-width: calc(33.333% - 24px);
  }

  .section-heading::after {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .testimonial-name,
  .testimonial-role {
    padding-left: 0;
    text-align: center;
  }

  .testimonial-avatar {
    position: static;
    margin: 0 auto 12px;
    display: block;
  }

  .rating {
    padding-left: 0;
    margin-bottom: 12px;
  }

  .carousel-nav {
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .testimonial-card {
    min-width: 280px;
    min-height: 240px;
    padding: 20px;
  }

  .testimonial-name {
    font-size: 19px;
  }

  .testimonial-role {
    font-size: 14px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .testimonial-avatar {
    width: 75px;
    height: 75px;
  }

  .nav-btn {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .section-subheading {
    margin-bottom: 40px;
  }
}

/* Swipe indicator */
.swipe-indicator {
  display: none;
  text-align: center;
  margin-top: 15px;
  color: #718096;
  font-size: 14px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

@media (max-width: 767px) {
  .swipe-indicator {
    display: block;
  }
}


/*----------------------
CAMPUS SECTION
-----------------------*/

.campus-section {
  background-color: rgb(191, 239, 249);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  padding: 60px 40px;
  position: relative;
  justify-content: center;
}

.campus-section  .section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}


.section-title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: #1a1b39;
  font-size: 48px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #000000;
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
}



.section-description {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 20px;
  line-height: 1.8;
  max-width: 992px;
  margin: 0 auto 50px;
  text-align: center;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  height: 15rem;
  width: auto;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(26, 27, 57, 0.9), transparent);
  padding: 25px 20px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 600;
}

.overlay p {
  font-size: 14px;
  opacity: 0.9;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #3a86ff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
  color: white;
  font-size: 50px;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.4);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(58, 134, 255, 0.8);
}

/* Caption */
.lightbox-caption {
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 18px;
  max-width: 80%;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .gallery-container {
    gap: 20px;
  }

  .section-title {
    font-size: 42px;
  }

  .section-subtitle {
    font-size: 22px;
  }

  .section-description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .campus-section {
    padding: 40px 25px;
  }

.campus-section{
  padding: .5rem;
}
  .section-title {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 20px;
  }

  .section-description {
    font-size: 17px;
    margin-bottom: 40px;
  }
  .lightbox {
    margin-left: -1rem;
  }
}

@media (max-width: 576px) {
  .gallery-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .campus-section {
    padding: 30px 20px;
  }

  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .section-description {
    font-size: 16px;
    line-height: 1.7;
  }

  .section-subtitle::after {
    width: 200px;
    height: 8px;
    bottom: -20px;
  }
}

/*---------------------------
        GET IN TOUCH SECTION
        ---------------------------*/

.contact-section {
  width: 100%;
  background: #c9ecf2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1b39;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 24px;
  font-weight: 500;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  height: 6px;
  background: linear-gradient(to right, #1a1b39, #00d6fe);
  width: 280px;
  margin: 15px auto 40px;
  border-radius: 10px;
  height: 0.5rem;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
}

.contact-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding: 15px 20px;
  border-radius: 12px;
  background: #f1f8ff;
  transition: all 0.3s ease;
}

.contact-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 52px;
  height: 52px;
  background-color: #1a1b39;
  border-radius: 6px;
  flex-shrink: 0;
}

.contact-icon i {
  color: white;
  font-size: 24px;
  margin-top: .8rem !important;
  margin-left: .8rem !important;
}

.contact-details h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1b39;
  margin-left: 1rem;
  line-height: normal;
}


.contact-details p {
  font-size: 20px;
  font-weight: 400;
  color: #000000;
  line-height: 1.6;
  margin-left: 2rem;
}

.chat-btn {
  background-color: #00d6fe;
  color: white;
  border: none;
  border-radius: 68px;
  padding: 18px 40px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  width: 100%;
  max-width: 250px;
}

.chat-btn:hover {
  background-color: #00bde5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 214, 254, 0.4);
}

.chat-btn i {
  margin-right: 10px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 20px;
  font-size: 20px;
  border: 1px solid #07383061;
  border-radius: 10px;
  background: #ffffff;
  color: #000;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d6fe;
  box-shadow: 0 0 0 3px rgba(0, 214, 254, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0, 0, 0, 0.64);
  opacity: 1;
}

.form-group textarea {
  height: 180px;
  resize: vertical;
}

.submit-btn {
  background-color: #00d6fe;
  color: white;
  border: none;
  border-radius: 68px;
  padding: 18px 40px;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #00bde5;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 214, 254, 0.4);
}

/* Decorative lines */
.decor-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00d6fe, transparent);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .contact-section {
    padding: 50px 40px;
  }

  .section-title h2 {
    font-size: 42px;
  }

  .section-title p {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-info,
  .contact-form {
    width: 100%;
  }

  .chat-btn {
    max-width: 100%;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 20px;
  }

  .contact-details h3 {
    font-size: 22px;
  }

  .contact-details p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 30px;
    width: 100%;
  }
 .contact-info{
  padding: .5rem;
 }
.contact-form{
  padding: .5rem;
}
  .section-title h2 {
    font-size: 32px;
  }

  .section-title p {
    font-size: 18px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }
  

  .contact-icon i {
    font-size: 20px;
  }

  .contact-details{
    margin-left: 3rem;
    margin-top: -3.5rem;
  }
  .contact-details p{
    display: inline;
  }

  .chat-btn,
  .submit-btn {
    font-size: 20px;
    padding: 16px 30px;
  }

  .form-group input,
  .form-group textarea {
    padding: 15px 18px;
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 30px 20px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .contact-details h3 {
    font-size: 20px;
  }

  .contact-details p {
    font-size: 16px;
  }

  .chat-btn,
  .submit-btn {
    font-size: 18px;
  }

  .contact-block {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-icon {
    margin-bottom: 15px;
  }
}

/*----------------------------------
        FOOTER SECTION
        --------------------------------*/

.footer-section {
  position: relative;
  width: 100%;
  background: linear-gradient(to bottom, #1a1b39 332px, #02031b 332px);
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.footer-content {
  position: relative;
  padding: 40px 30px 140px;
  max-width: 1550px;
  margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 60px;
  position: relative;
  z-index: 2;
  align-items: center;
  margin-left: 1rem;
}

.footer-text {
  flex: 1;
  color: white;
  padding: 20px 0;
}

.footer-text h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff, #00d6fe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-text p {
  font-size: 1.6rem;
  color: #dddddd;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.image-buttons-container {
  position: relative;
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer-image {
  width: 100%;
  max-width: 334px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  margin-top: -5.3rem;
  margin-right: 5rem;
}

.buttons-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
  justify-content: flex-end;
  margin-top: -6rem;
}

.footer-btn {
  padding: 18px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  background-color: #00d6fe;
  border: none;
  border-radius: 68px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px 3px rgba(0, 214, 254, 0.6);
  white-space: nowrap;
}

.footer-btn:hover {
  transform: translateY(-5px);
  background-color: #ffffff;
  color: #00d6fe;
  box-shadow: 0 0 30px 8px rgba(0, 214, 254, 0.8);
}

/* Footer Columns */
.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding-top: 80px;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
  flex: 1;
  min-width: 250px;
  color: white;
}

.footer-col h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #00d6fe;
  border-radius: 2px;
}

.footer-col p,
.footer-col a {
  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 12px;
  display: block;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  color: #00d6fe;
  transform: translateX(5px);
}

.contact-info div {
  margin-bottom: 12px;
  line-height: 1.7;
  display: flex;
  align-items: flex-start;
}

.contact-info div i {
  margin-right: 12px;
  color: #00d6fe;
  margin-top: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: center;
  align-items: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-bottom: -1rem;
}

.social-icon i {
  color: white;
  font-size: 1.2rem;
}

.social-icon:hover {
  background: #00d6fe;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 214, 254, 0.4);
}

/* Copyright */
.copyright {
  position: absolute;
  bottom: 40px;
  left: 30px;
  color: #dddddd;
  font-size: 1rem;
  font-style: italic;
  z-index: 2;
  width: calc(100% - 60px);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .footer-text h2 {
    font-size: 2.4rem;
  }

  .footer-text p {
    font-size: 1.1rem;
  }

  .footer-btn {
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 50px;
  }

  .image-buttons-container {
    align-items: center;
  }

  .buttons-container {
    justify-content: center;
  }

  .footer-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
 .footer-columns{
  margin-left: .5rem;
 }
  .footer-text p {
    max-width: 100%;
  }

  .footer-col h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 600px) {
  .footer-content {
    padding: 30px 20px 120px;
  }
   .footer-columns{
  margin-left: .5rem;
 }

  .footer-text h2 {
    font-size: 2rem;
  }

  .footer-text p {
    font-size: 1rem;
  }

  .footer-btn {
    padding: 14px 25px;
    font-size: 1rem;
    width: 100%;
  }

  .buttons-container {
    width: 100%;
  }

  .footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .footer-text h2 {
    font-size: 1.8rem;
  }

  .footer-col {
    min-width: 100%;
  }
}
/* (All your CSS as you posted above...) */

/* ============= FIX-ALL RESPONSIVE PATCH FOR MOBILE OVERFLOW ============= */
@media (max-width: 600px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  .header-section,
  .header-content,
  .text-content,
  .image-content,
  .cta-btn,
  .vecteezy,
  .vecteezy-dna-spiral,
  .vecteezy-young,
  .welcome-section,
  .overlap-4,
  .image-container,
  .programs-section,
  .why-nips-section,
  .internship-section,
  .testimonials-section,
  .campus-section,
  .contact-section,
  .footer-section {
    max-width: 100vw !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow-x: hidden !important;
  }
  img, svg, video {
    max-width: 100vw !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Remove negative margin on images or big lefts */
  .vecteezy-young {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .your-journey-to-a,
  .empowering-the-next,
  .cta-buttons,
  .text-content,
  .welcome-section,
  .overlap-4,
  .div-wrapper,
  .rectangle-8 {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* If you have ANY element with 'min-width' set, unset here: */
  .header-section,
  .vecteezy-young {
    min-width: 0 !important;
  }

  /* Fix gallery and grid columns to always fit */
  .gallery-container,
  .features-grid {
    max-width: 100vw !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow-x: hidden !important;
  }
}

/* Extra small screens (better safe than sorry) */
@media (max-width: 400px) {
  .footer-content,
  .footer-section,
  .header-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .gallery-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
