       :root {
            --primary-color: #0394D9;
            --primary-dark: #0278b3;
            --secondary-color: #f8f9fa;
            --dark-color: #343a40;
            --light-color: #ffffff;
            --gray-color: #6c757d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: #333;
        }
        h1, h2 {
  font-family: 'Nunito Sans' !important;
    font-weight: 600 !important;
}
        .container {
            width: 100%;
            max-width: 1200px !important;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--light-color);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            height: 50px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
            margin-bottom: 0px !important;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark-color);
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary-color) !important;
        }
        
        .auth-buttons .btn {
            margin-left: 15px;
            padding: 8px 20px;
            border-radius: 5px;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .btn-outline {
            border: 2px solid var(--primary-color) !important;
            color: var(--primary-color) !important;
            background: transparent;
        }
        
        .btn-outline:hover {
            background: var(--primary-color) !important;
            color: var(--light-color) !important;
        }
        
        .btn-solid {
            background: var(--primary-color) !important;
            color: var(--light-color) !important;
            border: 2px solid var(--primary-color) !important;
        }
        
        .btn-solid:hover {
            background: var(--primary-dark) !important;
            border-color: var(--primary-dark) !important;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1576091160550-2173dba999ef?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            padding: 100px 0;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .hero-buttons .btn {
            padding: 12px 30px;
            text-decoration: none;
            font-size: 1.1rem;
        }
        
        /* Features Section */
        .features {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: var(--light-color);
            padding: 33px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
            font-size: 1.17em !important;
            font-weight: bold;
            color: var(--dark-color);
        }
        
        /* Job Categories */
        .categories {
            padding: 80px 0;
        }
        
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .category-card {
            background: var(--secondary-color);
            padding: 25px;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s;
        }
        .category-card h3{
            font-size: 1.17rem;
        }
        .category-card:hover {
            background: var(--primary-color);
            color: var(--light-color);
        }
        
        .category-card i {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .testimonial-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial {
            padding: 30px;
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* Job Listings */
        .job-listings {
            padding: 80px 0;
        }
        
        .jobs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .job-card {
            border: 1px solid #eee;
            border-radius: 8px;
            padding: 25px;
            transition: all 0.3s;
        }
        
        .job-card:hover {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .job-card h3 {
            margin-bottom: 10px;
            color: var(--primary-color);
        }
        
        .job-meta {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        .job-meta i {
            margin-right: 5px;
        }
        
        .job-description {
            margin-bottom: 20px;
        }
        
        .apply-btn {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary-color);
            color: var(--light-color);
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background 0.3s;
        }
        
        .apply-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--light-color);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 10px;
        }
        
        .footer-column ul li a {
            color: #adb5bd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-column ul li a:hover {
            color: var(--light-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            color: var(--light-color);
            font-size: 1.2rem;
            transition: color 0.3s;
        }
        
        .social-links a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
             .auth-buttons {
                margin-top: 15px;
            }
            
            .hero {
                padding: 80px 20px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
        }

        
        /* Improved Filters */
        .filter-container {
            background: var(--light-color);
            padding: 20px;
            margin: -30px auto 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            max-width: 800px;
        }
        
        .filter-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            align-items: center;
        }
        
        .filter-group {
            display: flex;
            align-items: center;
            min-width: 250px;
            flex: 1;
        }
        
        .filter-group label {
            margin-right: 10px;
            font-weight: 500;
            white-space: nowrap;
        }
        
        .filter-group select {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            flex: 1;
            min-width: 120px;
        }
        
        .results-per-page {
            display: flex;
            align-items: center;
            margin-left: auto;
        }
        
        .results-per-page label {
            margin-right: 10px;
            font-weight: 500;
        }
        
        /* Job Listings */
        .job-listings {
            padding: 40px 0;
        }
        
        .job-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .job-card {
            background: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
        }
        
        .company-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .company-logo {
            display: none !important;
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: var(--secondary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            overflow: hidden;
        }
        
        .company-logo img {
            max-width: 100%;
            max-height: 100%;
        }
        
        .company-info h3 {
            font-size: 1rem;
            color: var(--dark-color);
            margin-bottom: 5px;
        }
        
        .company-info p {
            font-size: 0.85rem;
            color: var(--gray-color);
        }
        
        .job-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .job-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .job-meta span {
            display: flex;
            align-items: center;
        }
        
        .job-meta i {
            margin-right: 5px;
            color: var(--gray-color);
        }
        
        .job-description {
            margin-bottom: 20px;
            color: var(--dark-color);
            font-size: 0.95rem;
        }
        
        .job-salary {
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .job-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .save-job {
            color: var(--gray-color);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .save-job:hover {
            color: var(--primary-color);
        }
        
        .save-job.saved {
            color: var(--primary-color);
        }
        
        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .pagination-info {
            color: var(--gray-color);
        }
        
        .pagination-controls {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .pagination-btn {
            padding: 8px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            background: var(--light-color);
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .pagination-btn:hover {
            background: var(--primary-color);
            color: var(--light-color);
            border-color: var(--primary-color);
        }
        
        .pagination-btn.active {
            background: var(--primary-color);
            color: var(--light-color);
            border-color: var(--primary-color);
        }
        
        .pagination-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                padding: 15px;
            }
            
            nav ul {
                margin: 20px 0;
            }
            
            nav ul li {
                margin-left: 15px;
            }
            
            .auth-buttons {
                margin-top: 15px;
            }
            
            .page-header {
                padding: 60px 20px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .filter-row {
                flex-direction: column;
                align-items: stretch;
                gap: 15px;
            }
            
            .filter-group {
                min-width: 100%;
            }
            
            .results-per-page {
                margin-left: 0;
                width: 100%;
            }
            
            .job-list {
                grid-template-columns: 1fr;
            }
            
            .pagination-container {
                flex-direction: column;
                align-items: center;
            }
        }



         /* Internship Benefits */
        .benefits-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .benefit-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .benefit-card h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* Internship Listings */
        .internship-section {
            padding: 80px 0;
        }
        
        .filters {
            background: var(--light-color);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .filter-group {
            flex: 1;
            min-width: 200px;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }
        
        .filter-group select {
            width: 100%;
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
        }
        
        .internship-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .internship-card {
            background: var(--light-color);
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .internship-card:hover {
            transform: translateY(-5px);
        }
        
        .internship-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .internship-icon {
            width: 50px;
            height: 50px;
            border-radius: 8px;
            background: var(--primary-color);
            color: var(--light-color);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.5rem;
        }
        
        .internship-title {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .internship-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .internship-meta span {
            display: flex;
            align-items: center;
        }
        
        .internship-meta i {
            margin-right: 5px;
            color: var(--gray-color);
        }
        
        .internship-description {
            margin-bottom: 20px;
            color: var(--dark-color);
            font-size: 0.95rem;
        }
        
        .internship-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .save-internship {
            color: var(--gray-color);
            cursor: pointer;
            transition: color 0.3s;
        }
        
        .save-internship:hover {
            color: var(--primary-color);
        }
        
        .save-internship.saved {
            color: var(--primary-color);
        }
        
        /* How to Apply */
        .apply-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .step-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
            padding-left: 80px;
        }
        
        .step-number {
            position: absolute;
            left: 30px;
            top: 30px;
            width: 40px;
            height: 40px;
            background: var(--primary-color);
            color: var(--light-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        .step-card h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* Testimonials */
        .testimonial-section {
            padding: 80px 0;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial-card {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-content::before {
            content: '"';
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            left: -15px;
            top: -15px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            margin-bottom: 5px;
        }
        
        .author-info p {
            color: var(--gray-color);
            font-size: 0.9rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 80px 20px;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .filters {
                flex-direction: column;
            }
            
            .internship-list {
                grid-template-columns: 1fr;
            }
            
            .step-card {
                padding-left: 30px;
                padding-top: 60px;
            }
            
            .step-number {
                left: 50%;
                top: 20px;
                transform: translateX(-50%);
            }
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(3, 148, 217, 0.8), rgba(3, 148, 217, 0.8)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            color: var(--light-color);
            padding: 100px 0;
            text-align: center;
        }

        
        .page-header h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2rem;
            color: var(--dark-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        @media (max-width: 768px) {
            .about-content {
                grid-template-columns: 1fr;
            }
        }
        
        .about-text h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .about-image {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Mission/Vision */
        .mission-vision {
            background: var(--secondary-color);
            padding: 80px 0;
        }
        
        .mv-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .mv-card {
            background: var(--light-color);
            padding: 40px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .mv-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .mv-card h3 {
            margin-bottom: 15px;
            color: var(--dark-color);
        }
        
        /* Stats Section */
        .stats-section {
            padding: 80px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }
        
        .stat-item {
            padding: 30px 20px;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: var(--gray-color);
            font-size: 1.1rem;
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: var(--secondary-color);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-card {
            background: var(--light-color);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            height: 250px;
            overflow: hidden;
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .team-card:hover .team-image img {
            transform: scale(1.1);
        }
        
        .team-info {
            padding: 20px;
            text-align: center;
        }
        
        .team-info h3 {
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .team-info p {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .team-social a {
            color: var(--gray-color);
            transition: color 0.3s;
        }
        
        .team-social a:hover {
            color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-content h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            color: var(--dark-color);
        }
        
        .cta-content p {
            margin-bottom: 30px;
            color: var(--gray-color);
        }

        /* Contact Section */
        .contact-section {
            padding: 60px 0;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .contact-details h3 {
            margin-bottom: 5px;
            color: var(--dark-color);
        }
        
        .contact-details p, 
        .contact-details a {
            color: var(--gray-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: var(--primary-color);
        }
        
        /* Contact Form */
        .contact-form {
            background: var(--light-color);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form h2 {
            color: var(--primary-color);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--primary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--dark-color);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            background: var(--primary-color);
            color: var(--light-color);
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .submit-btn:hover {
            background: var(--primary-dark);
        }
        
        /* Map Section */
        .map-section {
            padding-bottom: 60px;
        }
        
        .map-container {
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            
            .contact-container {
                grid-template-columns: 1fr;
            }
            
            .map-container {
                height: 300px;
            }
        }
        .resume-upload-container {
            border: 2px dashed #0394D9;
            border-radius: 8px;
            padding: 25px;
            text-align: center;
            background: rgba(3, 148, 217, 0.05);
            margin-top: 20px;
        }
        .resume-upload-icon {
            font-size: 48px;
            color: #0394D9;
            margin-bottom: 10px;
        }
        .resume-upload-btn {
            background: white;
            border: 1px solid #0394D9;
            color: #0394D9;
            padding: 8px 20px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 15px;
            display: inline-block;
            transition: all 0.3s;
        }
        .resume-upload-btn:hover {
            background: #0394D9;
            color: white;
        }
        .resume-file-name {
            margin-top: 10px;
            color: #2ecc71;
            font-weight: 500;
        }
        .auto-fill-btn {
            background: #0394D9;
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 15px;
            display: none;
            font-weight: 500;
            transition: all 0.3s;
        }
        .auto-fill-btn:hover {
            background: #0280c0;
            transform: translateY(-2px);
        }
        .auto-fill-btn i {
            margin-right: 8px;
        }
        
        /* Sidebar Enhancements */
        .sidebar-nav a {
            transition: all 0.3s;
            border-left: 3px solid transparent;
        }
        .sidebar-nav a:hover {
            background: rgba(3, 148, 217, 0.1);
            border-left: 3px solid #0394D9;
            box-shadow: 0 1px 3px rgb(23 62 80 / 30%);
        }
        .sidebar-nav a.active {
            background: rgba(3, 148, 217, 0.1);
            border-left: 3px solid #ffffff;
            color: #ffffff;
            box-shadow: 0 1px 3px rgb(23 62 80 / 30%);
        }