/* Modern Style - Minimalist & Elegant */

:root {
    --primary-color: #15b5aa;
    --primary-dark: #10968e;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --font-main: 'Raleway', sans-serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
    font-weight: 700;
    margin-bottom: 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Header & Navbar */
.navbar {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.navbar-brand {
    font-weight: 500;
    font-size: 24px;
    color: var(--primary-color) !important;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 15px !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
#home {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

#home video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#home .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for readability */
    z-index: 0;
}

.welcome-box {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.welcome-first {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.9;
}

.welcome-title img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title span {
    display: block;
    font-size: 12px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* About Us */
#aboutUs {
    background-color: var(--bg-color);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.fact-item {
    background: #ffffff;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    padding: 15px;
    text-align: center;
    border-radius: 4px;
    height: 100%;
    transition: var(--transition);
}

.fact-item:hover {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.fact-item:hover i {
    color: #fff;
}

.fact-item i {
    color: var(--primary-color);
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    transition: var(--transition);
}

.count-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-history img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Policies */
.policy-box {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 4px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.policy-box:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
    transform: translateY(-5px);
}

.policy-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: inline-block;
}

/* Process & Services */
.process-item {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.process-item:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.process-img {
    height: 200px;
    overflow: hidden;
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-item:hover .process-img img {
    transform: scale(1.1);
}

.process-content {
    padding: 25px;
}

.process-content h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.process-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.download-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
}

.download-link:hover {
    color: var(--primary-dark);
}

/* Services Grid */
.service-grid-item {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 4px;
    height: 100%;
    border-left: 3px solid var(--primary-color);
}

.service-grid-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.service-grid-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials */
.testimonial-section {
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
}

.testimonial-section .section-title span,
.testimonial-section .section-title h2 {
    color: #fff;
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid rgba(255,255,255,0.3);
}

.testimonial-content p {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact */
#contactUs {
    background-color: var(--bg-light);
}

.contact-info {
    font-size: 15px;
    color: var(--text-light);
}

.contact-row {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.contact-row i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.contact-form .form-control {
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 15px;
    margin-bottom: 20px;
    background: #fff;
    box-shadow: none;
    height: auto;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

/* Footer */
footer {
    background: #111;
    color: #999;
    padding: 40px 0;
    text-align: center;
    font-size: 13px;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.social-links li {
    display: inline-block;
    margin: 0 10px;
}

.social-links a {
    color: #fff;
    font-size: 16px;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #888;
    width: 80%;
    height: 80%;
    position: relative;
}

.close-modal {
    position: absolute;
    right: -30px;
    top: -30px;
    font-size: 30px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate {
    animation-fill-mode: both;
    animation-duration: 1s;
}

.fadeInUp {
    animation-name: fadeInUp;
}
