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

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

/* Header */
header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 50%, #d4af37 100%);
    color: #fff;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #d4af37;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #fff, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 5px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 8px;
    backdrop-filter: blur(10px);
}

header nav ul li {
    position: relative;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 8px;
}

header nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    transition: left 0.5s ease;
}

header nav ul li a:hover::before {
    left: 100%;
}

header nav ul li a:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Navigation Icons */
header nav ul li a[href="index.html"]::before {
    content: '🏠';
    margin-left: 5px;
}

header nav ul li a[href="about.html"]::before {
    content: '👥';
    margin-left: 5px;
}

header nav ul li a[href="services.html"]::before {
    content: '⚖️';
    margin-left: 5px;
}

header nav ul li a[href="consultations.html"]::before {
    content: '💼';
    margin-left: 5px;
}

header nav ul li a[href="contact.html"]::before {
    content: '📞';
    margin-left: 5px;
}

.contact-info {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.contact-info span {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(255,255,255,0.1));
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-info span:hover {
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1e3a5f;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.3);
}

/* Responsive Header */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 3px;
        padding: 5px;
    }
    
    header nav ul li a {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .contact-info {
        justify-content: center;
        gap: 10px;
    }
    
    .contact-info span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    background: rgba(0,0,0,0.6);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    max-width: 80%;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 3;
}

.slider-btn:hover {
    background: rgba(255,255,255,0.4);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero {
        height: 400px;
    }
    
    .slide-content {
        padding: 20px;
        max-width: 90%;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-btn {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
}

/* Button Styles */
.btn {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

/* Articles Section */
.articles {
    padding: 60px 0;
    background: #fff;
}

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

.articles article {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #007bff;
}

.articles article:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.articles article h3 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.articles article p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
}

/* Footer */
footer {
    background: #1e3c72;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Floating Contact Button */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(40,167,69,0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(40,167,69,0.6);
    }
    100% {
        box-shadow: 0 4px 20px rgba(40,167,69,0.4);
    }
}

/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: auto;
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 8px;
}

.contact-details {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #333;
}

.page-content {
    padding: 60px 0;
    background: #fff;
}

.page-content h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3c72;
    font-size: 2.5rem;
}

.page-content h3 {
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.page-content p, .page-content ul, .page-content ol {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.page-content ul, .page-content ol {
    padding-right: 25px;
}

.page-content ul li, .page-content ol li {
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header .container {
        flex-direction: column;
        gap: 15px;
    }

    header nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .hero p {
        font-size: 1.1rem;
    }

    .articles .container {
        grid-template-columns: 1fr;
    }

    footer .container {
        flex-direction: column;
        text-align: center;
    }

    .page-content h2 {
        font-size: 2rem;
    }
}




/* Contact Form Styles */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect overall width */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}

.contact-form .btn {
    width: auto;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.page-content {
    padding: 40px 0;
}

.page-content h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #007bff;
}

.page-content p, .page-content ul, .page-content ol {
    line-height: 1.8;
    margin-bottom: 20px;
}

.page-content ul, .page-content ol {
    padding-right: 20px;
}

.page-content ul li, .page-content ol li {
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    header h1,
    header nav {
        float: none;
        text-align: center;
    }

    header nav ul li {
        display: block;
        padding: 10px 0;
    }

    .hero h2 {
        font-size: 2rem;
    }



/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 60px;
    width: auto;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #fff;
    transform: scale(1.2);
}

/* Articles Section Update */
.articles h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #1e3c72;
    font-size: 2.5rem;
}

/* Responsive Design for Slider */
@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 20px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slider-nav button {
        font-size: 1.5rem;
        padding: 10px 15px;
    }
    
    .logo {
        height: 40px;
    }
    
    .logo-section h1 {
        font-size: 1.2rem;
    }
}


/* Enhanced Floating Contact Button */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 6px 30px rgba(212, 175, 55, 0.7);
    }
}

.article-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    text-align: right;
    direction: rtl;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #2c5aa0 0%, #1e3a5f 100%);
    transition: width 0.3s ease;
}

.article-card:hover::before {
    width: 8px;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.article-card h3 {
    color: #1e3a5f;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-card:hover h3 {
    color: #2c5aa0;
}

.article-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.read-more:hover::before {
    left: 100%;
}

.read-more:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.read-more::after {
    content: '←';
    margin-right: 5px;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: translateX(-3px);
}

/* Featured Articles Section */
.featured-articles {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin: 40px 0;
}

.featured-articles h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.featured-articles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #d4af37);
    border-radius: 2px;
}

/* Original Articles Section */
.original-articles {
    background: white;
    padding: 60px 0;
}

.original-articles h2 {
    text-align: center;
    color: #1e3a5f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    position: relative;
}

.original-articles h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #d4af37, #2c5aa0);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-card h3 {
        font-size: 1.2rem;
    }
    
    .featured-articles h2,
    .original-articles h2 {
        font-size: 2rem;
    }
}a);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    float: right;
}

.article-card .read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

/* Articles Section */
.articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.articles h2 {
    text-align: center;
    color: #2c5aa0;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .article-card {
        padding: 20px;
    }
    
    .article-card h3 {
        font-size: 16px;
    }
    

/* Article Page Styles */
.article-main {
    margin-top: 20px;
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 200px);
}

.article-content {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

.article-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 50%, #d4af37 100%);
    color: #fff;
    padding: 40px;
    text-align: center;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.article-meta span {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.article-body {
    padding: 50px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c5aa0;
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(44, 90, 160, 0.1));
    border-radius: 10px;
    border-left: 5px solid #d4af37;
    position: relative;
}

.article-body .lead::before {
    content: '💡';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
}

.article-body h2 {
    color: #1e3a5f;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 3px solid #d4af37;
    position: relative;
}

.article-body h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: 0;
    width: 50px;
    height: 3px;
    background: #2c5aa0;
}

.article-body h3 {
    color: #2c5aa0;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.article-body ul, .article-body ol {
    margin: 20px 0;
    padding-right: 30px;
}

.article-body li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
}

.article-body li::before {
    content: '⚖️';
    position: absolute;
    right: -25px;
    top: 0;
    font-size: 0.9rem;
}

.article-body strong {
    color: #1e3a5f;
    font-weight: 700;
}

.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-section h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1e3a5f;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
}

/* Responsive Article Styles */
@media (max-width: 768px) {
    .article-header {
        padding: 30px 20px;
    }
    
    .article-header h1 {
        font-size: 1.8rem;
    }
    
    .article-meta {
        gap: 15px;
    }
    
    .article-body {
        padding: 30px 20px;
        font-size: 1rem;
    }
    
    .article-body .lead {
        font-size: 1.1rem;
        padding: 20px;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 30px 20px;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}


/* Enhanced Footer Styles */
footer {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 30%, #1e3a5f 100%);
    color: #fff;
    padding: 60px 0 20px 0;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f4d03f, #d4af37);
}

footer::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-section:hover::before {
    left: 100%;
}

.footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-section ul li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.footer-section ul li::before {
    content: '⚖️';
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-section ul li:hover {
    padding-right: 30px;
    color: #d4af37;
    border-bottom-color: #d4af37;
}

.footer-section ul li:last-child {
    border-bottom: none;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
}

.footer-bottom p::before {
    content: '©';
    display: inline-block;
    margin-left: 5px;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Social Links (if needed) */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    color: #1e3a5f;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, #f4d03f, #d4af37);
}

/* Responsive Footer */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-section {
        padding: 25px 20px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 20px;
    }
    
    .footer-section {
        padding: 20px 15px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
    }
}



/* ===== FLOATING CONTACT BUTTON - NEW VERSION ===== */

/* Main floating container */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Cairo', sans-serif;
}

/* Contact button */
.contact-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e3a5f;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-btn 3s infinite;
    min-width: 140px;
    justify-content: center;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
}

.contact-btn:active {
    transform: translateY(-1px);
}

/* Button icon and text */
.btn-icon {
    font-size: 18px;
}

.btn-text {
    font-size: 16px;
}

/* Contact menu */
.contact-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px;
    min-width: 200px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
}

/* Hidden state */
.contact-menu.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    pointer-events: none;
}

/* Contact links */
.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    text-decoration: none;
    color: #1e3a5f;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    border: 2px solid transparent;
}

.contact-link:last-child {
    margin-bottom: 0;
}

.contact-link:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #d4af37;
    transform: translateX(-3px);
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.2);
}

/* Link icons and text */
.link-icon {
    font-size: 20px;
    width: 25px;
    text-align: center;
}

.link-text {
    font-weight: 600;
    font-size: 14px;
}

/* Pulse animation */
@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.7);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-btn {
        padding: 12px 20px;
        font-size: 14px;
        min-width: 120px;
    }
    
    .btn-icon {
        font-size: 16px;
    }
    
    .btn-text {
        font-size: 14px;
    }
    
    .contact-menu {
        min-width: 180px;
        bottom: 60px;
    }
    
    .link-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .contact-btn {
        padding: 10px 18px;
        font-size: 13px;
        min-width: 110px;
    }
    
    .contact-menu {
        min-width: 160px;
        bottom: 55px;
    }
}

/* ===== END FLOATING CONTACT BUTTON ===== */

