:root {
    --saffron: #FF9933;
    --saffron-light: #ffb366;
    --saffron-dark: #e67a00;
    --white: #FFFFFF;
    --green: #138808;
    --green-light: #16a308;
    --navy-blue: #0A1F44;
    --navy-light: #1a315e;
    --text-dark: #333333;
    --text-light: #6c757d;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.navbar {
    background-color: transparent;
    padding: 1.2rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: var(--saffron);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    color: var(--white) !important;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.navbar.scrolled .nav-link {
    color: var(--navy-blue) !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
}

.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
    color: var(--navy-blue) !important;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-link:after {
    background-color: var(--navy-blue);
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.hero-section {
    background: linear-gradient(rgba(10, 31, 68, 0.85), rgba(10, 31, 68, 0.9)), url('https://images.unsplash.com/photo-1582213782179-e0d53f98f2ca?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border: none;
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.btn-primary-custom:hover {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron));
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 153, 51, 0.4);
    color: var(--white);
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--navy-blue);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--saffron), var(--green));
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

/* Journey Section */
.journey-img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    width: 4px;
    background: linear-gradient(to bottom, var(--saffron), var(--green));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.3);
}

.timeline-content {
    background: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.quote-block {
    background: linear-gradient(135deg, var(--navy-blue), var(--navy-light));
    color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-block:before {
    content: '\201C';
    font-size: 5rem;
    position: absolute;
    top: -10px;
    left: 20px;
    color: rgba(255, 255, 255, 0.2);
    font-family: serif;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(rgba(10, 31, 68, 0.9), rgba(10, 31, 68, 0.9));
    color: var(--white);
    padding: 80px 0;
}

.counter-item {
    text-align: center;
}

.counter {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--saffron), var(--green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--saffron);
    color: var(--saffron);
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--saffron);
    color: var(--white);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 31, 68, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Press Section */
.press-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.press-img {
    height: 200px;
    overflow: hidden;
}

.press-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-img img {
    transform: scale(1.1);
}

.press-content {
    padding: 1.5rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    padding: 80px 0 30px;
}

.footer h5 {
    color: var(--navy-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--navy-blue);
}

.footer-links p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-links i {
    margin-right: 10px;
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--navy-blue);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    margin-top: 50px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .timeline:before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .counter {
        font-size: 2.5rem;
    }
}