/* whatsapp button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 56px;
    height: 56px;
    background: #1f7244;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    text-decoration: none;

    /* Floating + glowing animation */
    animation: floatGlow 2.5s ease-in-out infinite;
}

/* Icon size */
.whatsapp-float i {
    font-size: 28px;
}

/* Hover effect */
.whatsapp-float:hover {
    background: #185a36;
    animation-play-state: paused;
}

/* Up-down + glow */
@keyframes floatGlow {
    0% {
        transform: translateY(0);
        box-shadow: 0 0 6px rgba(31,114,68,0.6);
    }
    50% {
        transform: translateY(-12px);
        box-shadow: 0 0 22px rgba(31,114,68,1);
    }
    100% {
        transform: translateY(0);
        box-shadow: 0 0 6px rgba(31,114,68,0.6);
    }
}
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 24px;
    }

    .whatsapp-float i {
        font-size: 24px;
    }
}

/* about page css  */

/* ABOUT SECTION MAIN */
.about-ardent {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    height: 85vh;
    padding: 0;
    overflow: hidden;
}

/* MAIN WRAPPER */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    width: 90%;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease-out forwards;
}

/* LEFT TEXT */
.about-text {
    flex: 1 1 460px;
    color: #1f7244;
    opacity: 0;
    animation: fadeLeft 1.2s ease-out forwards;
    animation-delay: 0.25s;
}

.about-label {
    letter-spacing: 2px;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 600;
    color: #1f7244;
}

.about-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: #1f7244;
    line-height: 1.2;
    margin-bottom: 12px;
}

.about-title span {
    color: #153d22;
}

.about-desc {
    margin: 12px 0;
    color: #333;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.6;
}

.values-title {
    margin-top: 18px;
    font-size: clamp(16px, 2vw, 20px);
    color: #1f7244;
    font-weight: 700;
}

.values-list {
    margin-top: 8px;
    padding-left: 20px;
    color: #555;
    font-size: clamp(14px, 1.5vw, 16px);
}

.values-list li {
    margin-bottom: 6px;
}

/* BUTTON */
.btn-about {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 26px;
    background: #1f7244;
    color: white;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s;
    font-size: clamp(14px, 1.5vw, 16px);
}

.btn-about:hover {
    background: #155c37;
    transform: translateY(-3px);
}

/* RIGHT IMAGE SIDE */
.about-image {
    position: relative;
    flex: 1 1 420px;
    opacity: 0;
    transform: scale(0.9);
    animation: zoomIn 1.2s ease-out forwards;
    animation-delay: 0.5s;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    position: relative;
    z-index: 2;
}

/* SHAPES */
.shape-circle {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: clamp(120px, 20vw, 220px);
    height: clamp(120px, 20vw, 220px);
    border-radius: 50%;
    background: #1f7244;
    opacity: 0.15;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

.shape-dots {
    position: absolute;
    bottom: -60px;
    left: -30px;
    width: clamp(90px, 15vw, 150px);
    height: clamp(90px, 15vw, 150px);
    background-image: radial-gradient(#1f7244 2px, transparent 2px);
    background-size: 14px 14px;
    opacity: 0.25;
    z-index: 1;
    animation: floatReverse 5s ease-in-out infinite;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

/* Tablets */
@media (max-width: 991px) {
    .about-ardent {
        height: auto;
        padding: 50px 0;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }
}

/* Large phones */
@media (max-width: 768px) {
    .about-title {
        font-size: clamp(24px, 7vw, 34px);
    }

    .about-desc {
        max-width: 100%;
    }

    .about-image {
        width: 100%;
    }
}

/* Small phones */
@media (max-width: 576px) {
    .about-ardent {
        padding: 40px 0;
    }

    .about-wrapper {
        width: 92%;
    }

    .btn-about {
        width: 100%;
        padding: 12px;
        font-size: 15px;
    }

    .shape-circle,
    .shape-dots {
        display: none;
    }
}

/* MVV section */
        .mvv-section {
            padding: 0;
            background-color: #ffffff;
        }

        .mvv-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            background: white;
            padding: 40px 20px;
            border-radius: 0;
            box-shadow: none;
            font-family: "Inter", sans-serif;
        }

        .cards-wrapper {
            display: flex;
            gap: 30px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .card {
            background: white;
            border: 3px solid #1f7244;
            border-radius: 15px;
            width: 320px;
            height: 265px;
            padding: 80px 30px 30px 30px;
            position: relative;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            animation: fadeInUp 0.6s ease-out forwards;
            opacity: 0;
        }

        .card:nth-child(1) {
            animation: fadeInUp 0.6s ease-out forwards, 
                       generateEffect 1.5s ease-out 0.1s forwards;
        }

        .card:nth-child(2) {
            animation-delay: 0.3s;
        }

        .card:nth-child(3) {
            animation-delay: 0.5s;
        }

        .card-header {
            position: absolute;
            top: -20px;
            left: 20px;
            right: 20px;
            background: #1f7244;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 20px;
            font-weight: bold;
            text-align: center;
            box-shadow: 0 4px 6px rgba(31, 114, 68, 0.3);
            animation: slideInRight 0.5s ease-out forwards;
            animation-delay: 0.3s;
            opacity: 0;
        }

        .card:nth-child(1) .card-header {
            animation: slideInRight 0.5s ease-out forwards,
                      glowPulse 1.5s ease-out 0.2s forwards;
        }

        .card:nth-child(2) .card-header {
            animation-delay: 0.4s;
        }

        .card:nth-child(3) .card-header {
            animation-delay: 0.6s;
        }

        .card-number {
            position: absolute;
            top: -25px;
            left: -15px;
            background: #1f7244;
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            border: 4px solid white;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .card-content {
            text-align: center;
            color: #666;
            line-height: 1.6;
            font-size: 14px;
            margin-bottom: 30px;
            min-height: 90px;
        }

        .card-icon {
            text-align: center;
            font-size: 50px;
            color: #1f7244;
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            transition: transform 0.3s ease;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes generateEffect {
            0% {
                filter: brightness(1);
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            }
            25% {
                filter: brightness(1.3);
                box-shadow: 0 0 30px rgba(31, 114, 68, 0.6),
                           0 0 60px rgba(31, 114, 68, 0.4);
            }
            50% {
                filter: brightness(1.5);
                box-shadow: 0 0 40px rgba(31, 114, 68, 0.8),
                           0 0 80px rgba(31, 114, 68, 0.5),
                           inset 0 0 20px rgba(31, 114, 68, 0.3);
                transform: scale(1.05) translateY(0);
            }
            75% {
                filter: brightness(1.3);
                box-shadow: 0 0 30px rgba(31, 114, 68, 0.6),
                           0 0 60px rgba(31, 114, 68, 0.4);
            }
            100% {
                filter: brightness(1);
                box-shadow: 0 4px 6px rgba(0,0,0,0.1);
                transform: scale(1) translateY(0);
            }
        }

        @keyframes glowPulse {
            0%, 100% {
                filter: brightness(1);
            }
            50% {
                filter: brightness(1.4);
                box-shadow: 0 4px 6px rgba(31, 114, 68, 0.3),
                           0 0 20px rgba(31, 114, 68, 0.8);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: translateX(-50%) scale(1);
            }
            50% {
                transform: translateX(-50%) scale(1.05);
            }
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Hover Effects */
        .card:hover {
            transform: translateY(-10px);
            transition: transform 0.3s ease;
            box-shadow: 0 8px 16px rgba(31, 114, 68, 0.3);
        }

        .card:hover .card-icon {
            animation: pulse 1s ease-in-out infinite;
            transform: translateX(-50%) scale(1);
        }

        .card:hover .card-number {
            animation: rotate 0.6s ease;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .cards-wrapper {
                flex-direction: column;
                align-items: center;
            }
            
            .mvv-section {
                padding: 0;
            }

            .mvv-container {
                padding: 30px 15px;
            }

            .card {
                width: 100%;
                max-width: 350px;
            }
        }
/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
  background: linear-gradient(135deg, #ffffff 0%, rgba(31, 114, 68, 0.05) 100%);
  padding: 30px 0;
  font-family: 'Inter', sans-serif;
}

.enroll .enrollment-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 20px 60px rgba(31, 114, 68, 0.15);
  border: 1px solid rgba(31, 114, 68, 0.1);
}

@media (max-width: 768px) {
  .enroll .enrollment-form-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
}

.enroll .enrollment-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
}

.enroll .enrollment-header h2 span {
  color: #1f7244;
}

@media (max-width: 768px) {
  .enroll .enrollment-header h2 {
    font-size: 1.4rem;
  }
}

.enroll .enrollment-header p {
  font-size: 0.875rem;
  color: rgba(31, 114, 68, 0.7);
  line-height: 1.6;
}

.enroll .enrollment-form .form-group {
  margin-bottom: 1.5rem;
}

.enroll .enrollment-form .form-group .form-label {
  font-weight: 600;
  color: #1f7244;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.enroll .enrollment-form .form-group .form-control,
.enroll .enrollment-form .form-group .form-select {
  background-color: #ffffff;
  border: 2px solid rgba(31, 114, 68, 0.15);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  color: #1f7244;
}

.enroll .enrollment-form .form-group .form-control:focus,
.enroll .enrollment-form .form-group .form-select:focus {
  border-color: #1f7244;
  box-shadow: 0 0 0 0.2rem rgba(31, 114, 68, 0.2);
  outline: none;
}

.enroll .enrollment-form .form-group .form-control::placeholder,
.enroll .enrollment-form .form-group .form-select::placeholder {
  color: rgba(31, 114, 68, 0.4);
}

.enroll .enrollment-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.enroll .enrollment-form .schedule-options .form-check {
  margin-bottom: 12px;
  padding: 15px 20px;
  background: rgba(31, 114, 68, 0.05);
  border-radius: 10px;
  border: 2px solid rgba(31, 114, 68, 0.15);
  transition: all 0.3s ease;
}

.enroll .enrollment-form .schedule-options .form-check:hover {
  background: rgba(31, 114, 68, 0.1);
  border-color: rgba(31, 114, 68, 0.3);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input {
  margin-top: 3px;
  margin-left: 0px;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input:checked {
  background-color: #1f7244;
  border-color: #1f7244;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-label {
  font-weight: 500;
  margin-left: 10px;
  cursor: pointer;
  font-size: 0.9rem;
}

.enroll .enrollment-form .agreement-section {
  background: rgba(31, 114, 68, 0.05);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #1f7244;
}

.enroll .enrollment-form .agreement-section .form-check {
  margin-bottom: 15px;
}

.enroll .enrollment-form .agreement-section .form-check:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-input:checked {
  background-color: #1f7244;
  border-color: #1f7244;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label {
  font-size: 0.85rem;
  line-height: 1.5;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a {
  color: #1f7244;
  text-decoration: underline;
  font-weight: 600;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a:hover {
  color: #1f7244;
}

.enroll .enrollment-form .btn-enroll {
  background: #1f7244;
  color: #ffffff;
  border: none;
  padding: 14px 36px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.enroll .enrollment-form .btn-enroll:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.enroll .enrollment-form .btn-enroll:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(31, 114, 68, 0.4);
}

.enroll .enrollment-form .btn-enroll:hover:before {
  left: 100%;
}

.enroll .enrollment-form .btn-enroll:active {
  transform: translateY(-1px);
}

.enroll .enrollment-form .btn-enroll .bi {
  font-size: 1.1rem;
}

.enroll .enrollment-form .enrollment-note {
  font-size: 0.8rem;
  color: rgba(31, 114, 68, 0.6);
  font-style: italic;
}

.enroll .enrollment-form .enrollment-note .bi {
  color: #1f7244;
  margin-right: 5px;
}

.enroll .enrollment-benefits {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 50px rgba(31, 114, 68, 0.1);
  border: 1px solid rgba(31, 114, 68, 0.1);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.enroll .enrollment-benefits h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #2c3e50;
  text-align: center;
}

.enroll .enrollment-benefits h3 span {
  color: #1f7244;
}

.enroll .enrollment-benefits .benefit-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(31, 114, 68, 0.05);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.enroll .enrollment-benefits .benefit-item:hover {
  background: rgba(31, 114, 68, 0.1);
  transform: translateX(5px);
}

.enroll .enrollment-benefits .benefit-item .benefit-icon {
  background: #1f7244;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
}

.enroll .enrollment-benefits .benefit-item .benefit-content h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1f7244;
}

.enroll .enrollment-benefits .benefit-item .benefit-content p {
  font-size: 0.725rem;
  color: rgba(31, 114, 68, 0.7);
  margin: 0;
  line-height: 1.4;
}

.enroll .enrollment-benefits .enrollment-stats {
  background: #1f7244;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item {
  display: block;
  margin-bottom: 15px;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item:last-child {
  margin-bottom: 0;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-label {
  display: block;
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 5px;
}

@media (max-width: 992px) {
  .enroll .enrollment-benefits {
    margin-top: 50px;
    position: static;
    top: auto;
  }
}

/* ============================================================
   our student work in section css yha se 
============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-heading {
  font-size: 28px;
  font-weight: 800;
  color: rgba(17, 17, 17, 1);
  line-height: 1.3;
  margin-top: 0;
}
.section-heading span {
  color: rgba(31, 114, 68, 1);
}
/* ============================================================
   VARIATION D — TIMELINE / MILESTONE STRIP
============================================================ */
.vd {
  background: #fff;
  padding: 30px 0 80px 0;
  border-top: 3px solid rgba(31, 114, 68, 1);
}
.vd-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  margin-top: 0;
  padding-top: 0;
}
.vd-line {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.vd-line::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 114, 68, 1) 60%, rgba(229, 229, 229, 1) 100%);
  z-index: 0;
}
.vd-node {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
  cursor: default;
}
.vd-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(31, 114, 68, 1);
  border: 3px solid rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 2px rgba(31, 114, 68, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 1);
  transition: all 0.25s;
  flex-shrink: 0;
}
.vd-node:hover .vd-dot {
  background: rgba(17, 17, 17, 1);
  box-shadow: 0 0 0 2px rgba(17, 17, 17, 1);
  transform: scale(1.15);
}
.vd-dot.hollow {
  background: rgba(255, 255, 255, 1);
  color: rgba(31, 114, 68, 1);
  border-color: rgba(229, 229, 229, 1);
  box-shadow: 0 0 0 2px rgba(229, 229, 229, 1);
  font-size: 11px;
  font-weight: 700;
}
.vd-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(17, 17, 17, 1);
  text-align: center;
  line-height: 1.4;
  max-width: 80px;
}
.vd-node:hover .vd-label {
  color: rgba(31, 114, 68, 1);
}
/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 600px) {
  .vd {
    padding: 30px 0 40px 0;
  }
  .vd-head {
    margin-bottom: 32px;
  }
  .section-heading {
    font-size: 24px;
  }
  .vd-line {
    flex-wrap: wrap;
    gap: 24px;
  }
  .vd-line::before {
    display: none;
  }
  .vd-node {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex: unset;
    width: 45%;
  }
  .vd-label {
    text-align: left;
    max-width: unset;
  }
}