@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--charcoal-gray: #2B2D42;
--platinum-silver: #C0C5CE;
--icy-blue: #A8DADC;
--deep-charcoal: #1A1C2E;
--light-gray: #EDF2F4;
--accent-blue: #457B9D;
--dark-overlay: rgba(43, 45, 66, 0.85);
}

body {
font-family: 'Rajdhani', sans-serif;
background-color: var(--deep-charcoal);
color: var(--light-gray);
line-height: 1.6;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Orbitron', sans-serif;
font-weight: 700;
letter-spacing: 1px;
}

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

#progressBar {
position: fixed;
top: 0;
left: 0;
width: 0%;
height: 4px;
background: linear-gradient(90deg, var(--icy-blue), var(--platinum-silver));
z-index: 10000;
transition: width 0.1s ease;
}

.main-header {
background: rgba(26, 28, 46, 0.95);
backdrop-filter: blur(10px);
position: sticky;
top: 0;
z-index: 1000;
border-bottom: 1px solid var(--platinum-silver);
padding: 15px 0;
}

.navigation-bar {
display: flex;
justify-content: space-between;
align-items: center;
}

.brand-logo {
height: 50px;
width: auto;
}

.nav-menu {
display: flex;
list-style: none;
gap: 35px;
}

.nav-menu a {
color: var(--platinum-silver);
text-decoration: none;
font-weight: 500;
font-size: 16px;
transition: all 0.3s ease;
position: relative;
padding: 5px 0;
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--icy-blue);
transition: width 0.3s ease;
}

.nav-menu a:hover {
color: var(--icy-blue);
}

.nav-menu a:hover::after {
width: 100%;
}

.hero-banner {
position: relative;
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
}

.hero-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: 1;
}

.hero-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(26, 28, 46, 0.8), rgba(43, 45, 66, 0.6));
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
text-align: center;
max-width: 900px;
padding: 0 20px;
}

.hero-title {
font-size: 4rem;
margin-bottom: 20px;
color: var(--platinum-silver);
text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
animation: fadeInUp 1s ease;
}

.hero-subtitle {
font-size: 1.5rem;
color: var(--icy-blue);
margin-bottom: 40px;
animation: fadeInUp 1.2s ease;
}

.cta-button {
display: inline-block;
padding: 15px 45px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
color: var(--deep-charcoal);
text-decoration: none;
font-weight: 700;
font-size: 18px;
border-radius: 50px;
transition: all 0.3s ease;
animation: fadeInUp 1.4s ease;
border: 2px solid transparent;
}

.cta-button:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(168, 218, 220, 0.4);
border-color: var(--platinum-silver);
}

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

.features-grid {
padding: 100px 0;
background: var(--charcoal-gray);
}

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

.feature-card {
background: rgba(192, 197, 206, 0.05);
backdrop-filter: blur(10px);
border: 1px solid rgba(192, 197, 206, 0.2);
border-radius: 20px;
padding: 40px 30px;
text-align: center;
transition: all 0.4s ease;
}

.glass-effect {
background: rgba(192, 197, 206, 0.08);
backdrop-filter: blur(15px);
border: 1px solid rgba(192, 197, 206, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
transform: translateY(-10px);
border-color: var(--icy-blue);
box-shadow: 0 15px 40px rgba(168, 218, 220, 0.3);
}

.icon-wrapper {
width: 80px;
height: 80px;
margin: 0 auto 25px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.icon-wrapper svg {
stroke: var(--deep-charcoal);
}

.feature-card h3 {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--platinum-silver);
}

.feature-card p {
color: var(--light-gray);
line-height: 1.8;
}

.experience-section {
padding: 100px 0;
background: var(--deep-charcoal);
}

.experience-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.experience-image img {
width: 100%;
border-radius: 20px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.experience-text h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--platinum-silver);
}

.experience-text p {
margin-bottom: 20px;
font-size: 1.1rem;
color: var(--light-gray);
}

.secondary-button {
display: inline-block;
margin-top: 20px;
padding: 12px 35px;
border: 2px solid var(--icy-blue);
color: var(--icy-blue);
text-decoration: none;
font-weight: 600;
border-radius: 50px;
transition: all 0.3s ease;
}

.secondary-button:hover {
background: var(--icy-blue);
color: var(--deep-charcoal);
}

.gallery-showcase {
padding: 100px 0;
background: var(--charcoal-gray);
}

.section-title {
text-align: center;
font-size: 2.8rem;
margin-bottom: 60px;
color: var(--platinum-silver);
}

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

.gallery-item {
position: relative;
overflow: hidden;
border-radius: 15px;
height: 300px;
}

.gallery-image {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.gallery-overlay {
position: absolute;
bottom: 0;
left: 0;
right: 0;
background: linear-gradient(to top, rgba(26, 28, 46, 0.9), transparent);
padding: 30px;
transform: translateY(100%);
transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image {
transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
transform: translateY(0);
}

.gallery-overlay h4 {
color: var(--icy-blue);
font-size: 1.3rem;
}

.testimonials-section {
padding: 100px 0;
background: var(--deep-charcoal);
}

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

.testimonial-card {
padding: 40px;
border-radius: 20px;
transition: all 0.3s ease;
}

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

.testimonial-text {
font-size: 1.05rem;
line-height: 1.8;
margin-bottom: 25px;
color: var(--light-gray);
font-style: italic;
}

.testimonial-author {
display: flex;
flex-direction: column;
gap: 5px;
}

.testimonial-author strong {
color: var(--icy-blue);
font-size: 1.1rem;
}

.testimonial-author span {
color: var(--platinum-silver);
font-size: 0.95rem;
}

.main-footer {
background: var(--charcoal-gray);
padding: 60px 0 30px;
border-top: 1px solid var(--platinum-silver);
}

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

.footer-column h4 {
color: var(--icy-blue);
margin-bottom: 20px;
font-size: 1.2rem;
}

.footer-logo {
width: 120px;
margin-bottom: 20px;
}

.footer-description {
color: var(--light-gray);
margin-bottom: 15px;
line-height: 1.7;
}

.registration-number {
color: var(--platinum-silver);
font-size: 0.9rem;
}

.footer-links {
list-style: none;
}

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

.footer-links a {
color: var(--light-gray);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--icy-blue);
}

.footer-column p {
color: var(--light-gray);
line-height: 1.8;
}

.footer-column a {
color: var(--icy-blue);
text-decoration: none;
}

.footer-column a:hover {
text-decoration: underline;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(192, 197, 206, 0.2);
color: var(--platinum-silver);
}

.cookie-banner {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: rgba(26, 28, 46, 0.98);
backdrop-filter: blur(10px);
padding: 25px;
z-index: 9999;
border-top: 2px solid var(--icy-blue);
display: none;
}

.cookie-banner.active {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
transform: translateY(100%);
}
to {
transform: translateY(0);
}
}

.cookie-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-wrap: wrap;
gap: 20px;
}

.cookie-text h4 {
color: var(--icy-blue);
margin-bottom: 10px;
}

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

.cookie-actions {
display: flex;
gap: 15px;
flex-wrap: wrap;
}

.cookie-btn {
padding: 10px 25px;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Rajdhani', sans-serif;
}

.accept-btn {
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
color: var(--deep-charcoal);
}

.accept-btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(168, 218, 220, 0.4);
}

.customize-btn {
background: transparent;
border: 2px solid var(--platinum-silver);
color: var(--platinum-silver);
}

.customize-btn:hover {
background: var(--platinum-silver);
color: var(--deep-charcoal);
}

.decline-btn {
background: transparent;
border: 2px solid var(--charcoal-gray);
color: var(--light-gray);
}

.decline-btn:hover {
background: var(--charcoal-gray);
}

.cookie-policy-link {
color: var(--icy-blue);
text-decoration: none;
font-size: 0.9rem;
}

.cookie-policy-link:hover {
text-decoration: underline;
}

.page-hero {
background: linear-gradient(135deg, var(--charcoal-gray), var(--deep-charcoal));
padding: 80px 0;
text-align: center;
border-bottom: 2px solid var(--platinum-silver);
}

.page-title {
font-size: 3.5rem;
color: var(--platinum-silver);
margin-bottom: 15px;
}

.page-subtitle {
font-size: 1.3rem;
color: var(--icy-blue);
}

.blog-section {
padding: 80px 0;
background: var(--deep-charcoal);
}

.blog-posts-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
gap: 40px;
}

.blog-post-card {
border-radius: 20px;
overflow: hidden;
transition: all 0.4s ease;
}

.blog-post-card:hover {
transform: translateY(-10px);
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.post-image-wrapper {
width: 100%;
height: 250px;
overflow: hidden;
}

.post-thumbnail {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.blog-post-card:hover .post-thumbnail {
transform: scale(1.1);
}

.post-content {
padding: 30px;
}

.post-meta {
display: flex;
gap: 15px;
margin-bottom: 15px;
font-size: 0.9rem;
}

.post-date {
color: var(--platinum-silver);
}

.post-category {
color: var(--icy-blue);
font-weight: 600;
}

.post-title {
font-size: 1.5rem;
margin-bottom: 15px;
color: var(--platinum-silver);
line-height: 1.4;
}

.post-excerpt {
color: var(--light-gray);
margin-bottom: 20px;
line-height: 1.7;
}

.read-more-link {
color: var(--icy-blue);
text-decoration: none;
font-weight: 600;
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
}

.read-more-link:hover {
gap: 10px;
}

.read-more-link::after {
content: '→';
margin-left: 5px;
transition: margin-left 0.3s ease;
}

.read-more-link:hover::after {
margin-left: 10px;
}

.about-story {
padding: 80px 0;
background: var(--charcoal-gray);
}

.story-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
}

.story-content h2 {
font-size: 2.5rem;
margin-bottom: 25px;
color: var(--platinum-silver);
}

.story-content p {
margin-bottom: 20px;
font-size: 1.05rem;
color: var(--light-gray);
line-height: 1.8;
}

.rounded-image {
width: 100%;
border-radius: 20px;
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.values-section {
padding: 80px 0;
background: var(--deep-charcoal);
}

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

.value-card {
padding: 40px 30px;
border-radius: 20px;
text-align: center;
transition: all 0.3s ease;
}

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

.value-icon {
width: 70px;
height: 70px;
margin: 0 auto 20px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.value-icon svg {
stroke: var(--deep-charcoal);
}

.value-card h3 {
font-size: 1.4rem;
margin-bottom: 15px;
color: var(--platinum-silver);
}

.value-card p {
color: var(--light-gray);
line-height: 1.7;
}

.team-section {
padding: 80px 0;
background: var(--charcoal-gray);
}

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

.team-member-card {
border-radius: 20px;
overflow: hidden;
transition: all 0.3s ease;
}

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

.member-image {
width: 100%;
height: 400px;
overflow: hidden;
}

.member-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

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

.member-info {
padding: 30px;
}

.member-info h3 {
font-size: 1.5rem;
margin-bottom: 8px;
color: var(--platinum-silver);
}

.member-role {
color: var(--icy-blue);
font-weight: 600;
margin-bottom: 15px;
display: block;
}

.member-bio {
color: var(--light-gray);
line-height: 1.7;
}

.stats-section {
padding: 80px 0;
background: var(--deep-charcoal);
}

.stats-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
text-align: center;
}

.stat-item {
padding: 30px;
}

.stat-number {
font-size: 3.5rem;
color: var(--icy-blue);
margin-bottom: 10px;
}

.stat-label {
font-size: 1.1rem;
color: var(--platinum-silver);
}

.contact-section {
padding: 80px 0;
background: var(--deep-charcoal);
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1.5fr;
gap: 60px;
}

.contact-info-panel h2 {
font-size: 2.2rem;
margin-bottom: 20px;
color: var(--platinum-silver);
}

.contact-info-panel > p {
color: var(--light-gray);
margin-bottom: 40px;
line-height: 1.8;
}

.contact-detail {
display: flex;
gap: 20px;
margin-bottom: 30px;
}

.contact-icon {
width: 50px;
height: 50px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
}

.contact-icon svg {
stroke: var(--deep-charcoal);
}

.contact-text h4 {
color: var(--icy-blue);
margin-bottom: 8px;
font-size: 1.1rem;
}

.contact-text p {
color: var(--light-gray);
line-height: 1.7;
}

.contact-text a {
color: var(--icy-blue);
text-decoration: none;
}

.contact-text a:hover {
text-decoration: underline;
}

.contact-form-panel {
padding: 40px;
border-radius: 20px;
}

.contact-form-panel h2 {
font-size: 2rem;
margin-bottom: 30px;
color: var(--platinum-silver);
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 8px;
}

.form-group label {
color: var(--platinum-silver);
font-weight: 600;
font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
padding: 12px 15px;
background: rgba(192, 197, 206, 0.05);
border: 1px solid rgba(192, 197, 206, 0.2);
border-radius: 8px;
color: var(--light-gray);
font-family: 'Rajdhani', sans-serif;
font-size: 1rem;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--icy-blue);
background: rgba(192, 197, 206, 0.1);
}

.submit-btn {
padding: 15px 40px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
color: var(--deep-charcoal);
border: none;
border-radius: 50px;
font-weight: 700;
font-size: 1.1rem;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Orbitron', sans-serif;
}

.submit-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 30px rgba(168, 218, 220, 0.4);
}

.map-section {
padding: 80px 0;
background: var(--charcoal-gray);
}

.map-placeholder {
border-radius: 20px;
overflow: hidden;
height: 500px;
}

.map-image {
width: 100%;
height: 100%;
object-fit: cover;
}

.modal-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.8);
display: none;
align-items: center;
justify-content: center;
z-index: 10000;
}

.modal-overlay.active {
display: flex;
animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

.modal-content {
padding: 60px;
border-radius: 20px;
text-align: center;
max-width: 500px;
animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
from {
transform: scale(0.8);
}
to {
transform: scale(1);
}
}

.modal-icon {
width: 100px;
height: 100px;
margin: 0 auto 25px;
background: linear-gradient(135deg, var(--icy-blue), var(--accent-blue));
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}

.modal-icon svg {
stroke: var(--deep-charcoal);
}

.modal-content h3 {
font-size: 2rem;
margin-bottom: 15px;
color: var(--platinum-silver);
}

.modal-content p {
color: var(--light-gray);
margin-bottom: 30px;
line-height: 1.8;
}

.modal-close-btn {
padding: 12px 40px;
background: transparent;
border: 2px solid var(--icy-blue);
color: var(--icy-blue);
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
font-family: 'Rajdhani', sans-serif;
font-size: 1rem;
}

.modal-close-btn:hover {
background: var(--icy-blue);
color: var(--deep-charcoal);
}

.blog-post-article {
background: var(--deep-charcoal);
}

.post-header {
padding: 60px 0 30px;
background: var(--charcoal-gray);
}

.back-link {
color: var(--icy-blue);
text-decoration: none;
font-weight: 600;
display: inline-block;
margin-bottom: 20px;
transition: all 0.3s ease;
}

.back-link:hover {
gap: 10px;
}

.article-title {
font-size: 3rem;
color: var(--platinum-silver);
margin-bottom: 20px;
line-height: 1.3;
}

.article-meta {
display: flex;
gap: 20px;
font-size: 0.95rem;
flex-wrap: wrap;
}

.article-date,
.article-category,
.reading-time {
color: var(--platinum-silver);
}

.article-category {
color: var(--icy-blue);
font-weight: 600;
}

.post-featured-image {
width: 100%;
height: 500px;
overflow: hidden;
}

.post-featured-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.post-content-wrapper {
padding: 80px 0;
}

.article-content {
max-width: 900px;
margin: 0 auto;
}

.lead-paragraph {
font-size: 1.25rem;
color: var(--icy-blue);
margin-bottom: 40px;
line-height: 1.9;
font-weight: 500;
}

.article-content h2 {
font-size: 2rem;
color: var(--platinum-silver);
margin: 50px 0 25px;
}

.article-content p {
color: var(--light-gray);
margin-bottom: 25px;
line-height: 1.9;
font-size: 1.05rem;
}

.content-image {
width: 100%;
border-radius: 15px;
margin: 40px 0;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.related-posts {
padding: 80px 0;
background: var(--charcoal-gray);
}

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

.related-card {
border-radius: 15px;
overflow: hidden;
text-decoration: none;
display: block;
transition: all 0.3s ease;
}

.related-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

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

.related-card h3 {
padding: 25px;
color: var(--platinum-silver);
font-size: 1.2rem;
line-height: 1.5;
}

@media (max-width: 1024px) {
.hero-title {
font-size: 3rem;
}

.experience-wrapper,
.story-wrapper,
.contact-wrapper {
grid-template-columns: 1fr;
gap: 40px;
}

.article-title {
font-size: 2.3rem;
}
}

@media (max-width: 768px) {
.nav-menu {
gap: 20px;
font-size: 14px;
}

.hero-title {
font-size: 2.2rem;
}

.hero-subtitle {
font-size: 1.2rem;
}

.page-title {
font-size: 2.5rem;
}

.blog-posts-grid,
.gallery-grid,
.team-grid,
.related-grid {
grid-template-columns: 1fr;
}

.cookie-content {
flex-direction: column;
align-items: flex-start;
}

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

.stats-grid {
grid-template-columns: repeat(2, 1fr);
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 1.8rem;
}

.cta-button {
padding: 12px 30px;
font-size: 16px;
}

.article-title {
font-size: 1.8rem;
}

.article-content h2 {
font-size: 1.5rem;
}

.nav-menu {
flex-direction: column;
gap: 10px;
}
}

h1, h2, h3, h4, h5, h6 {word-break: break-word;}
