/* Reset and base styles */

.university-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.university-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1.8rem 2rem;
    transition: transform 0.2s ease-in-out;
}

.university-item:hover {
    transform: translateY(-5px);
}

.university-item h2 {
    color: #007bff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.8rem;
}

.university-item .item-details p,
.university-item .item-details li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #444;
}

.university-item .item-details h3 {
    color: #333;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.university-item .item-details ul {
    list-style: none;
    padding-left: 0;
}

.university-item .item-details ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
}

.university-item .item-details ul li i {
    color: #28a745;
    margin-right: 0.8rem;
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

.university-item .highlight {
    font-size: 1.05em;
    margin-top: 15px;
    margin-bottom: 15px;
    padding: 15px;
    background-color: #f0f8ff; /* Alice Blue */
    border-left: 5px solid #007bff;
    border-radius: 5px;
    color: #333;
}

.university-item .highlight i {
    color: #ffc107;
    margin-right: 0.8rem;
    font-size: 1.2rem;
}

.university-item .highlight strong {
    color: #0056b3;
    display: inline-block;
    margin-right: 0.5rem;
}

.university-item .highlight p {
    display: inline;
}

.university-item .highlight .content-text {
    display: block;
    margin-left: 2.5rem; /* Indent the main text */
    margin-top: 0.2rem;
}

.university-item .highlight i {
    color: #ffc107;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.university-item .highlight strong {
    color: #0056b3;
}



.btn.quiz-btn {
    background: #222;
    color: #fff;
    font-weight: 700;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
}

.btn.quiz-btn:hover {
    background: #000;
}

.btn.email-btn {
    background: #eaeaea;
    color: #222;
    font-weight: 600;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: background 0.2s;
}

.btn.email-btn:hover {
    background: #ddd;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fafbfc;
    color: #222;
    line-height: 1.6;
}

header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2.5rem 0.5rem 2.5rem;
    background: #fff;
    min-height: 70px;
}
.nav-left .logo {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.nav-center {
    display: flex;
    gap: 2.3rem;
    list-style: none;
    flex: 1;
    justify-content: center;
    align-items: center;
}
.nav-center li a, .lang-link {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.04rem;
    transition: color 0.2s;
}

.nav-center li a:hover, .lang-link:hover {
    color: #007bff;
}

.nav-center li a:active,
.nav-center li a:focus,
.nav-center li a.active {
    color: #007bff;
}
.nav-right {
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.btn.signin {
    background: #007bff;
    color: #fff;
    border: 1px solid #007bff;
    padding: 0.5rem 1.1rem;
    font-size: 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn.signin:hover {
    background: #0056b3;
    border-color: #0056b3;
}
/* Remove old logo style, handled in nav-left .logo */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}
.nav-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: #007bff;
}

.hero {
    background: #fff;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    align-items: center;
}
.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    gap: 2rem;
    background-color: lightblue;
}
.hero-text {
    flex: 1 1 50%;
    max-width: 650px;
    padding-left: 2.5rem;
}
.hero-text h1 {
    font-size: 3.3rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
    color: #000000 !important;
    line-height: 1.13;
    letter-spacing: -2px;
    text-align: left;
}
.hero-text p {
    margin-bottom: 2.1rem;
    color: #444;
    font-size: 1.18rem;
    text-align: left;
}
.hero-buttons {
    display: flex;
    gap: 1.1rem;
}
.btn.quiz {
    background: #4CAF50;
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
}
.btn.quiz:hover {
    background: #222;
}
.btn.email {
    background: #4CAF50;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
}
.btn.email:hover {
    background: #eaeaea;
}
.btn.primary {
    background: #4CAF50;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
    text-align: center;
}
.btn.whatsapp {
    background: #4CAF50;
    color: #fff;
    font-weight: 700;
    font-size: 1.08rem;
    padding: 0.85rem 2.1rem;
    border-radius: 8px;
    border: none;
    transition: background 0.2s;
}
.btn.whatsapp:hover {
    background: #128c7e;
}
.hero-img-wrap {
    flex: 1 1 50%;
    height: 100vh;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 1100px) {
    .hero-inner {
        flex-direction: column;
        padding: 2.5rem 1rem;
    }
    .hero-text, .hero-img-wrap {
        padding: 0;
        max-width: 100%;
    }
    .hero-img {
        width: 100%;
        height: auto;
        max-width: 350px;
        max-height: 350px;
    }
}
.hero-content {
    flex: 1 1 350px;
}
.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.hero-content p {
    margin-bottom: 1.5rem;
    color: #444;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    background: #eaeaea;
    color: #222;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn.primary:hover {
    background: #0056b3;
}
.btn.whatsapp {
    background: #4CAF50;
    color: #fff;
}
.btn.whatsapp:hover {
    background: #128c7e;
}
.hero-image {
    flex: 1 1 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-image img {
    width: 260px;
    border-radius: 50% 50% 40% 40%/55% 55% 45% 45%;
    object-fit: cover;
    border: 6px solid #eaeaea;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

/* AI Chat Page Styles */
.features-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1.5rem;
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1.8rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    flex: 1 1 30%; /* Allows items to grow and shrink, taking up about 30% width */
    max-width: 30%; /* Ensures items don't get too wide */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

.feature-item .feature-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #222;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}
.ai-chat-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 2rem;
    background: #fff;
}

/* Media query for responsive layout of feature items */
@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        flex: 1 1 90%;
        max-width: 90%;
    }
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 2.5rem 2rem;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item i {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 2.5rem 2rem;
    transition: transform 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item:hover {
    transform: translateY(-8px);
}

.feature-item i {
    font-size: 3.5rem;
    color: #007bff;
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.feature-item p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
}
.ai-chat-image {
    flex: 0.5; /* Make the image section take less space */
    min-width: 200px; /* Smaller minimum width */
    max-width: 300px; /* Max width for the image container */
}

.ai-chat-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px;
    object-fit: cover;
}

.ai-chat-content {
    flex: 1.5; /* Give more space to content */
}

.ai-chat-content h1 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 1rem;
}

.ai-chat-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.ai-disclaimer {
    max-width: 1000px;
    margin: 2rem auto 3rem auto;
    padding: 1.5rem;
    background-color: #fffbe6; /* Light yellow background */
    border: 1px solid #ffe58f; /* Yellow border */
    border-radius: 8px;
    color: #664d03; /* Dark yellow text */
}

.ai-disclaimer .disclaimer-title {
    font-weight: bold;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ai-disclaimer .disclaimer-title i {
    color: #ffc107; /* Yellow icon */
    font-size: 1.2rem;
}

.ai-disclaimer p {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.ai-disclaimer .disclaimer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.ai-disclaimer .disclaimer-btn {
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.ai-disclaimer .email-btn {
    background-color: #f0f0f0;
    color: #333;
    border: 1px solid #ccc;
}

.ai-disclaimer .email-btn:hover {
    background-color: #e0e0e0;
}

.ai-disclaimer .whatsapp-btn {
    background-color: #25d366;
    color: #fff;
    border: 1px solid #25d366;
}

.ai-disclaimer .whatsapp-btn:hover {
    background-color: #1da851;
}

.ai-disclaimer .terms-btn {
    background-color: #007bff;
    color: #fff;
    border: 1px solid #007bff;
}

.ai-disclaimer .terms-btn:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .ai-chat-section {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }

    .ai-chat-image {
        min-width: unset;
        width: 60%; /* Make image smaller on mobile */
        max-width: 250px; /* Ensure it doesn't get too big on smaller screens */
    }

    .ai-chat-content h1 {
        font-size: 2rem;
    }
}

.how-it-works {
    max-width: 1000px;
    margin: 3rem auto 0 auto;
    text-align: center;
    padding: 2rem 1rem;
}
.how-it-works h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.step {
    background: #fff;
    padding: 2rem 1.2rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    flex: 1 1 220px;
    max-width: 300px;
    min-width: 220px;
}
.step .icon {
    font-size: 2.2rem;
    color: #007bff;
    margin-bottom: 1rem;
}
.step h3 {
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
}

.testimonials {
    background: #ADD8E6;
    padding: 3rem 1rem;
    text-align: center;
    margin-top: 3rem;
}

.testimonials h2 {
    color: #000000;
}
.testimonials h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}
.testimonial-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 1.5rem 1.2rem;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stars {
    color: #ffc107;
    margin-bottom: 0.7rem;
}
.testimonial p {
    font-style: italic;
    margin-bottom: 0.7rem;
    color: #444;
}
.testimonial span {
    font-size: 0.95rem;
    color: #777;
}

.faq {
    max-width: 900px;
    margin: 3rem auto;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    padding: 2.5rem 1.5rem;
    text-align: center;
}
.faq h2 {
    font-size: 1.7rem;
    margin-bottom: 0.7rem;
}
.faq-subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.faq-list {
    text-align: left;
    margin: 0 auto 2rem auto;
    max-width: 650px;
}
.faq-item {
    border-bottom: 1px solid #eaeaea;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 1rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #222;
    transition: color 0.2s;
}
.faq-question:hover {
    color: #007bff;
}
.faq-answer {
    display: none;
    padding-bottom: 1rem;
    color: #444;
    font-size: 1rem;
}
.faq-item.active .faq-answer {
    display: block;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    transition: transform 0.2s;
}
.cta {
    margin-top: 2rem;
    text-align: center;
}

footer {
    background: #007bff;
    color: #fff;
    padding: 2rem 0 0.5rem 0;
    margin-top: 3rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 2rem;
}
.footer-section {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
    text-align: center;
}
.footer-section h4 {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #fff;
}

.footer-section p {
    margin: 0;
}

.whatsapp-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 10px;
}

.email-link {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 5px; /* Slightly less margin than whatsapp to keep them close */
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    margin-bottom: 0.5rem;
}
.footer-section ul a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section ul a:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    color: #fff;
    font-size: 24px;
    transition: color 0.2s;
}

.social-icon:hover {
    color: #4CAF50;
}
.footer-bottom {
    text-align: center;
    font-size: 0.95rem;
    color: #000000;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
}

/* Quiz Section Styling */
.quiz-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.quiz-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    color: #555;
    font-size: 0.9em;
}

.quiz-question h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}

.quiz-question .question-info {
    color: #777;
    font-size: 1.1em;
    margin-bottom: 40px;
}

.quiz-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.option-btn {
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px 30px;
    font-size: 1.1em;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    max-width: 300px;
}

.option-btn:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}

.option-btn .checkmark {
    display: none;
    margin-left: 10px;
    color: #28a745; /* Green color for checkmark */
}

.option-btn.selected {
    background-color: #e6f7ff; /* Light blue background for selected */
    border-color: #007bff; /* Blue border for selected */
    color: #007bff;
}

.option-btn.selected .checkmark {
    display: inline-block;
}

.quiz-navigation {
    text-align: right;
}

.next-btn {
    background-color: #000000;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 12px 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next-btn:hover {
    background-color: #333;
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        padding: 1.2rem;
    }
    .steps, .testimonial-list, .footer-content {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .footer-content {
        padding: 0 1rem;
    }
}

h2 {
    color: #007bff;
}

.how-it-works {
    padding: 3rem 1rem;
    text-align: center;
    background: #ADD8E6;
    margin-top: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.how-it-works h2 {
    color: #000000;
}

.about-us {
    padding: 3rem 1rem;
    text-align: center;
    background: #fff;
    margin-top: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-us p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #444;
}

.about-us h3 {
    color: #4CAF50;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.our-services {
    padding: 3rem 1rem;
    background: #f9f9f9;
    margin-top: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.our-services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.our-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.our-services li {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 1.05rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.our-services li::before {
    content: '\2713'; /* Checkmark character */
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2em;
}

.mission-vision-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.footer-logo {
    width: 100px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.mission-box,
.vision-box {
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.mission-box p,
.vision-box p {
    margin-bottom: 0;
}
