/* Base Styles and Variables */
:root {
    --primary-color: #5e35b1;
    --secondary-color: #3a1f8d;
    --accent-color: #ffcc00;
    --accent-secondary: #4caf50;
    --accent-tertiary: #9c27b0;
    --bg-gradient-start: #1a1040;
    --bg-gradient-end: #3a1f8d;
    --text-light: #ffffff;
    --text-dark: #151223;
    --text-gray: #9e9bab;
    --border-radius: 8px;
    --card-shadow: 0 10px 20px rgba(26, 16, 64, 0.15);
    --transition-speed: 0.3s;
    --container-max-width: 1200px;
    --header-height: 80px;
    --footer-bg: #151223;
}

/* Reset & Global Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end)) fixed;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.8rem;
}

h3 {
    font-size: 2rem;
}

p {
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all var(--transition-speed) ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

section {
    padding: 80px 0;
    position: relative;
}

.highlight {
    color: var(--accent-color);
    position: relative;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-family: 'Lexend', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.primary-btn {
    background-color: var(--accent-color);
    color: var(--bg-gradient-start);
}

.primary-btn:hover {
    background-color: #ffda44;
    color: var(--bg-gradient-start);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.3);
}

.secondary-btn {
    background-color: var(--accent-secondary);
    color: var(--text-light);
}

.secondary-btn:hover {
    background-color: #5ed663;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(76, 175, 80, 0.3);
}

.tertiary-btn {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.tertiary-btn:hover {
    background-color: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn i {
    margin-left: 8px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(26, 16, 64, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    height: 60px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
    transition: transform var(--transition-speed) ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.nav-links a i {
    margin-right: 6px;
    font-size: 0.9rem;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed) ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-color);
}

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

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all var(--transition-speed) ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
    background: radial-gradient(circle at top right, rgba(156, 39, 176, 0.2), transparent 70%),
                radial-gradient(circle at bottom left, rgba(76, 175, 80, 0.15), transparent 70%);
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--text-light);
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    max-width: 50%;
    position: relative;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transform: perspective(800px) rotateY(-15deg);
    transition: transform var(--transition-speed) ease;
}

.hero-image:hover img {
    transform: perspective(800px) rotateY(-5deg) translateY(-10px);
}

/* Features Section */
.features {
    background-color: var(--text-light);
    text-align: center;
}

.features h2 {
    margin-bottom: 60px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(94, 53, 177, 0.05), rgba(94, 53, 177, 0.1));
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-speed) ease;
}

.feature-card:hover:before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(94, 53, 177, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Timeline Section */
.timeline {
    background-color: var(--bg-gradient-start);
    color: var(--text-light);
    text-align: center;
}

.timeline h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--accent-tertiary);
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 100%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-color);
    border-radius: 50%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(255, 204, 0, 0.3);
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 0;
}

.timeline-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content p {
    margin-bottom: 0;
    color: var(--text-light);
    opacity: 0.9;
}

/* Latest Posts Section */
.latest-posts {
    background-color: var(--text-light);
    text-align: center;
}

.latest-posts h2 {
    margin-bottom: 60px;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.post-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease;
}

.post-card:hover {
    transform: translateY(-10px);
}

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 25px;
    text-align: left;
}

.post-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.post-content p {
    color: var(--text-gray);
    margin-bottom: 15px;
}

.read-more {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    transition: transform var(--transition-speed) ease;
}

.read-more:hover i {
    transform: translateX(5px);
}

.center-btn {
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.testimonials h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

.testimonial-slider {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: left;
    flex: 1;
    transition: transform var(--transition-speed) ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-light);
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.feedback-btn-container {
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr repeat(2, 1fr) 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.footer-logo p {
    opacity: 0.8;
    margin-bottom: 0;
}

.footer-links h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-links h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--text-light);
    opacity: 0.8;
    transition: all var(--transition-speed) ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    opacity: 1;
    padding-left: 5px;
}

.footer-contact h3 {
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

.footer-contact h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
}

.social-icons a:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
    transform: translateY(-5px);
}

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

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-gray);
    transition: color var(--transition-speed) ease;
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-content h2 {
    margin-top: 0;
}

#feedback-form .form-group {
    margin-bottom: 20px;
}

#feedback-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

#feedback-form input,
#feedback-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition-speed) ease;
}

#feedback-form input:focus,
#feedback-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.rating-container {
    display: flex;
    gap: 10px;
}

.rating-container i {
    font-size: 1.5rem;
    cursor: pointer;
    color: #ddd;
    transition: color var(--transition-speed) ease;
}

.rating-container i:hover,
.rating-container i.active {
    color: #ffcc00;
}

/* Thank You Modal */
.thank-you-content {
    text-align: center;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.thank-you-content h2 {
    margin-bottom: 10px;
}

.thank-you-content p {
    margin-bottom: 30px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1500;
    display: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-content a:hover {
    text-decoration: none;
}

/* Page Banner */
.page-banner {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(156, 39, 176, 0.2), transparent 70%);
    z-index: -1;
}

.page-banner h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-banner p {
    color: var(--text-light);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Blog Page Styles */
.blog-filters {
    background-color: white;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.filter-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-bar {
    display: flex;
    width: 60%;
}

.search-bar input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-family: 'Montserrat', sans-serif;
}

.search-bar button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.search-bar button:hover {
    background-color: var(--secondary-color);
}

.category-filter select {
    padding: 12px 15px;
    border: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    background-color: white;
    cursor: pointer;
    min-width: 200px;
}

.blog-posts {
    background-color: var(--text-light);
    padding-top: 60px;
}

.post-card.featured {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .post-card.featured {
        flex-direction: row;
    }
    
    .post-card.featured .post-image {
        flex: 1;
        height: auto;
    }
    
    .post-card.featured .post-content {
        flex: 1;
    }
}

.post-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 5px;
    z-index: 1;
}

.post-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.post-meta i {
    margin-right: 5px;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.current-page, .page-number, .next-page {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    border-radius: 50%;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
}

.current-page {
    background-color: var(--primary-color);
    color: white;
}

.page-number {
    background-color: #eee;
    color: var(--text-dark);
}

.page-number:hover, .next-page:hover {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.next-page {
    background-color: #eee;
    color: var(--text-dark);
    width: auto;
    padding: 0 15px;
    border-radius: 20px;
}

.newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    color: var(--text-light);
    padding: 60px 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-content p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form input:focus {
    outline: none;
}

/* About Page Styles */
.about-banner {
    background: linear-gradient(rgba(26, 16, 64, 0.8), rgba(26, 16, 64, 0.8)), url('images/12.jpg');
    background-size: cover;
    background-position: center;
}

.about-story {
    background-color: var(--text-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    margin-top: 0;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.mission-values {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-light);
    text-align: center;
}

.mission-values h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent-color);
    font-size: 1.8rem;
}

.value-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.value-card p {
    margin-bottom: 0;
    opacity: 0.9;
}

.team-section {
    background-color: var(--text-light);
    text-align: center;
}

.team-section h2 {
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.team-member {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease;
}

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

.team-member img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.team-member h3 {
    margin: 20px 0 5px;
    font-size: 1.3rem;
}

.team-member p {
    color: var(--text-gray);
    margin: 0 20px 15px;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.team-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: var(--primary-color);
    transition: all var(--transition-speed) ease;
}

.team-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.achievements {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-light);
    text-align: center;
}

.achievements h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

.achievements-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section {
    background: url('images/16.jpg') center center/cover no-repeat;
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 16, 64, 0.8);
}

.cta-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Contact Page Styles */
.contact-banner {
    background: linear-gradient(rgba(26, 16, 64, 0.8), rgba(26, 16, 64, 0.8)), url('images/17.jpg');
    background-size: cover;
    background-position: center;
}

.contact-info {
    background-color: var(--text-light);
}

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

.contact-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: transform var(--transition-speed) ease;
}

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

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--text-light);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(94, 53, 177, 0.2);
}

.contact-card h3 {
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.contact-card .btn {
    margin-top: 10px;
}

.contact-form-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-tertiary));
    color: var(--text-light);
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
    margin-bottom: 0;
}

.contact-form {
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}

.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: 2px solid #eee;
    border-radius: var(--border-radius);
    font-family: 'Montserrat', sans-serif;
    transition: border-color var(--transition-speed) ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
}

.map-section {
    background-color: var(--text-light);
    text-align: center;
}

.map-section h2 {
    margin-bottom: 40px;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.faq-section {
    background: linear-gradient(135deg, var(--bg-gradient-start), var(--bg-gradient-end));
    color: var(--text-light);
    text-align: center;
}

.faq-section h2 {
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 1.2rem;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-speed) ease;
}

.faq-toggle i {
    transition: transform var(--transition-speed) ease;
}

.faq-item.active .faq-toggle i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-speed) ease, padding var(--transition-speed) ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

/* Blog Post Page Styles */
.blog-post {
    background-color: var(--text-light);
    padding-top: 40px;
    padding-bottom: 80px;
    margin-top: var(--header-height);
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.post-header h1 {
    margin-bottom: 20px;
}

.post-excerpt {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.post-featured-image {
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.post-content .post-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    height: auto;
}

.image-caption {
    display: block;
    text-align: center;
    font-style: italic;
    color: var(--text-gray);
    margin-top: 10px;
    font-size: 0.9rem;
}

.post-tags {
    max-width: 800px;
    margin: 40px auto 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.post-tags span {
    margin-right: 10px;
    font-weight: 600;
}

.post-tags a {
    background-color: #f5f5f5;
    color: var(--text-gray);
    padding: 5px 15px;
    border-radius: 20px;
    margin: 5px;
    font-size: 0.9rem;
    transition: all var(--transition-speed) ease;
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: white;
}

.post-share {
    max-width: 800px;
    margin: 20px auto 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.social-share {
    display: flex;
}

.social-share a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    color: var(--text-dark);
    margin: 0 5px;
    transition: all var(--transition-speed) ease;
}

.social-share a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.post-navigation {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    justify-content: space-between;
}

.prev-post, .next-post, .empty-nav {
    flex: 1;
    max-width: 45%;
}

.prev-post, .next-post {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    transition: all var(--transition-speed) ease;
}

.prev-post:hover, .next-post:hover {
    background-color: #f0f0f0;
    transform: translateY(-5px);
}

.prev-post {
    text-align: left;
}

.next-post {
    text-align: right;
}

.prev-post span, .next-post span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.prev-post h4, .next-post h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.post-author-bio {
    max-width: 800px;
    margin: 60px auto;
    background-color: #f9f9f9;
    border-radius: var(--border-radius);
    padding: 30px;
    display: flex;
    align-items: center;
}

.author-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 30px;
    flex-shrink: 0;
}

.author-info h3 {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.author-info h4 {
    margin-bottom: 10px;
}

.author-info p {
    margin-bottom: 15px;
}

.author-social {
    display: flex;
}

.author-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    color: var(--text-dark);
    margin-right: 10px;
    transition: all var(--transition-speed) ease;
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: white;
}

.related-posts {
    max-width: 1000px;
    margin: 60px auto 0;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 40px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.related-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-speed) ease;
}

.related-card:hover {
    transform: translateY(-10px);
}

.related-image {
    height: 150px;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-card h4 {
    padding: 15px 20px;
    margin-bottom: 0;
    font-size: 1.1rem;
}

.related-card .read-more {
    padding: 0 20px 15px;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        height: auto;
        padding: 80px 0;
    }
    
    .hero .container {
        flex-direction: column;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
        max-width: none;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-image {
        order: 1;
    }
    
    .timeline-container::after {
        left: 40px;
    }
    
    .timeline-item {
        width: 100%;
    }
    
    .timeline-dot {
        left: 40px;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        left: 80px !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .feature-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .post-author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto 20px;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-gradient-start);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-speed) ease;
        z-index: 100;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }
    
    .nav-links a {
        width: 100%;
        display: block;
    }
    
    .hamburger {
        display: flex;
    }
    
    .post-share {
        flex-direction: column;
    }
    
    .post-share span {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-links, .footer-contact {
        align-items: center;
    }
    
    .footer-links h3:after, .footer-contact h3:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .prev-post, .next-post {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
