/* style.css */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --light-bg: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    text-decoration: none;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 0;
    position: relative;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.btn-internship {
    background-color: var(--primary-color);
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 4px;
}

.btn-internship:hover {
    background-color: var(--primary-dark);
    color: white !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn-secondary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Services Preview */
.services-preview {
    padding: 80px 0;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Internship Section */
.internship {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.internship-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.internship h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.internship p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.internship-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.benefit i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-secondary:hover {
    background-color: #f0f9ff;
}

/* Page Header */
.page-header {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 80px;
}

.about-section.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.team-section {
    text-align: center;
    padding-top: 40px;
}

.team-section h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

/* Services Detail Page */
.services-detail {
    padding: 60px 0 80px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-detail-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-detail-content li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-detail-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Page */
.contact-content {
    padding: 60px 0 80px;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-form-container {
    flex: 1;
}

.address-card {
    background-color: var(--light-bg);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
}

.address-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.address-details h3 {
    margin-bottom: 10px;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-method i {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.contact-method h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.map-placeholder {
    margin-top: 40px;
}

.map-placeholder h3 {
    margin-bottom: 15px;
}

.map {
    border-radius: 8px;
    overflow: hidden;
}

.map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.map p {
    padding: 15px;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map i {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-notice {
    margin-top: 25px;
    padding: 15px;
    background-color: #f0f9ff;
    border-radius: 4px;
    border-left: 4px solid var(--primary-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-notice i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-col p {
    color: #9ca3af;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: white;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #374151;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9ca3af;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-section, 
    .service-detail-card,
    .contact-wrapper {
        flex-direction: column;
    }
    
    .about-section.reverse,
    .service-detail-card.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 99;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .services-preview h2,
    .internship h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .internship-benefits {
        gap: 20px;
    }
    
    .benefit {
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Add these styles to the end of style.css */

/* Popup Notification Styles */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-notification.success {
    border-left: 4px solid #10b981;
}

.popup-notification.error {
    border-left: 4px solid #ef4444;
}

.popup-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.popup-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popup-notification.success .popup-content i {
    color: #10b981;
}

.popup-notification.error .popup-content i {
    color: #ef4444;
}

.popup-content p {
    margin: 0;
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-left: 5px;
}

.popup-close:hover {
    color: var(--primary-color);
}

/* Form loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
}

/* Form Error Styles */
.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #fca5a5;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10b981;
}

/* Success message styles */
.success-message {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.success-message.show {
    display: block;
}

/* Internship Page Specific Styles */

/* Internship Header */
.internship-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.internship-header h1,
.internship-header p {
    color: white;
}

/* Internship Overview */
.internship-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.overview-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.overview-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.overview-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.overview-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.overview-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Internship Domains */
.internship-domains {
    padding: 80px 0;
    background-color: white;
}

.internship-domains h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.domains-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.domain-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.domain-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.domain-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.domain-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.domain-header h3 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
}

.domain-content {
    padding: 25px;
    flex-grow: 1;
}

.domain-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.domain-skills {
    list-style: none;
    margin-bottom: 25px;
}

.domain-skills li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
    font-size: 0.95rem;
}

.domain-skills li:last-child {
    border-bottom: none;
}

.domain-details {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--primary-color);
}

.domain-footer {
    padding: 0 25px 25px 25px;
    margin-top: auto;
}

.domain-apply {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background-color: #f8fafc;
}

.application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9fafb;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section for Internship */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: white;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-secondary:hover {
    background-color: #f0f9ff;
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .internship-domains h2,
    .internship-overview h2,
    .application-process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .domains-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        margin-right: 15px;
    }
}

@media (max-width: 576px) {
    .domain-content {
        padding: 20px;
    }
    
    .domain-footer {
        padding: 0 20px 20px 20px;
    }
    
    .domain-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

/* ============================
   ADDITIONAL STYLES FOR NEW FEATURES
   ============================ */

/* Form Error Styles */
.form-error {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 5px;
    min-height: 20px;
}

.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
    border-color: #fca5a5;
    background-color: #fef2f2;
}

.form-group input.valid,
.form-group select.valid,
.form-group textarea.valid {
    border-color: #10b981;
    background-color: #f0fdf4;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Animation Classes for Scroll Animations */
.service-card,
.domain-card,
.team-member,
.process-step {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animated,
.domain-card.animated,
.team-member.animated,
.process-step.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Popup Notification Styles (Add if not already present) */
.popup-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 400px;
    width: calc(100% - 40px);
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.popup-notification.show {
    transform: translateX(0);
}

.popup-notification.success {
    border-left: 4px solid #10b981;
}

.popup-notification.error {
    border-left: 4px solid #ef4444;
}

.popup-notification.info {
    border-left: 4px solid var(--primary-color);
}

.popup-content {
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}

.popup-content i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.popup-notification.success .popup-content i {
    color: #10b981;
}

.popup-notification.error .popup-content i {
    color: #ef4444;
}

.popup-notification.info .popup-content i {
    color: var(--primary-color);
}

.popup-content p {
    margin: 0;
    flex: 1;
    color: var(--text-color);
    line-height: 1.5;
}

.popup-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    flex-shrink: 0;
    margin-left: 5px;
}

.popup-close:hover {
    color: var(--primary-color);
}

/* Form loading state */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for popup */
@media (max-width: 768px) {
    .popup-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        width: calc(100% - 20px);
        max-width: none;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* FAQ Styles (if not already in CSS) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: #f9fafb;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Smooth transitions for all interactive elements */
.btn,
.service-card,
.domain-card,
.nav-menu a,
.popup-close,
.scroll-to-top,
.faq-question {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
select:focus,
.nav-menu a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cta,
    .scroll-to-top,
    .popup-notification {
        display: none !important;
    }
}

/* ============================
   JOBS PAGE SPECIFIC STYLES
   ============================ */

/* Jobs Header */
.jobs-header {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.jobs-header h1,
.jobs-header p {
    color: white;
}

/* Jobs Overview */
.jobs-overview {
    padding: 80px 0;
    background-color: #f8fafc;
}

.jobs-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* Current Openings */
.current-openings {
    padding: 80px 0;
    background-color: white;
}

.current-openings h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.job-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.job-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 2;
}

.job-header {
    background: linear-gradient(135deg, #1e40af 0%, #3730a3 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 25px;
}

.job-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.job-title-section {
    flex: 1;
}

.job-title-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.job-tag {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.job-tag i {
    font-size: 0.8rem;
}

.job-content {
    padding: 40px;
}

.job-description {
    margin-bottom: 30px;
}

.job-description h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.job-description p {
    color: var(--text-light);
    line-height: 1.7;
}

.job-details {
    margin-bottom: 30px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h4::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.responsibilities,
.requirements,
.benefits {
    list-style: none;
    padding-left: 20px;
}

.responsibilities li,
.requirements li,
.benefits li {
    padding: 8px 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.responsibilities li::before,
.requirements li::before,
.benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.requirements li::before {
    content: '•';
    color: var(--secondary-color);
}

.benefits li::before {
    content: '★';
    color: #f59e0b;
}

.job-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 25px;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    text-align: center;
}

.stat-item div {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 3px;
}

.stat-value {
    font-weight: 600;
    color: var(--text-color);
    font-size: 1.1rem;
}

.job-footer {
    padding: 0 40px 40px 40px;
}

.apply-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Application Process */
.application-process {
    padding: 80px 0;
    background-color: #f8fafc;
}

.application-process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

/* CTA Section for Jobs */
.cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    color: white;
}

.cta .btn-secondary {
    background-color: white;
    color: var(--primary-color);
}

.cta .btn-secondary:hover {
    background-color: #f0f9ff;
    color: var(--primary-color);
}

/* Responsive Styles for Jobs Page */
@media (max-width: 992px) {
    .job-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .job-icon {
        font-size: 2.5rem;
    }
    
    .job-title-section h3 {
        font-size: 1.8rem;
    }
    
    .job-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .jobs-overview h2,
    .current-openings h2,
    .application-process h2,
    .faq-section h2,
    .cta h2 {
        font-size: 2rem;
    }
    
    .job-content {
        padding: 25px;
    }
    
    .job-footer {
        padding: 0 25px 25px 25px;
    }
    
    .job-stats {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .apply-btn {
        font-size: 1rem;
        padding: 14px;
    }
}

@media (max-width: 576px) {
    .job-header {
        padding: 25px;
    }
    
    .job-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 15px;
        align-self: flex-start;
    }
    
    .job-tags {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .job-tag {
        width: 100%;
        justify-content: center;
    }
    
    .responsibilities li,
    .requirements li,
    .benefits li {
        padding-left: 20px;
    }
    
    .detail-section h4 {
        font-size: 1.1rem;
    }
}
/* Admin Panel Styles - Add to existing style.css */

.admin-login-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.admin-login-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 64, 175, 0.4);
    color: white;
}

.admin-login-link i {
    font-size: 1rem;
}

/* Responsive adjustments for admin link */
@media (max-width: 768px) {
    .admin-login-link {
        bottom: 10px;
        right: 10px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}

/* ============================
   LOGO STYLES
   ============================ */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-image {
    height: 55px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}



/* Hide text on mobile, show only logo */
@media (max-width: 768px) {
    
    .logo-image {
        height: 35px;
    }
}

/* For very small screens */
@media (max-width: 480px) {
    .logo-image {
        height: 40px;
    }
}