/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #b574c4;
    background-color: linear-gradient(135deg, #f0e6e6 0%, #f1f1f1 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: bold;
    color: #714a9c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-logo a:hover {
    color: #b574c4;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #714a9c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #b574c4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #b574c4;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #714a9c;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #f0e6e6 0%, #f1f1f1 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100vh; /* Add margin to account for the fixed logo splash */
}

.hero-content {
    z-index: 2;
    color: white;
}

.logo-container {
    margin-bottom: 2rem;
}

.hero-logo {
    width: 500px;
    height: 500px;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-logo.fade {
    opacity: 0.3;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #714a9c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #714a9c;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: #714a9c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(113, 74, 156, 0.3);
}

.cta-button:hover {
    background: #b574c4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 116, 196, 0.4);
}

/* Hero two-column layout */
.hero { 
    height: auto; 
    padding: 10rem 0; 
    background: linear-gradient(135deg, #f0e6e6 0%, #f1f1f1 100%);
}
.hero-layout { display: grid; grid-template-columns: 1.2fr 1fr; align-items: center; gap: 2rem; }
.hero-text { text-align: left; color: #714a9c; }
.hero-text h1 { font-size: 2.8rem; color: #714a9c; margin-bottom: 1rem; }
.hero-tagline { font-size: 1.2rem; margin-bottom: 1rem; color: #714a9c; }
.hero-subtext { font-size: 1rem; margin-bottom: 2rem; color: #714a9c; }
.hero-visual { display: flex; justify-content: center; }
.hero-logo { width: 360px; height: auto; max-width: 100%; }

/* Hero Image Styles */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Splash logo section just under navbar */
.logo-splash {
    position: fixed;
    top: 70px; /* Height of navbar */
    left: 0;
    width: 100%;
    height: 100vh;
    
    display: grid;
    place-items: center;
    z-index: 999;
    /* Remove transition from the section to keep background consistent */
}
.logo-splash .hero-logo {
    width: 500px;
    max-width: 80vw;
    transition: opacity 0.3s ease;
}

/* Section Styles */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #714a9c;
    margin-bottom: 3rem;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #aaa2ac;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Goals Section */
.goals-section {
    background: rgba(255, 255, 255, 0.1);
    background-color: #f0e6e6;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-card i {
    font-size: 3rem;
    color: #714a9c;
    margin-bottom: 1rem;
}

.goal-card h3 {
    color: #714a9c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials-section {
    background: rgba(255, 255, 255, 0.05);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-content {
    background: #f0e6e6;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-text p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: #714a9c;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* Testimonials avatar icon */
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 56px; height: 56px; display: grid; place-items: center; background: #DBCAE9; color: #714a9c; border-radius: 50%; font-size: 2rem; box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.author-info h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #b574c4;
    font-size: 0.9rem;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    background: #714a9c;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: #b574c4;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b574c4;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #714a9c;
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    background-color: #f0e6e6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;

}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #714a9c, #b574c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #714a9c;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    letter-spacing: normal;
}

.service-link {
    color: #714a9c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #b574c4;
}

/* Services gallery */
.services-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.services-gallery .gallery-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
.services-gallery img { display: block; width: 100%; height: 200px; object-fit: cover; }
.services-gallery .gallery-item span { position: absolute; left: 0; bottom: 0; padding: 0.5rem 0.75rem; background: rgba(0,0,0,0.5); color: #fff; font-weight: 600; }

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #714a9c;
    margin-top: 0.5rem;
}

.contact-item h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #714a9c;
}

.submit-btn {
    background: #714a9c;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #b574c4;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #714a9c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #DBCAE9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #b574c4;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* About Page Styles */
.about-hero {
    background: #f0e6e6;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #714a9c;
}

.about-hero p {
    font-size: 1.2rem;
    color: #714a9c;
    text-align: center;
}

.company-story {
    padding: 80px 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #714a9c;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.team-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.position {
    color: #b574c4;
    font-weight: bold;
    margin-bottom: 1rem;
}

.bio {
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: #f0e6e6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    color: #714a9c;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.value-card p {
    text-align:center;
    line-height: 1.7;
    color: #714a9c;
    word-spacing: normal;
    letter-spacing: normal;
}

.reviews-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-info h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.review-info p {
    color: #b574c4;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stars {
    color: #ffd700;
}

.stats-section {
    padding: 80px 0;
    background-color: #f0e6e6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b574c4;
    font-weight: bold;
}

/* Services Page Styles */
.services-hero {
    background: #f0e6e6;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #714a9c;
}

.services-hero p {
    font-size: 1.2rem;
    color: #714a9c;
    text-align: center;
}

.service-detail {
    padding: 35px 0;
}

.service-detail:nth-child(even) {
    background: rgba(255, 255, 255, 0.05);
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #714a9c, #b574c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.service-icon-large i {
    font-size: 3rem;
    color: white;
}

.service-content {
    display: block;
    gap: 4rem;
}

.service-info {
    width: 100%;
    margin-bottom: 3rem;
}

.service-videos {
    width: 100%;
    margin-top: 2rem;
}

.service-info h3 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.service-info ul {
    margin-bottom: 2rem;
    background-color: #f0e6e6;
}

.service-info ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-info ul li::before {
    content: '•';
    color: #714a9c;
    position: absolute;
    left: 0;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: #f0e6e6;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
}

.destination-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.destination-card h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.destination-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    letter-spacing: normal;
}

.destination-card .read-more-btn {
    margin-top: auto;
    align-self: flex-start;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.program-card {
    background: #f0e6e6;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.program-card h4 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.program-card p {
    flex-grow: 1;
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    letter-spacing: normal;
}

.program-card ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.program-card .read-more-btn {
    margin-top: auto;
    align-self: flex-start;
}

.visa-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background-color: #f0e6e6;
}

.visa-type-card {
    background: #f0e6e6;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.visa-type-card i {
    font-size: 2rem;
    color: #714a9c;
    margin-bottom: 1rem;
}

.visa-type-card h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.process-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #714a9c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    color: #714a9c;
    margin-bottom: 0.5rem;
}

.service-videos h3 {
    color: #714a9c;
    margin-bottom: 1.5rem;
}

.video-grid {
    display: grid;
    gap: 1.5rem;
}

.video-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-card iframe {
    width: 100%;
    height: 200px;
}

.video-card h4 {
    color: #714a9c;
    margin: 1rem;
    margin-bottom: 0.5rem;
}

.video-card p {
    margin: 0 1rem 1rem;
    font-size: 0.9rem;
}

.blogs-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-date, .blog-category {
    font-size: 0.9rem;
    color: #b574c4;
}

.blog-content h3 {
    color: #714a9c;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.read-more {
    color: #714a9c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #b574c4;
}

.faqs-section {
    padding: 80px 0;
}

.faqs-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0e6e6;
}

.faq-question h3 {
    color: #714a9c;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #714a9c;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
    background-color: #f0e6e6;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #714a9c;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #714a9c;
    text-align: center;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #714a9c, #b574c4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 80px 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-info h2 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.form-info p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #714a9c;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #714a9c;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #714a9c;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.office-location {
    padding: 80px 0;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.location-info h3 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.location-info h4 {
    color: #714a9c;
    margin: 2rem 0 1rem;
}

.transport-info {
    display: grid;
    gap: 1rem;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transport-item i {
    color: #714a9c;
    font-size: 1.2rem;
}

.location-map {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #714a9c;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.emergency-contact {
    background: linear-gradient(135deg, #714a9c, #b574c4);
    color: white;
    padding: 60px 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.emergency-icon i {
    font-size: 3rem;
    color: #ffd700;
}

.emergency-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 1rem 0;
}

.emergency-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

.social-contact {
    padding: 80px 0;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.social-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
}

.social-card i {
    font-size: 3rem;
    color: #714a9c;
    margin-bottom: 1rem;
}

.social-card h3 {
    color: #714a9c;
    margin-bottom: 1rem;
}

.social-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.social-link {
    color: #714a9c;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #b574c4;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .emergency-content {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .testimonial-content {
        padding: 2rem;
    }

    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }
} 

/* Justify all main content text */
section p, .about-text p, .about-content p, .story-text p, .team-member p, .review-card p, .stat-card p, .service-card p, .service-info p, .service-detail p, .blog-content p, .faq-answer p, .contact-card p, .form-info p, .contact-form p, .location-info p, .emergency-info p, .social-card p, .destination-card p, .program-card p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    word-spacing: normal;
    letter-spacing: normal;
} 

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 80%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #714a9c;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover,
.close:focus {
    color: #b574c4;
    text-decoration: none;
}

.read-more-btn {
    background: #714a9c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: #b574c4;
    transform: translateY(-2px);
}

.country-details, .program-details {
    padding: 1rem 0;
}

.country-details h3, .program-details h3 {
    color: #714a9c;
    margin-bottom: 1rem;
    border-bottom: 2px solid #b574c4;
    padding-bottom: 0.5rem;
}

.country-details ul, .program-details ul {
    margin-left: 1.5rem;
}

.country-details li, .program-details li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.destination-card, .program-card {
    position: relative;
    transition: transform 0.3s ease;
}

.destination-card:hover, .program-card:hover {
    transform: translateY(-5px);
} 

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .hero-visual { margin-top: 1rem; }
  .services-gallery { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-gallery { grid-template-columns: 1fr; }
  .author-avatar { width: 48px; height: 48px; font-size: 1.6rem; }
} 

/* Image break component */
.image-break { margin: 2.5rem 0; }
.image-break .image-break-inner { border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
.image-break img { display: block; width: 100%; height: 360px; object-fit: cover; }
@media (max-width: 700px){ .image-break img { height: 220px; } } 

/* About feature (slideshow + content) */
.about-feature { padding: 3rem 0; }
.about-feature .feature-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 2rem; align-items: center; }
.about-feature .feature-slideshow { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 30px rgba(0,0,0,0.12); background: #fff; }
.about-feature .feature-slide { display: none; }
.about-feature .feature-slide.active { display: block; }
.about-feature .feature-slide img { display: block; width: 100%; height: 420px; object-fit: cover; }
.about-feature .feature-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0,0,0,0.45); color: #fff; border: 0; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; cursor: pointer; }
.about-feature .feature-prev { left: 12px; }
.about-feature .feature-next { right: 12px; }
.about-feature .feature-content h2 { color: #714a9c; margin-bottom: 1rem; }
.about-feature .feature-content ul { margin-left: 1rem; margin-bottom: 1rem; }
.about-feature .feature-content p { margin-bottom: 0.75rem; }

@media (max-width: 900px) {
  .about-feature .feature-grid { grid-template-columns: 1fr; }
  .about-feature .feature-slide img { height: 280px; }
}

/* Visa Types Section Styles */
.visa-types-section {
    padding: 4rem 0;
    background-color: #f0e6e6;
}

.visa-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.visa-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #fff;
    height: 400px;
}

.visa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.visa-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.visa-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.visa-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(113, 74, 156, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.visa-card:hover .visa-card-overlay {
    opacity: 1;
}

.visa-card:hover .visa-card-image img {
    transform: scale(1.1);
    filter: blur(2px);
}

.visa-card-content {
    color: #fff;
    text-align: center;
    max-height: 100%;
    overflow-y: auto;
}

.visa-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.visa-card-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.visa-card-content li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 0.25rem 0;
}

.visa-card-content strong {
    color: #f8f9fa;
    font-weight: 600;
}

/* Responsive Design for Visa Cards */
@media (max-width: 1024px) {
    .visa-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .visa-card {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .visa-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .visa-card {
        height: 300px;
    }
    
    .visa-card-content h3 {
        font-size: 1.3rem;
    }
    
    .visa-card-content li {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .visa-card {
        height: 280px;
    }
    
    .visa-card-content {
        padding: 1rem;
    }
    
    .visa-card-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .visa-card-content li {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
} 

/* Popup Contact Form Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-overlay.show .popup-content {
    transform: scale(1);
}

.popup-header {
    background: linear-gradient(135deg, #714a9c, #b574c4);
    color: white;
    padding: 2rem 2rem 1.5rem;
    border-radius: 20px 20px 0 0;
    position: relative;
}

.popup-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.popup-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.popup-form {
    padding: 2rem;
}

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

.popup-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #714a9c;
    font-weight: 600;
    font-size: 0.9rem;
}

.popup-form input,
.popup-form select,
.popup-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.popup-form input:focus,
.popup-form select:focus,
.popup-form textarea:focus {
    outline: none;
    border-color: #714a9c;
    background: white;
    box-shadow: 0 0 0 3px rgba(113, 74, 156, 0.1);
}

.popup-form textarea {
    resize: vertical;
    min-height: 100px;
}

.popup-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #714a9c, #b574c4);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(113, 74, 156, 0.3);
}

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

.popup-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* Success/Error Messages */
.popup-message {
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
    text-align: center;
}

.popup-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.popup-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design for Popup */
@media (max-width: 768px) {
    .popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .popup-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .popup-header h3 {
        font-size: 1.5rem;
    }
    
    .popup-form {
        padding: 1.5rem;
    }
    
    .popup-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .popup-content {
        width: 98%;
        margin: 0.5rem;
    }
    
    .popup-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }
    
    .popup-header h3 {
        font-size: 1.3rem;
    }
    
    .popup-form {
        padding: 1.25rem;
    }
    
    .popup-form input,
    .popup-form select,
    .popup-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .popup-submit-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
} 