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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
    /* line-height: 1.6; */
    overflow-x: hidden;
    line-height: normal;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}
.logo img{
    width: 240px;
}
.nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    font-size: 15px;
}

.nav-link:hover {
    transform: translateY(-2px);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3dd9af 0%, #27b896 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(61, 217, 175, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(61, 217, 175, 0.4);
    background: linear-gradient(135deg, #4fe3bd 0%, #2dc9a4 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(61, 217, 175, 0.35);
}

.btn-secondary {
    background: white;
    color: #27b896;
    border: 2px solid #27b896;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    box-shadow: 0 2px 8px rgba(39, 184, 150, 0.15);
}

.btn-secondary:hover {
    background: #27b896;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(39, 184, 150, 0.25);
}

.btn-white {
    background: white;
    color: #27b896;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, background 0.2s;
    font-size: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    background: #f8fffe;
}

.btn-white:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
    padding: 14px 30px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(255,255,255,0.2);
}

.btn-outline:hover {
    background: white;
    color: #27b896;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.3);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* Hero Section - New Design */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fffe 100%);
    position: relative;
    overflow: hidden;
}

/* University Logos Background */
.hero-bg-logos {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.logo-bg {
    position: absolute;
    font-size: 28px;
    font-weight: 700;
    color: rgba(39, 184, 150, 0.08);
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.logo-bg-1 {
    top: 10%;
    left: 5%;
    font-size: 32px;
    transform: rotate(-15deg);
}

.logo-bg-2 {
    top: 20%;
    right: 8%;
    font-size: 26px;
    transform: rotate(12deg);
}

.logo-bg-3 {
    top: 45%;
    left: 3%;
    font-size: 30px;
    transform: rotate(-8deg);
}

.logo-bg-4 {
    bottom: 30%;
    right: 5%;
    font-size: 28px;
    transform: rotate(10deg);
}

.logo-bg-5 {
    top: 60%;
    left: 15%;
    font-size: 24px;
    transform: rotate(-12deg);
}

.logo-bg-6 {
    top: 35%;
    right: 15%;
    font-size: 26px;
    transform: rotate(8deg);
}

.logo-bg-7 {
    bottom: 15%;
    left: 8%;
    font-size: 30px;
    transform: rotate(-10deg);
}

.logo-bg-8 {
    top: 75%;
    right: 20%;
    font-size: 25px;
    transform: rotate(15deg);
}

.logo-bg-9 {
    top: 15%;
    left: 25%;
    font-size: 27px;
    transform: rotate(-5deg);
}

.logo-bg-10 {
    bottom: 20%;
    right: 30%;
    font-size: 29px;
    transform: rotate(7deg);
}

.hero-content-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text-section {
    padding-right: 20px;
}

.hero-title-new {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #0a0a0a;
    letter-spacing: -0.5px;
}
.hero-title-new  span{
    color: #27b896;
}
.hero-subtitle-new {
    font-size: 19px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-trust-badges {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8fcf5;
    border-radius: 12px;
}

.trust-text {
    font-size: 15px;
    color: #2d3748;
    line-height: 1.4;
}

.trust-text strong {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
}

.hero-form-section {
    display: flex;
    justify-content: center;
}

.hero-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    width: 100%;
    max-width: 480px;
    border: 1px solid #e8fcf5;
}

.form-header {
    margin-bottom: 28px;
    text-align: center;
}

.form-badge-new {
    background: linear-gradient(135deg, #e8fcf5 0%, #d1f4e8 100%);
    color: #0d7558;
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 15px;
    color: #718096;
}

.hero-form-new input,
.hero-form-new select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.hero-form-new input:focus,
.hero-form-new select:focus {
    outline: none;
    border-color: #3dd9af;
    box-shadow: 0 0 0 4px rgba(61, 217, 175, 0.1);
}

.hero-form-new .phone-input-group {
    display: block;
    margin-bottom: 16px;
}

.hero-form-new .phone-input-group .country-code,
.hero-form-new .phone-input-group input {
    margin-bottom: 0;
}

.hero-form-new .btn-form {
    width: 100%;
    margin-top: 8px;
    font-size: 17px;
    padding: 18px 32px;
}

.form-footer-note {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secure-icon {
    font-size: 16px;
}

/* Old Hero Styles for compatibility */
.hero-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 60px;
    align-items: flex-start;
}

.hero-left {
    padding-top: 40px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0a0a0a;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 0;
    line-height: 1.8;
}

.hero-right {
    position: relative;
}

.hero-form-card {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: 30px;
}

.hero-form {
    background: linear-gradient(135deg, #fff5f7 0%, #ffe8ed 100%);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-badge {
    background: #c2f5e6;
    color: #0d7558;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-form input,
.hero-form-card input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
}

.hero-form input:focus,
.hero-form-card input:focus {
    outline: none;
    border-color: #3dd9af;
    box-shadow: 0 0 0 3px rgba(61, 217, 175, 0.1);
}

.hero-form button,
.hero-form-card button {
    width: 100%;
    margin-top: 8px;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Floating Badges */
.badge-float {
    position: absolute;
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: float 3s ease-in-out infinite;
}

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

.badge-1 { top: -20px; left: -40px; animation-delay: 0s; }
.badge-2 { top: 40px; right: -30px; animation-delay: 0.5s; }
.badge-3 { bottom: 180px; left: -50px; animation-delay: 1s; }
.badge-4 { bottom: 80px; right: -40px; animation-delay: 1.5s; }
.badge-5 { bottom: -20px; left: 50%; transform: translateX(-50%); animation-delay: 2s; }

.badge-icon {
    font-size: 20px;
}

.green-dot {
    color: #27b896;
    font-size: 24px;
}

.badge-title {
    font-size: 11px;
    color: #718096;
}

.badge-value {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 14px;
}

.badge-subtitle {
    font-size: 11px;
    color: #718096;
}

/* Universities Placed Section */
.universities-placed {
    padding: 80px 0;
    background: #fafafa;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: normal;
    /* margin-bottom: 60px;
    line-height: 1.3; */
    color: #0a0a0a;
}

/* Student Cards Container */
.student-cards-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.student-card {
    width: 180px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.student-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

.student-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.student-card-footer {
    padding: 16px 12px;
    background: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80px;
}

.university-logo-img {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.university-logo-styled {
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Poppins', sans-serif;
}

.university-badge {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Keep old styles for compatibility */
.university-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.university-logo {
    font-size: 20px;
    font-weight: 600;
    color: #2d3748;
    padding: 20px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
}

.university-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* MBA Benefits Section */
.mba-benefits {
    padding: 100px 0;
    background: white;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5568;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Bento Grid Layout */
.benefits-bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card-new {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.benefit-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.benefit-card-new:nth-child(1) {
    grid-column: span 2;
}

.benefit-card-new:nth-child(2) {
    grid-column: span 2;
}

.benefit-card-new:nth-child(3) {
    grid-column: span 2;
}

.benefit-card-new:nth-child(4) {
    grid-column: span 2;
}

.card-green {
    background: linear-gradient(135deg, #e8fcf5 0%, #d1f4e8 100%);
}

.card-with-image .benefit-top-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.benefit-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.benefit-title-new {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
    line-height: 1.3;
}

.benefit-text-new {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

/* Old benefit styles for compatibility */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.benefit-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.benefit-card.highlight {
    background: linear-gradient(135deg, #e8fcf5 0%, #d1f4e8 100%);
}

.benefit-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.benefit-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0a0a0a;
}

.benefit-text {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8fcf5 100%);
    text-align: center;
}

.cta-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.cta-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

/* Global Partners */
.global-partners {
    padding: 80px 0;
    background: white;
}

.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.partner-logo {
    /* font-size: 18px;
    font-weight: 600;
    color: #2d3748; 
    padding: 15px 25px;*/
        padding: 10px 12px;
        max-width: 150px;
}
.partner-logo img{
    width: 100%;
}
/* Study Locations */
.study-locations {
    padding: 100px 0;
    background: #fafafa;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    transition: transform 0.3s;
}

.location-card:hover {
    transform: scale(1.05);
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 100%);
    padding: 30px 24px;
    color: white;
}

.location-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.location-overlay ul {
    list-style: none;
    margin-bottom: 16px;
    font-size: 14px;
}

.location-overlay li {
    margin-bottom: 8px;
}

.location-link {
    color: #3dd9af;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.2s;
}

.location-link:hover {
    color: #27b896;
}

/* Green Hero Section */
.green-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #27b896 0%, #1a9574 100%);
    color: white;
}

.green-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.green-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    display: inline-block;
}

.green-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.green-subtitle {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.8;
    opacity: 0.95;
}

.green-features {
    list-style: none;
    margin-bottom: 32px;
}

.green-features li {
    font-size: 17px;
    margin-bottom: 16px;
    padding-left: 8px;
}

.green-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.avatar-group {
    display: flex;
    margin-left: -8px;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 3px solid #27b896;
    margin-left: -8px;
}

.green-buttons {
    display: flex;
    gap: 16px;
}

.green-hero-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* How It Works - New Timeline Design */
.how-it-works {
    padding: 100px 0;
    background: #fafafa;
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-visual {
    position: relative;
    margin-bottom: 24px;
}

.step-image-wrapper {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    border: 6px solid white;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-item:hover .step-image-wrapper {
    transform: scale(1.05);
    box-shadow: 0 16px 50px rgba(0,0,0,0.18);
}

.step-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-number-badge {
    position: absolute;
    bottom: -10px;
    right: 10px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3dd9af 0%, #27b896 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(61, 217, 175, 0.4);
}

.step-connector {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d1f4e8 0%, #c2f5e6 100%);
    align-self: center;
    margin-top: -140px;
    position: relative;
}

.step-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -14px;
    font-size: 24px;
    color: #27b896;
}

.step-content {
    max-width: 240px;
}

.step-title-new {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.step-text-new {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

/* Old step styles for compatibility */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step-card {
    background: #fafafa;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.step-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e0f9f1;
    margin-bottom: 16px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0a0a0a;
}

.step-text {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

/* Testimonials - New Design */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-size: 42px;
    font-weight: 800;
    color: #0a0a0a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 18px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card-new {
    background: #fafafa;
    border-radius: 20px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

.testimonial-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3dd9af 0%, #27b896 100%);
}

.testimonial-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.testimonial-quote-icon {
    font-size: 64px;
    color: #c2f5e6;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text-new {
    font-size: 16px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 32px;
    flex: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #c2f5e6;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-size: 17px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 4px;
}

.testimonial-author-details {
    font-size: 14px;
    color: #718096;
    margin-bottom: 2px;
}

.testimonial-author-university {
    font-size: 13px;
    color: #27b896;
    font-weight: 600;
}

/* Old testimonial styles for compatibility */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.quote-mark {
    font-size: 80px;
    color: #e0f9f1;
    line-height: 0.5;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.8;
    margin-bottom: 32px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3dd9af 0%, #27b896 100%);
}

.author-name {
    font-size: 18px;
    font-weight: 700;
    color: #0a0a0a;
}

.author-info {
    font-size: 14px;
    color: #718096;
}

.author-university {
    font-size: 14px;
    color: #27b896;
    font-weight: 600;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: background 0.2s, transform 0.2s;
}

.testimonial-nav:hover {
    background: #f0fdf9;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-nav.prev {
    left: -70px;
}

.testimonial-nav.next {
    right: -70px;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8fcf5 0%, #d1f4e8 100%);
}

.final-form {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.final-form input,
.final-form select {
    padding: 16px 20px;
    border: 2px solid #c2f5e6;
    border-radius: 12px;
    font-size: 15px;
    transition: border 0.3s, box-shadow 0.3s;
    font-family: 'Poppins', sans-serif;
    background: white;
    width: 100%;
}

.final-form input:focus,
.final-form select:focus {
    outline: none;
    border-color: #3dd9af;
    box-shadow: 0 0 0 3px rgba(61, 217, 175, 0.1);
}

.phone-input-group-final {
    display: block;
}

.program-select-final {
    grid-column: span 2;
}

.final-form button {
    grid-column: span 2;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: #0a0a0a;
    color: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3dd9af;
}

/* Modal Popup */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    max-width: 1000px;
    width: 90%;
    max-height: 90vh;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 28px;
    color: #718096;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
    transform: rotate(90deg);
}

.modal-content {
    display: grid;
    grid-template-columns: 45% 55%;
}

.modal-left {
    background: linear-gradient(135deg, #e8fcf5 0%, #d1f4e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.modal-right {
    padding: 50px 45px;
    background: white;
}

.modal-title {
    font-size: 32px;
    font-weight: 800;
    color: #0a0a0a;
    line-height: 1.3;
    margin-bottom: 12px;
}

.modal-subtitle {
    font-size: 16px;
    color: #718096;
    margin-bottom: 32px;
}

.modal-form input,
.modal-form select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s, box-shadow 0.3s;
    background: #f7fafc;
}

.modal-form input:focus,
.modal-form select:focus {
    outline: none;
    border-color: #3dd9af;
    box-shadow: 0 0 0 4px rgba(61, 217, 175, 0.1);
    background: white;
}

.phone-input-group {
   display: block;
    margin-bottom: 16px;
}

.country-code {
    margin-bottom: 0 !important;
}

.phone-input-group input {
    margin-bottom: 0 !important;
}

.btn-modal-submit {
    width: 100%;
    padding: 18px 32px;
    background: #0a0a0a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
}

.btn-modal-submit:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.btn-modal-submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .green-hero-content,
    .hero-content-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title-new {
        font-size: 42px;
    }
    
    .hero-text-section {
        padding-right: 0;
        order: 1;
    }
    
    .hero-form-section {
        order: 2;
    }
    
    .hero-form-wrapper {
        max-width: 100%;
    }
    
    .locations-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-nav.prev {
        left: -30px;
    }
    
    .testimonial-nav.next {
        right: -30px;
    }
    
    .modal-content {
        grid-template-columns: 1fr;
    }
    
    .modal-left {
        display: none;
    }
    
    .modal-right {
        padding: 40px 30px;
    }
    
    .benefits-bento-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card-new:nth-child(1),
    .benefit-card-new:nth-child(2),
    .benefit-card-new:nth-child(3),
    .benefit-card-new:nth-child(4) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    .hero {
        padding: 60px 0 80px;
    }
    
    .hero-title,
    .hero-title-new {
        font-size: 32px;
    }
    
    .hero-subtitle-new {
        font-size: 16px;
    }
    
    .hero-trust-badges {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-form-wrapper {
        padding: 32px 24px;
    }
    
    .form-title {
        font-size: 22px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .benefits-grid,
    .locations-grid,
    .steps-grid,
    .testimonials-grid,
    .benefits-grid-ty {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        display: none;
    }
    
    .final-form {
        grid-template-columns: 1fr;
    }
    
    .final-form button {
        grid-column: span 1;
    }
    
    .phone-input-group-final {
        grid-column: span 1;
    }
    
    .program-select-final {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons,
    .green-buttons {
        flex-direction: column;
    }
    
    .nav {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-bg-logos {
        display: none;
    }
    
    .modal-title {
        font-size: 24px;
    }
    
    .modal-container {
        width: 95%;
    }
}
.iti {

    width: 100%;
}
.status.js-status.err {
    color: #f00;
    font-size: 15px;
    text-align: center;
    padding: 10px 0 0;
}