:root {
    --primary-color: #7b5fed;
    --primary-hover: #694ce6;
    --light-purple: #f4f0ff;
    --light-purple-text: #7b5fed;
    --light-grey: #f5f5f5;
    --text-dark: #111111;
    --text-medium: #444444;
    --text-light: #777777;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --star-color: #ffb800;
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.55rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.btn-light-purple {
    background-color: var(--light-purple);
    color: var(--primary-color);
}

.btn-light-purple:hover {
    background-color: #e8e0ff;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 36px;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-light-grey {
    background-color: var(--light-grey);
    color: var(--text-medium);
    padding: 14px 36px;
}

.btn-light-grey:hover {
    background-color: #ebebeb;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid #d4ee27; /* Approximate greenish-yellow border */
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 30px;
    background-color: var(--white);
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* Image Section */
.image-section {
    max-width: 1100px;
    margin: 0 auto 100px;
    padding: 0 ;
}

.image-container {
    position: relative;
    border-radius: 20px;
    width: 100%;
    height: 500px;
}

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

/* Floating Cards */
.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.left-card {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 0 30px 20px;

    left: -150px;
    top: 33%;
    transform: translateY(-50%);
    width: 220px;
}

.stat-block h3 {
    font-size: 2rem;
    margin-bottom: 4px;
}

.stat-block p {
    font-size: 0.85rem;
    opacity: 0.9;
}

.stat-divider {
    height: 1px;
    background-color: rgba(255,255,255,0.2);
    margin: 20px 0;
}

.right-card {
    background-color: var(--white);
    padding: 24px;
    right: -120px;
    bottom: -60px;
    border: 1px solid var(--border-color);
    text-align: center;
    border-radius: 12px;
    min-width: 220px;
}

.right-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.stars {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--star-color);
    margin-bottom: 12px;
}

.rating-text {
    color: var(--text-medium);
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 8px;
}

.review-count {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .left-card {
        left: 20px;
    }
    
    .right-card {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide for mobile initially */
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .image-container {
        height: 400px;
    }
    
    .left-card {
        top: 20px;
        transform: none;
        padding: 20px;
        width: 200px;
    }
    
    .stat-block h3 {
        font-size: 1.5rem;
    }
}

/* Trusted Clients Section */
.trusted-clients {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--white);
    margin-top: 40px;
}

.section-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1250px;
    margin: 0 auto;
}

.client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

@media (max-width: 768px) {
    .clients-grid {
        gap: 30px;
    }
    
    .client-logo img {
        height: 50px;
    }
}

/* Products & Services Section */
.products-services {
    max-width: 1350px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-title.left-align {
    text-align: left;
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: 400;
}

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

.product-card {
    background-color: #f7f9fce9;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.product-card.full-width {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    padding-right: 0;
    padding-bottom: 0;
    min-height: 480px;
}

.product-card.full-width .card-content {
    flex: 1;
    max-width: 50%;
    padding-bottom: 40px;
}

.product-card.full-width .card-right-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    padding-top: 10px;
}

.product-card.full-width .card-action-top {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    margin-bottom: 30px;
    z-index: 10;
}

.product-card.full-width .btn-learn-more {
    font-size: 1.05rem;
    padding: 12px 28px;
    border-radius: 40px;
    background-color: #ededed; /* Grey button as in image */
    color: var(--text-dark);
}

.product-card.full-width .btn-learn-more:hover {
    background-color: #e2e2e2;
}

.product-card.full-width .card-image {
    width: 100%;
    margin-bottom: -15%;
    margin-right: -40px;
    display: flex;
    justify-content: flex-end;
}

.product-card.full-width .card-image img {
    width: 100%;
    max-width: none;
    height: auto;
    object-fit: cover;
    object-position: left top;
    border-top-left-radius: 12px;
    box-shadow: -15px -15px 40px rgba(0,0,0,0.04);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
}

.taptap-icon, .bbx-icon { background-color: #000; color: #00e676; }
.pg-icon { background-color: #6200ea; }
.train-icon { background-color: #ff9100; }
.place-icon { background-color: #651fff; }

.brand-info h4 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.brand-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-small {
    padding: 10px 28px;
    font-size: 1.1rem;
    background-color: #e2e8f0;
    color: var(--text-dark);
}

.btn-small:hover {
    background-color: #cbd5e1;
}

.card-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.product-card.full-width .card-title {
    font-size: 2.1rem;
}

.card-desc {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card.full-width {
        flex-direction: column;
        padding-right: 32px;
        padding-bottom: 0px;
    }
    
    .product-card.full-width .card-content {
        max-width: 100%;
        padding-bottom: 0px;
    }
    
    .product-card.full-width .card-action-top {
        justify-content: flex-start;
        padding-right: 0;
    }

    .product-card.full-width .card-image {
        margin-right: -32px;
    }
}

/* Latest News Section */
.latest-news {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header .section-title {
    margin-bottom: 0;
}

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

.news-card {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.news-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-dark);
}

.title-icon {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin-top: 4px;
}

.news-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 24px;
    flex: 1;
}

.news-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tag-purple {
    background-color: #f4f0ff;
    color: #7b5fed;
}

.tag-blue {
    background-color: #f0f7ff;
    color: #007bff;
}

.tag-orange {
    background-color: #fff5f0;
    color: #ff6b00;
}

@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Results Section */
.results-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.results-header {
    text-align: center;
    margin-bottom: 50px;
}

.results-header .section-title {
    font-size: 3rem;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
}

.results-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.metric-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.metric-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.metric-header h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background-color: #e6fcf0;
    color: #00c853;
    border: 1px solid #bdf2d5;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.metric-badge i {
    font-size: 0.75rem;
}

.metric-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.metric-image {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Awards Section */
.awards-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 20px;
}

.awards-header {
    margin-bottom: 60px;
    text-align: left;
}

.awards-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.awards-title {
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-dark);
}

.gradient-text {
    background: linear-gradient(90deg, #7162bd 0%, #57a0b8 50%, #68cfb0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.awards-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.award-item {
    flex: 1;
    min-width: 120px;
    max-width: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.award-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

@media (max-width: 900px) {
    .awards-title {
        font-size: 2.2rem;
    }
    
    .awards-grid {
        justify-content: center;
    }
    
    .award-item {
        max-width: 140px;
    }
}

/* Anniversary Section */
.anniversary-section {
    max-width: 1300px;
    margin: 100px auto;
    padding: 0 40px;
}

.anniversary-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.anniversary-logo {
    flex-shrink: 0;
}

.anniversary-logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}

.anniversary-content {
    flex: 1;
}

.anniversary-title {
    font-size: 2.6rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 20px;
    line-height: 1.3;
}

.decade-gradient {
    background: linear-gradient(90deg, #6fd3ae 0%, #46abb1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.anniversary-text {
    font-size: 1.1rem;
    color: #555555;
    line-height: 1.6;
    max-width: 950px;
}

@media (max-width: 768px) {
    .anniversary-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .anniversary-title {
        font-size: 2rem;
    }
    
    .anniversary-logo img {
        max-width: 150px;
    }
}

/* Trusted Colleges Region Section */
.trusted-colleges-region {
    padding: 60px 5%;
}

.region-container {
    background-color: #fdf5f0; /* Matched peachy-pink background more closely */
    border-radius: 24px;
    padding: 120px 80px 120px 100px; /* Increased padding for more spacious height and width */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1440px;
    margin: 0 auto;
}

.region-content {
    flex: 1;
    max-width: 650px;
}

.region-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px; /* Slightly tighter gap */
    font-size: 0.85rem; /* Smaller font matching the image */
    font-weight: 500;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px; /* More letter spacing for small caps look */
    margin-bottom: 25px;
}

.region-badge svg {
    transform: rotate(45deg); /* Tilted pin to match original */
}

.region-content h2 {
    font-size: 3rem; /* Slightly smaller to match proportion */
    line-height: 1.2;
    color: #2b2d31; /* Darker, crisper color */
    margin-bottom: 24px;
    font-weight: 400; /* Medium weight */
}

.region-content p {
    font-size: 1.1rem;
    color: #55585b; /* Grayer text matching image */
    line-height: 1.6;
    margin-bottom: 45px;
    max-width: 100%;
}

.btn-white {
    background-color: var(--white);
    color: #4a4d52; /* More subtle button text color */
    padding: 14px 34px;
    border-radius: 40px; /* Fully rounded pill shape */
    font-size: 0.95rem; /* Smaller font inside button */
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    border: none; /* No border, cleaner look */
}

.btn-white.shadow-sm {
    box-shadow: 0 4px 14px rgba(0,0,0,0.06); /* Softer, slightly more visible shadow */
}

.btn-white:hover {
    background-color: #fcfcfc;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

.region-map {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.map-image {
    max-width: 100%;
    height: auto;
    width: 520px;
    object-fit: contain;
}

@media (max-width: 992px) {
    .region-container {
        flex-direction: column;
        padding: 40px 30px;
    }
    
    .region-content {
        max-width: 100%;
        text-align: center;
    }
    
    .region-map {
        justify-content: center;
        margin-top: 40px;
    }
    
    .region-content h2 {
        font-size: 2.5rem;
    }
}

/* Milestones Section */
.milestones-section {
    padding: 80px 5%;
    text-align: center;
    background-color: var(--white);
    margin-top: 40px;
    margin-bottom: 60px;
}

.milestones-title {
    font-size: 2rem;
    color: #111;
    font-weight: 500;
    margin-bottom: 50px;
}

.milestones-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.milestone-item {
    text-align: left;
}

.milestone-number {
    font-size: 3.2rem;
    color: #8c6cf5; /* Matched to the soft purple in the image */
    font-weight: 350;
    line-height: 1.1;
    margin-bottom: 5px;
}

.milestone-text {
    font-size: 1.5rem;
    color: #3b3f46;
    font-weight: 400;
}

@media (max-width: 768px) {
    .milestones-grid {
        gap: 40px;
        flex-direction: column;
        text-align: center;
    }
    
    .milestone-item {
        text-align: center;
    }
}

/* Collaborations Section */
.collaborations-section {
    padding: 60px 5%;
    margin-bottom: 80px;
}

.collaborations-container {
    background-color: #f2f5fc; /* Soft bluish-gray background */
    border-radius: 20px;
    padding: 80px 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1440px;
    margin: 0 auto;
}

.collaborations-content {
    flex: 1;
    max-width: 800px;
}

.collab-subtitle {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #7b8084;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.collab-title {
    font-size: 3rem;
    line-height: 1.15;
    color: #2b2d31;
    margin-bottom: 28px;
    font-weight: 400;
}

.collab-desc {
    font-size: 1.15rem;
    color: #55585b;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 100%;
}

.collab-btn {
    border-radius: 40px;
    padding: 14px 34px;
}

.collaborations-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
}

.logo-circles-wrapper {
    position: relative;
    width: 450px;
    height: 350px;
}

.circle-logo {
    width: 160px;
    height: 160px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 15px;
}

.circle-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Specific positioning to match the uploaded image precisely */
.logo-ap {
    bottom: 20px;
    left: 30px;
    width: 150px;
    height: 150px;
}

.logo-tn {
    top: 20px;
    right: 150px;
    width: 150px;
    height: 150px;
}

.logo-task {
    bottom: 20px;
    right: 0px;
    width: 150px;
    height: 150px;
}

@media (max-width: 1100px) {
    .collaborations-container {
        flex-direction: column;
        padding: 60px 40px;
    }
    
    .collaborations-content {
        max-width: 100%;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .collaborations-visual {
        width: 100%;
    }
    
    .logo-circles-wrapper {
        width: 100%;
        max-width: 500px;
        transform: scale(0.8);
    }
}

@media (max-width: 600px) {
    .collab-title {
        font-size: 2.5rem;
    }
    .logo-circles-wrapper {
        transform: scale(0.6);
        left: -15%;
    }
}

/* PG Programs Section */
.pg-programs-section {
    padding: 90px 80px 110px 80px;
    background-color: #f2f1f1;
}

.pg-programs-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 42px;
    align-items: start;
}

.pg-programs-left {
    padding-top: 80px;
    max-width: 520px;
}

.pg-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    color: #2f3135;
    margin-bottom: 18px;
}

.pg-subtitle {
    font-size: 1.5rem;
    color: #52555b;
    font-weight: 400;
    margin-bottom: 24px;
}

.pg-description {
    font-size: 1rem;
    line-height: 1.75;
    color: #575b61;
    margin-bottom: 30px;
}

.pg-btn {
    padding: 14px 36px;
    border-radius: 999px;
    color: #4d4f55;
    font-size: 1rem;
}

.pg-programs-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.uni-card {
    background: #dedede;
    border-radius: 14px;
    overflow: hidden;
}

.uni-card-top {
    padding: 18px 18px 14px;
    min-height: 160px;
}

.uni-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.uni-card-description {
    font-size: 0.90rem;
    line-height: 1.45;
    color: #3f4248;
}

.uni-brand img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
}

.uni-brand h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #2b2d31;
    margin-bottom: 2px;
}

.uni-brand span {
    display: block;
    font-size: 0.9rem;
    color: #6f7278;
}

.uni-card-top p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: #3f4248;
}

.uni-card-image {
    width: 100%;
    height: 145px;
    object-fit: cover;
    display: block;
}

@media (max-width: 1200px) {
    .pg-programs-container {
        grid-template-columns: 1fr;
    }

    .pg-programs-left {
        max-width: 760px;
        padding-top: 20px;
    }
}

@media (max-width: 900px) {
    .pg-title {
        font-size: 3rem;
    }

    .pg-subtitle {
        font-size: 1.55rem;
    }

    .pg-programs-right {
        grid-template-columns: 1fr;
    }
}

/* Companies Section */
.companies-section {
    background-color: #ececec;
    padding: 90px 80px 90px 80px;
}

.companies-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.companies-left {
    padding-top: 30px;
    max-width: 650px;
}

.companies-title {
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 400;
    color: #101114;
    margin-bottom: 20px;
}

.companies-subtitle {
    font-size: 1.3rem;
    line-height: 1.35;
    color: #555960;
    font-weight: 200;
    margin-bottom: 30px;
}

.companies-description {
    font-size: 1.2rem;
    line-height: 1.65;
    color: #5a5e66;
    max-width: 650px;
}

.companies-right {
    padding-top: 10px;
}

.logo-wall img {
    width: 100%;
    /* max-width: 122px; */
    height: auto;
    object-fit: contain;
    opacity: 0.93;
    justify-self: center;
}

@media (max-width: 1200px) {
    .companies-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .companies-left {
        max-width: 760px;
        padding-top: 0;
    }

    .companies-description {
        max-width: 760px;
    }
}

@media (max-width: 900px) {
    .companies-title {
        font-size: 2.85rem;
    }

    .companies-subtitle {
        font-size: 1.35rem;
    }

    .logo-wall {
        grid-template-columns: repeat(4, minmax(64px, 1fr));
        gap: 16px 16px;
    }

    .logo-wall img {
        height: 30px;
    }
}

/* Webinars Section */
.webinars-section {
    background-color: #f4f6fb;
    padding: 80px 90px;
    overflow: hidden; /* Hide overflowing grid items */
    --card-width: clamp(200px, 14vw, 233.44px);
    --card-gap: 42px;
}

.webinars-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 80px;
    align-items: center;
}

.webinars-left {
    padding-bottom: 200px;
    /* margin-top: -46px; */
    align-items: start;
}

.webinars-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 400;
    color: #101114;
    margin-bottom: 18px;
}

.webinars-subtitle {
    font-size: 1.25rem;
    line-height: 1.35;
    color: #6d727b;
    font-weight: 300;
    margin-bottom: 24px;
}

.webinars-description {
    font-size: 1rem;
    line-height: 1.55;
    color: #838890;
    font-weight: 400;
}

.webinars-right {
    height: 700px; /* Fixed height container to act as a window */
    position: relative;
}

.webinars-grid {
    display: grid;
    grid-template-columns: repeat(3, var(--card-width));
    gap: var(--card-gap);
    position: absolute;
    top: -50px; /* Shift the whole grid up slightly */
    width: 100%;
    justify-content: right;
}

.webinars-col {
    display: flex;
    flex-direction: column;
    gap: var(--card-gap);
}

/* Stagger columns */
.webinars-col-1 {
    transform: translateY(-80px); /* Start higher and go down */
}

.webinars-col-2 {
    transform: translateY(20px); /* Start lower */
}

.webinars-col-3 {
    transform: translateY(-160px); /* Start highest */
}

.speaker-card {
    background: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    width: var(--card-width);
}

.speaker-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    filter: grayscale(100%);
    background-color: #333;
}

.speaker-card.half-visible img {
    aspect-ratio: auto;
    height: 200px;
}

.speaker-info {
    padding: 16px 20px 22px;
    text-align: center;
}

.speaker-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 6px;
}

.speaker-info p {
    font-size: 0.75rem;
    color: #555;
    font-weight: 400;
    line-height: 1.4;
}

@media (max-width: 1100px) {
    .webinars-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .webinars-left {
        max-width: 700px;
        text-align: center;
        margin: 0 auto;
    }
    
    .webinars-right {
        height: auto;
        padding-top: 40px;
    }

    .webinars-grid {
        position: relative;
        top: 0;
    }

    .webinars-col {
        transform: translateY(0) !important; /* Remove stagger on mobile */
    }
}

@media (max-width: 768px) {
    .webinars-grid {
        grid-template-columns: 1fr;
    }
}

/* Team Section */
.team-section {
    padding: 100px 5% 120px;
    background-color: var(--white);
    max-width: 1540px;
    margin: 0 auto;
}

.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.team-header-content {
    max-width: 800px;
}

.team-header-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.team-header-content p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.btn-lime {
    background-color: #c4f014; /* Lime green from image */
    color: #000;
    padding: 14px 44px;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.2s;
}

.btn-lime:hover {
    background-color: #b3df0e;
}

.team-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Hide scrollbar for a cleaner look while remaining scrollable */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.team-grid::-webkit-scrollbar {
    display: none;
}

.team-card {
    flex: 0 0 280px; /* Fixed width for horizontal scrolling list */
    background-color: #f7f7f7;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-member-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    background-color: #2c597c; /* Blue fallback */
}

/* Apply specific tint for Anuradha's card image specifically to mirror original */
.primary-card .team-member-img {
    background-color: #e5e5e5;
}

.team-info {
    padding: 24px 20px;
    flex-grow: 1;
}

.team-info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.team-info p {
    font-size: 0.85rem;
    color: #777;
}

/* Primary Card overrides (Anuradha's block with purple footer) */
.primary-card .team-info {
    background-color: #8367f0; /* Purple background */
    color: white;
}

.primary-card .team-info h3 {
    color: white;
}

.primary-card .team-info p {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 992px) {
    .team-header {
        flex-direction: column;
        gap: 30px;
    }
    
    .team-header-content p br {
        display: none; /* Let text wrap naturally on smaller screens */
    }
}

/* Testimonials / Students Section */
.testimonials-section {
    padding: 100px 5% 120px;
    background-color: #fafafa; /* Very light gray to match image bg */
    max-width: 1540px;
    margin: 0 auto;
    overflow: hidden; /* Prevent bubble from breaking out too far */
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.testimonials-header-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.testimonials-header-content h2 {
    font-size: 3.5rem;
    font-weight: 500;
    color: #2b2d31;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.testimonials-header-content p {
    font-size: 1.15rem;
    color: #5d6368;
    line-height: 1.6;
}

/* Creating the large purple speech bubble via CSS shapes */
.testimonials-header-visual {
    position: absolute;
    right: 0;
    top: -120%; /* Shifted upward as it flows out of the top bounds in the image */
    z-index: 1;
}

.speech-bubble {
    width: 450px;
    height: 380px;
    background-color: #8c6cf5; /* Matched periwinkle/purple shade */
    border-radius: 40px;
    position: relative;
}

/* Adding the tail to the speech bubble */
.speech-bubble::after {
    content: '';
    position: absolute;
    bottom: -40px;
    right: 80px;
    width: 60px;
    height: 80px;
    background-color: #8c6cf5;
    border-bottom-right-radius: 40px;
    /* Create curve for inside slope */
    box-shadow: -10px -20px 0 10px #8c6cf5, inset -20px -20px 0 20px #fafafa;
    /* Basic trick to make a smooth tail */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    /* Horizontal scrolling list logic */
    scrollbar-width: none; 
    -ms-overflow-style: none;
    position: relative;
    z-index: 2;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 calc(28% - 20px); /* Responsive sizing mirroring screen ratio */
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding: 4px; /* Thin white border look */
    border: 1px solid rgba(0,0,0,0.08); /* Mimic shadow box outline */
    box-shadow: 0 5px 25px rgba(0,0,0,0.04);
}

/* Just a slight fix to let the 4th item fall off the edge properly */
.video-card.part-visible {
    flex: 0 0 calc(20%);
}

.video-card video {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
    background-color: #111;
    display: block;
}

/* Specifically style the native video controls if possible to dark theme */
video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
}

@media (max-width: 900px) {
    .testimonials-header-content h2 {
        font-size: 2.8rem;
    }
    
    .testimonials-header-content p br {
        display: none;
    }
    
    .video-card {
        flex: 0 0 85%;
    }
    
    .speech-bubble {
        transform: scale(0.6) translate(30%, -50%);
        opacity: 0.3; /* Wash it out if on small device blocking text */
    }
}

/* Footer */
.site-footer {
    padding: 80px 5% 60px;
    background-color: #ffffff;
    color: #4a4a4a;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.footer-left {
    flex: 0 0 35%;
}

.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px; /* Space between links and addresses */
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-logo-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.footer-app-links {
    margin-top: 60px;
}

.footer-heading {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 2px;
    background-color: #ff8a65; /* Matches salmon red */
}

.app-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.app-btn {
    width: 180px;
    height: 55px;
    border-radius: 6px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 15px;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.2s;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-small {
    font-size: 0.65rem;
    line-height: 1.1;
    color: #ddd;
    text-transform: uppercase;
}

.app-btn-large {
    font-size: 1.2rem;
    line-height: 1.1;
    font-weight: 500;
    margin-top: 2px;
}

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

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

.footer-column ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #111;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-addresses p {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 50px;
    }

    .footer-left {
        flex: none;
    }

    .app-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.nav-logo-icon {
    width: 32px;
    height: auto;
    object-fit: contain;
}
