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

 body {
     font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     overflow-x: hidden;
     background: #f8f9fa;
 }

 /* Navbar Styles */
 .dropdown:hover .dropdown-menu {
     display: block;
 }

 .navbar {
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     padding: 15px 0;
     height: 80px;
 }

 .navbar-brand img {
     height: 95px;
     transition: transform 0.3s ease;
     width: 100px;
     margin-top: 25px;
     margin-left: -21px;
 }

 .nav-link {
     color: #333 !important;
     font-weight: 500;
     margin: 0 15px;
     position: relative;
     transition: color 0.3s ease;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: -5px;
     left: 50%;
     background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
     transition: all 0.3s ease;
     transform: translateX(-50%);
 }

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

 .btn-primary {
     background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
     border: none;
     padding: 10px 30px;
     border-radius: 50px;
     font-weight: 600;
     transition: all 0.3s ease;
     margin: 3px;
 }

 .btn-primary:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
 }

 /* Animated Background */
 .animated-bg {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
 }

 .floating-shape {
     position: absolute;
     opacity: 0.1;
     animation: floatShape 20s infinite ease-in-out;
 }

 .shape-1 {
     width: 300px;
     height: 300px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 50%;
     top: 10%;
     left: 10%;
     animation-delay: 0s;
 }

 .shape-2 {
     width: 200px;
     height: 200px;
     background: linear-gradient(135deg, #764ba2, #667eea);
     border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
     top: 60%;
     right: 10%;
     animation-delay: 5s;
 }

 .shape-3 {
     width: 250px;
     height: 250px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
     bottom: 10%;
     left: 30%;
     animation-delay: 10s;
 }

 @keyframes floatShape {

     0%,
     100% {
         transform: translate(0, 0) rotate(0deg);
     }

     25% {
         transform: translate(50px, -50px) rotate(90deg);
     }

     50% {
         transform: translate(-30px, 30px) rotate(180deg);
     }

     75% {
         transform: translate(30px, 50px) rotate(270deg);
     }
 }

 /* Hero Section */
 .hero-section {
     min-height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 150px 0 80px;
     position: relative;
     background: linear-gradient(135deg, #1000ff, #1b00ff 50%, #00ffa1 100%);
     overflow: hidden;
 }

 .hero-section::before {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,106.7C1248,96,1344,96,1392,96L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
     background-size: cover;
     opacity: 0.3;
     animation: waveMove 15s infinite ease-in-out;
 }

 @keyframes waveMove {

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

     50% {
         transform: translateX(-50px);
     }
 }

 .hero-content {
     position: relative;
     z-index: 2;
     color: white;
     text-align: center;
 }

 .hero-title {
     font-size: 4.5rem;
     font-weight: 800;
     margin-bottom: 30px;
     animation: fadeInScale 1s ease;
     text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.5rem;
     opacity: 0.95;
     margin-bottom: 50px;
     animation: fadeInUp 1s ease 0.3s backwards;
 }

 .scroll-indicator {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     animation: bounce 2s infinite;
 }

 .scroll-indicator i {
     font-size: 2rem;
     color: white;
 }

 @keyframes bounce {

     0%,
     20%,
     50%,
     80%,
     100% {
         transform: translateY(0);
     }

     40% {
         transform: translateY(-20px);
     }

     60% {
         transform: translateY(-10px);
     }
 }

 /* Mission Vision Cards */
 .mv-section {
     padding: 100px 0;
     position: relative;
 }

 .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .section-header h2 {
     font-size: 3.5rem;
     font-weight: 800;
     background: black;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 20px;
     animation: fadeInScale 1s ease;
 }

 .section-header p {
     font-size: 1.2rem;
     color: #666;
     animation: fadeInUp 1s ease 0.2s backwards;
 }

 .mv-card-wrapper {
     perspective: 1000px;
     margin-bottom: 50px;
 }

 .mv-card {
     background: white;
     border-radius: 30px;
     padding: 60px 50px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
     transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
     position: relative;
     overflow: hidden;
     height: 100%;
 }

 .mv-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
     transition: left 0.8s ease;
 }

 .mv-card:hover::before {
     left: 100%;
 }

 /* .mv-card:hover {
            transform: translateY(-20px) rotateY(5deg);
            box-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
        } */

 .mv-icon-wrapper {
     width: 120px;
     height: 120px;
     margin: 0 auto 40px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 30px;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     animation: rotateIcon 10s linear infinite;
 }

 @keyframes rotateIcon {

     0%,
     100% {
         transform: rotate(0deg) scale(1);
     }

     25% {
         transform: rotate(5deg) scale(1.05);
     }

     50% {
         transform: rotate(0deg) scale(1);
     }

     75% {
         transform: rotate(-5deg) scale(1.05);
     }
 }

 .mv-icon-wrapper i {
     font-size: 4rem;
     color: white;
     animation: iconPulse 2s ease-in-out infinite;
 }

 @keyframes iconPulse {

     0%,
     100% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.1);
     }
 }

 .mv-card h3 {
     font-size: 2.5rem;
     font-weight: 800;
     color: #333;
     margin-bottom: 25px;
     text-align: center;
 }

 .mv-card p {
     font-size: 1.15rem;
     line-height: 2;
     color: #555;
     text-align: center;
 }

 /* Core Values Section */
 .values-section {
     padding: 100px 0;
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
     position: relative;
 }

 .value-item {
     background: white;
     border-radius: 25px;
     padding: 50px 40px;
     margin-bottom: 30px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     position: relative;
     overflow: hidden;
 }

 .value-item::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: linear-gradient(90deg, #667eea, #764ba2);
     transform: scaleX(0);
     transition: transform 0.5s ease;
 }

 .value-item:hover::after {
     transform: scaleX(1);
 }

 .value-item:hover {
     transform: translateX(20px) scale(1.02);
     box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
 }

 .value-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #667eea, #764ba2);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     transition: all 0.4s ease;
 }

 .value-item:hover .value-icon {
     transform: rotate(360deg) scale(1.1);
 }

 .value-icon i {
     font-size: 2.5rem;
     color: white;
 }

 .value-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 15px;
 }

 .value-description {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #666;
 }

 /* Goals Section */
 .goals-section {
     padding: 100px 0;
     background: white;
 }

 .goal-timeline {
     position: relative;
     padding: 50px 0;
 }

 .timeline-line {
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 4px;
     background: linear-gradient(180deg, #667eea, #764ba2, #667eea);
     transform: translateX(-50%);
     background-size: 100% 200%;
     animation: gradientFlow 3s ease infinite;
 }

 @keyframes gradientFlow {

     0%,
     100% {
         background-position: 0% 0%;
     }

     50% {
         background-position: 0% 100%;
     }
 }

 .goal-item {
     display: flex;
     margin-bottom: 100px;
     position: relative;
     opacity: 0;
     animation: slideInTimeline 1s ease forwards;
 }

 .goal-item:nth-child(odd) {
     flex-direction: row;
     padding-right: calc(50% + 60px);
     animation-delay: 0.2s;
 }

 .goal-item:nth-child(even) {
     flex-direction: row-reverse;
     padding-left: calc(50% + 60px);
     animation-delay: 0.4s;
 }

 @keyframes slideInTimeline {
     from {
         opacity: 0;
         transform: translateY(50px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .goal-content {
     background: white;
     padding: 40px;
     border-radius: 25px;
     box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
     transition: all 0.4s ease;
     position: relative;
 }

 .goal-content:hover {
     transform: scale(1.05);
     box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
 }

 .goal-number {
     font-size: 3rem;
     font-weight: 800;
     background: linear-gradient(135deg, #667eea, #764ba2);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     margin-bottom: 15px;
 }

 .goal-title {
     font-size: 1.8rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 15px;
 }

 .goal-description {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #666;
 }

 .timeline-dot {
     position: absolute;
     left: 50%;
     top: 40px;
     width: 30px;
     height: 30px;
     background: #667eea;
     border-radius: 50%;
     transform: translateX(-50%);
     border: 5px solid white;
     box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.3);
     animation: dotPulse 2s ease-in-out infinite;
 }

 @keyframes dotPulse {

     0%,
     100% {
         box-shadow: 0 0 0 5px rgba(102, 126, 234, 0.3);
     }

     50% {
         box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
     }
 }

 /* Footer */
 .footer {
     background: #1a1a2e;
     color: white;
     padding: 60px 0 30px;
 }

 .footer h5 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .footer ul {
     list-style: none;
     padding: 0;
 }

 .footer ul li {
     margin-bottom: 12px;
 }

 .footer ul li a {
     color: rgba(255, 255, 255, 0.8);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .footer ul li a:hover {
     color: white;
     transform: translateX(5px);
     display: inline-block;
 }

 .social-links {
     display: flex;
     gap: 15px;
     margin-top: 20px;
 }

 .social-links a {
     width: 40px;
     height: 40px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .social-links a:hover {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     transform: translateY(-3px);
 }

 /* Animations */
 @keyframes fadeInScale {
     from {
         opacity: 0;
         transform: scale(0.8);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     #navbarNav {
         flex-basis: 100%;
         flex-grow: 1;
         align-items: center;
         background: #ffffff;
     }

     button.navbar-toggler {
         margin-top: 31px;
     }

     #oop {
         padding: 51px 0 320px;

     }

     .section-header h2 {
         font-size: 2.2rem;
     }

     #new {
         margin-top: -23px;
     }

     .timeline-line {
         left: 30px;
     }


     .goal-item:nth-child(odd),
     .goal-item:nth-child(even) {
         padding-left: 70px;
         padding-right: 0;
     }

     .timeline-dot {
         left: 30px;
     }
 }

 body #new {
     margin-top: -60px !important;
 }

 @media (min-width: 992px) {
     .navbar-expand-lg .navbar-collapse {
         display: flex !important;
         flex-basis: auto;
         margin-top: 59px;
     }
 }
