/* General Styles */
:root {
    --primary-color: #acc42a;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --navy-color: #0b1359;
    --menu-color: #0b1359;
    --button-blue: #0067ac;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Top Bar */
.bg-navy {
    background-color: var(--navy-color) !important;
}

.top-bar {
    font-size: 0.95rem;
    padding: 0.7rem 0;
    background-color: var(--navy-color);
}

.top-bar a {
    text-decoration: none;
    transition: opacity 0.3s ease;
    color: #fff;
}

.top-bar a:hover {
    opacity: 0.8;
    color: #fff;
}

.top-bar i {
    font-size: 0.95rem;
}

.social-icons a {
    font-size: 0.95rem;
    color: #fff;
}

.top-bar-text {
    font-size: 1rem;
    letter-spacing: 0.2px;
    color: #fff;
}

/* Header & Navigation */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.navbar-brand {
    padding: 0;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--menu-color);
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    font-size: 1.1rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.navbar-light .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -2px;
    left: 50%;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 70%;
}

/* Language Selector */
.nav-item.lang-selector {
    margin-left: 0;
    display: inline-block;
}

.nav-item.lang-selector .nav-link {
    font-weight: 700;
    padding: 0.5rem 0.4rem;
    font-size: 0.95rem;
    display: inline-block;
}

.nav-item.lang-selector:first-of-type::after {
    content: '|';
    color: #ddd;
    display: inline-block;
    vertical-align: middle;
    font-size: 0.9rem;
    margin: 0 -2px;
}

.nav-item.lang-selector .nav-link.active {
    color: var(--primary-color);
}

.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 230px;
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    color: var(--menu-color);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 1rem;
    top: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateY(-50%);
}

.dropdown-item:hover::before {
    width: 12px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.carousel-item {
    height: 600px;
    transition: transform 1.2s ease-in-out;
}

.carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    transition: transform 1.2s ease-in-out;
}

.carousel-item.active {
    display: block;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
    bottom: 50%;
    transform: translateY(50%);
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, #fff, #f8f9fa);
    padding: 5rem 0;
    position: relative;
}

.services h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.services h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.services .card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.services .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.services .card-img-top {
    height: 220px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.services .card:hover .card-img-top {
    transform: scale(1.05);
}

.services .card-body {
    padding: 2rem;
}

.services .card-title {
    color: var(--navy-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.services .card-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.services .btn-primary {
    background-color: var(--button-blue);
    border-color: var(--button-blue);
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
    display: inline-block;
}

.services .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transition: all 0.4s ease;
    z-index: -1;
}

.services .btn-primary:hover {
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services .btn-primary:hover::before {
    left: 0;
}

.services .btn-primary:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .services {
        padding: 3rem 0;
    }
    
    .services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services .card-img-top {
        height: 180px;
    }
    
    .services .card-body {
        padding: 1.5rem;
    }
    
    .services .card-title {
        font-size: 1.3rem;
    }
    
    .services .card-text {
        font-size: 1rem;
    }
    
    .services .btn-primary {
        padding: 0.7rem 1.8rem;
        font-size: 0.9rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(to bottom, #f8f9fa, #fff);
    padding: 5rem 0;
    position: relative;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-color);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
}

.why-choose-us h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -15px;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    transform: translateX(-50%);
    border-radius: 2px;
}

.feature {
    padding: 2rem;
    transition: all 0.3s ease;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature i {
    color: var(--primary-color);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.1);
    color: var(--button-blue);
}

.feature h4 {
    color: var(--navy-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 3rem 0;
    }
    
    .why-choose-us h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .feature {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .feature i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature h4 {
        font-size: 1.3rem;
    }
    
    .feature p {
        font-size: 1rem;
    }
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-info i {
    color: var(--primary-color);
}

.map-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--dark-color);
}

.social-links a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    transition: background-color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-light .navbar-nav .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .dropdown-menu {
        box-shadow: none;
        padding: 0;
        margin: 0;
    }
    
    .dropdown-item {
        padding: 0.7rem 2rem;
    }

    .navbar-light .navbar-nav .dropdown-toggle .fa-chevron-down {
        float: right;
        margin-top: 5px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        font-size: 0.75rem;
    }
    
    .top-bar i {
        font-size: 0.75rem;
    }
    
    .social-icons {
        margin-top: 0.5rem;
    }
    
    .navbar-brand img {
        max-height: 55px;
    }
}

@media (max-width: 768px) {
    .hero-section,
    .carousel-item {
        height: 400px;
    }
    
    .services .card-img-top {
        height: 150px;
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .feature {
        margin-bottom: 30px;
    }

    .carousel-caption {
        padding: 1.5rem;
        max-width: 90%;
    }

    .carousel-caption h1 {
        font-size: 2rem;
    }

    .carousel-caption p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-section,
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        padding: 1rem;
    }
    
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.lang-group {
    display: flex;
    align-items: center;
    border-left: 1px solid #eee;
    padding-left: 1rem;
}

.lang-group .nav-item.lang-selector:first-of-type::after {
    content: '/';
    color: #ddd;
    display: inline-block;
    margin: 0 2px;
    font-size: 0.9rem;
}

@media (max-width: 991.98px) {
    .lang-group {
        border: none;
        justify-content: center;
        padding-left: 0;
        margin-top: 0.5rem;
    }
}

/* Contact CTA Section */
.contact-cta {
    background: linear-gradient(45deg, var(--button-blue), var(--navy-color));
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    padding: 3.5rem 0;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.contact-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-cta p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
    color: #fff;
}

.contact-cta .btn-primary {
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: white;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 50px;
    white-space: nowrap;
    display: inline-block;
}

.contact-cta .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: transparent;
    border-color: #fff;
}

.contact-cta .btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.contact-cta .btn-primary::after {
    content: '→';
    position: relative;
    opacity: 0;
    margin-left: -20px;
    transition: all 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.contact-cta .btn-primary:hover::after {
    opacity: 1;
    margin-left: 10px;
}

@media (max-width: 768px) {
    .contact-cta {
        padding: 2rem 0;
        text-align: center;
    }
    
    .contact-cta h3 {
        font-size: 1.8rem;
    }
    
    .contact-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-cta .text-md-end {
        text-align: center !important;
    }
}

.navbar-light .navbar-nav .dropdown-toggle::after {
    display: none;
}

.navbar-light .navbar-nav .dropdown-toggle .fa-chevron-down {
    font-size: 0.8em;
    transition: transform 0.3s ease;
    opacity: 0.8;
    position: relative;
    top: -1px;
}

.navbar-light .navbar-nav .dropdown-toggle:hover .fa-chevron-down {
    opacity: 1;
    transform: translateY(2px);
}

.navbar-light .navbar-nav .show .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* Page Header */
.page-header {
    background: linear-gradient(45deg, var(--navy-color), var(--button-blue));
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
    position: relative;
}

.page-header h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-header .breadcrumb-item.active {
    color: white;
}

/* About Section */
.about-section {
    padding: 2rem 0;
}

.about-content h2 {
    color: var(--navy-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-content .lead {
    color: var(--navy-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.about-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: auto;
}

/* Vision Mission Section */
.vision-mission-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.vision-card,
.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    height: 100%;
}

.card-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.5rem;
}

.vision-card h3,
.mission-card h3 {
    color: var(--navy-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.vision-card p,
.mission-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Values Section */
.values-section {
    padding: 3rem 0;
}

.values-section h2 {
    color: var(--navy-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-icon i {
    font-size: 1.5rem;
}

.value-item h4 {
    color: var(--navy-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-section,
    .vision-mission-section,
    .values-section {
        padding: 2rem 0;
    }
    
    .about-content h2,
    .values-section h2 {
        font-size: 1.6rem;
    }
    
    .vision-card,
    .mission-card,
    .value-item {
        margin-bottom: 1rem;
    }
} 