/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a; /* Navy Blue */
    --secondary-color: #0d9488; /* Teal */
    --accent-color: #14b8a6; /* Light Teal */
    --dark-blue: #0f172a; /* Darker Navy */
    --light-blue: #3b82f6; /* Light Blue */
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #334155;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Responsive hero section */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 100vh;
        min-height: 400px;
    }
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* Ensure video container is responsive */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 768px) {
    #hero-video {
        object-position: center center;
    }
}

@media (max-width: 480px) {
    #hero-video {
        object-position: center center;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--dark-blue);
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--dark-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray);
    font-weight: 500;
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--white);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

/* WHY WE card tweaks for stronger outline like team cards */
.why-card {
    border-color: rgba(2, 6, 23, 0.08);
}
.why-card:hover {
    border-color: var(--secondary-color);
}

/* Typing Animation for cards */
.service-card,
.team-card,
.why-card {
    position: relative;
}

.typing-text {
    position: relative;
    display: inline;
}

/* Character typing animation */
.char-typing {
    display: inline-block;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .char-typing,
.team-card:hover .char-typing,
.why-card:hover .char-typing {
    animation: typingEffect 0.3s ease-in-out;
}

@keyframes typingEffect {
    0% {
        opacity: 0.3;
        transform: translateY(2px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 600px;
    width: 360px;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    aspect-ratio: 1 / 1;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

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

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    flex: 1;
    width: 100%;
}

.team-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-description {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
}

.team-social .social-link {
    width: 35px;
    height: 35px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    transition: var(--transition);
}

.team-social .social-link:hover {
    background: var(--secondary-color);
    color: var(--white);
}

/* Career Section */
.career-section {
    padding: 6rem 0;
    background: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.career-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    width: 100%;
    gap: 2rem;
}

.career-text {
    width: 100%;
}

.career-text p {
    margin-bottom: 1.5rem;
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.career-form-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.cv-button {
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cv-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 50vh; /* Optional: Ensures the section takes full height */
}

.contact-form-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%; /* Ensures it takes full width by default */
    max-width: 500px; /* Limits the maximum width for better readability */
    margin: 0 auto; /* Centers the form horizontally */
}

.contact-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Forms */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--accent-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-content {
    background-color: var(--white);
    margin: 0 auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

.success-content {
    text-align: center;
}

.close {
    color: var(--gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    top: 1rem;
}

.close:hover {
    color: var(--dark-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #1e293b 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}



.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-description p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}



.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-info .contact-item i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
    font-size: 1.1rem;
    width: 20px;
}

.contact-info .contact-item strong {
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 0.2rem;
    display: block;
}

.contact-info .contact-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    color: #94a3b8;
    margin: 0;
}

.footer-social h5 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-links .social-link {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.social-links .social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(13, 148, 136, 0.3);
}

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

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

/* Clients Section */
.clients-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.clients-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.client-marquee {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.client-track {
    display: flex;
    gap: 2rem;
    will-change: transform;
    animation: scrollX 35s linear infinite;
}

.client-marquee--fast .client-track { animation-duration: 30s; }
.client-marquee--slow .client-track { animation-duration: 45s; }
.client-marquee--reverse .client-track { animation-direction: reverse; }

.client-card {
    flex: 0 0 auto;
    width: 170px;
    height: 100px;
    border-radius: 14px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: transform .4s ease, box-shadow .4s ease, background .4s ease;
    border: 2px solid transparent;
}

.client-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
    background: #eef9f8;
}

.client-logo {
    max-width: 120px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: saturate(0) contrast(1.1) brightness(0.9);
    opacity: 0.85;
    transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}

.client-card:hover .client-logo {
    filter: saturate(1) contrast(1) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollX {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-card { width: 140px; height: 90px; }
    .client-logo { max-width: 100px; max-height: 50px; }
}

@media (max-width: 480px) {
    .client-card { width: 120px; height: 80px; }
    .client-logo { max-width: 90px; max-height: 45px; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

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

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

    .about-content,
    .career-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

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

    .nav-container {
        padding: 1rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-tagline {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Enhanced Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 800ms cubic-bezier(0.4, 0, 0.2, 1), 
                transform 800ms cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
}

.scroll-animate.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Different animation types */
.scroll-animate.slide-left {
    transform: translateX(-60px);
}

.scroll-animate.slide-right {
    transform: translateX(60px);
}

.scroll-animate.scale-up {
    transform: translateY(40px) scale(0.9);
}

.scroll-animate.scale-up.animate-in {
    transform: translateY(0) scale(1);
}

.scroll-animate.rotate-in {
    transform: translateY(40px) rotate(-5deg);
}

.scroll-animate.rotate-in.animate-in {
    transform: translateY(0) rotate(0deg);
}

/* Stagger delays for grid items */
.services-grid .scroll-animate:nth-child(1) { transition-delay: 0ms; }
.services-grid .scroll-animate:nth-child(2) { transition-delay: 100ms; }
.services-grid .scroll-animate:nth-child(3) { transition-delay: 200ms; }
.services-grid .scroll-animate:nth-child(4) { transition-delay: 300ms; }
.services-grid .scroll-animate:nth-child(5) { transition-delay: 400ms; }
.services-grid .scroll-animate:nth-child(6) { transition-delay: 500ms; }
.services-grid .scroll-animate:nth-child(7) { transition-delay: 600ms; }
.services-grid .scroll-animate:nth-child(8) { transition-delay: 700ms; }
.services-grid .scroll-animate:nth-child(9) { transition-delay: 800ms; }

.team-grid .scroll-animate:nth-child(1) { transition-delay: 0ms; }
.team-grid .scroll-animate:nth-child(2) { transition-delay: 150ms; }
.team-grid .scroll-animate:nth-child(3) { transition-delay: 300ms; }
.team-grid .scroll-animate:nth-child(4) { transition-delay: 450ms; }
.team-grid .scroll-animate:nth-child(5) { transition-delay: 600ms; }

.stats-grid .scroll-animate:nth-child(1) { transition-delay: 0ms; }
.stats-grid .scroll-animate:nth-child(2) { transition-delay: 100ms; }
.stats-grid .scroll-animate:nth-child(3) { transition-delay: 200ms; }
.stats-grid .scroll-animate:nth-child(4) { transition-delay: 300ms; }

/* Enhanced section headers */
.section-header.scroll-animate {
    transform: translateY(30px) scale(0.95);
}

.section-header.scroll-animate.animate-in {
    transform: translateY(0) scale(1);
}

/* About content animations */
.about-text.scroll-animate {
    transform: translateX(-40px);
}

.about-text.scroll-animate.animate-in {
    transform: translateX(0);
}

/* Career and contact sections */
.career-content.scroll-animate,
.contact-content.scroll-animate {
    transform: translateY(30px);
}

.career-content.scroll-animate.animate-in,
.contact-content.scroll-animate.animate-in {
    transform: translateY(0);
}

/* Client marquee animation */
.clients-wrapper.scroll-animate {
    transform: translateY(20px);
    opacity: 0.8;
}

.clients-wrapper.scroll-animate.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.char-typing, 
.typing-text {
    display: inline;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
}  