.logo,nav ul {
    display:flex
}
.cta-button,.service-card,header,nav ul li a {
    transition:.3s
}
.cta-button,.logo,.read-more,nav ul li a {
    text-decoration:none
}
.read-more:hover,nav ul li a {
    color:#616161
}
.about-img img,.article-img img,.client-img img,.service-img img {
    width:100%;
    height:100%;
    object-fit:cover
}
.section-header h2::after,.section-title:after {
    width:80px;
    height:4px;
    content:'';
    position:absolute
}
.about-img,.article-card,.article-img,.client-img,.service-card,.service-img {
    overflow:hidden
}
.cta-button,.logo,.read-more,.submit-btn {
    font-weight:700
}
.about-img,.footer-col h3,.section-title,.service-card,.testimonial-text,nav ul li a {
    position:relative
}
:root {
    --primary:#ffffff;
    --primary-dark:#ffffff;
    --secondary:#000000;
    --accent:#000000;
    --light:#000000;
    --dark:#000000;
    --gray:#6c757d
}
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Tajawal,sans-serif
}
body {
    background-color:var(--light);
    color:var(--dark);
    overflow-x:hidden
}
::-webkit-scrollbar {
    width:10px
}
::-webkit-scrollbar-track {
    background:#fff
}
::-webkit-scrollbar-thumb {
    background:var(--light);
    border-radius:10px
}
.cta-button,.section-header h2::after,nav ul li a::after {
    background-color:var(--accent)
}
header {
    color:#000;
    padding:1rem 2rem;
    position:fixed;
    width:100%;
    top:0;
    z-index:1000;
    box-shadow:0 0 0 transparent
}
header.shrink {
    padding:.5rem 2rem;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px)
}
.header-container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    max-width:1200px;
    margin:0 auto
}
.hero,.logo {
    align-items:center
}
.logo {
    gap:10px;
    font-size:1.8rem;
    color:#000;
    animation:2s infinite pulse;
    margin-top:10px
}
.logo i,nav ul li a:hover {
    color:var(--accent)
}
nav ul {
    list-style:none;
    gap:2rem
}
nav ul li a {
    font-weight:500;
    font-size:1.1rem;
    padding:.5rem 0
}
nav ul li a::after {
    content:'';
    position:absolute;
    bottom:0;
    left:0;
    width:0;
    height:2px;
    transition:width .3s
}
nav ul li a:hover::after {
    width:100%
}
.menu-toggle {
    display:none;
    cursor:pointer;
    font-size:1.5rem
}
.cta-button {
    color:#fff;
    padding:.7rem 1.5rem;
    border-radius:30px;
    display:inline-block;
    border:none;
    cursor:pointer
}
.cta-button:hover {
    transform:translateY(-3px);
    background-color:#000
}
.hero {
    height:100vh;
    background:#fff;
    display:flex;
    padding:0 2rem;
    color:#111010;
    text-align:right
}
.hero-content {
    max-width:1200px;
    margin:0 auto;
    animation:1.5s fadeIn
}
.hero h1 {
    font-size:3.5rem;
    margin-bottom:1rem;
    line-height:1.2
}
.hero p {
    font-size:1.2rem;
    margin-bottom:2rem;
    max-width:600px
}
.about,.articles,.services {
    padding:5rem 2rem;
    background-color:#fff
}
.section-header h2 {
    font-size:2.5rem;
    color:#000;
    position:relative;
    display:inline-block;
    margin-bottom:1rem
}
.section-header h2::after {
    bottom:-10px;
    left:50%;
    transform:translateX(-50%);
    border-radius:9px
}
.section-header p {
    color:var(--gray);
    font-size:1.1rem;
    max-width:700px;
    margin:0 auto
}
.services-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:2rem;
    max-width:1200px;
    margin:0 auto
}
.service-card {
    background-color:#f5f5f5;
    border-radius:20px;
    z-index:1
}
.service-card:hover {
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(248,248,248,.15)
}
.service-img {
    height:200px
}
.article-img img,.service-img img {
    transition:transform .5s
}
.article-card:hover .article-img img,.service-card:hover .service-img img {
    transform:scale(1.1)
}
.service-content {
    padding:1.5rem
}
.service-content h3 {
    margin-bottom:1rem;
    color:#000;
    font-size:1.5rem
}
.about-content p,.service-content p {
    color:var(--gray);
    margin-bottom:1.5rem;
    line-height:1.6
}
.read-more {
    color:#b6aeae;
    display:flex;
    align-items:center;
    gap:5px;
    transition:color .3s
}
.about-container,.about-features {
    display:grid;
    grid-template-columns:1fr 1fr
}
.about-container {
    gap:4rem;
    max-width:1200px;
    margin:0 auto;
    align-items:center
}
.about-img {
    border-radius:38px;
    box-shadow:0 15px 30px rgba(0,0,0,.1);
    height:500px
}
.about-content h2 {
    font-size:2.5rem;
    color:#000;
    margin-bottom:1.5rem
}
.about-features {
    margin-top:2rem;
    gap:1.5rem
}
.feature-item {
    display:flex;
    gap:1rem
}
.feature-icon {
    background-color:var(--secondary);
    color:var(--primary-dark);
    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.2rem;
    flex-shrink:0
}
.feature-text h4 {
    color:#000;
    margin-bottom:.5rem
}
.feature-text p {
    margin:0;
    font-size:.9rem
}
.testimonials-section {
    padding:80px 20px;
    margin:0 auto;
    background:#fff
}
.section-header {
    text-align:center;
    margin-bottom:60px
}
.section-title {
    font-size:2.8rem;
    color:#2c3e50;
    margin-bottom:15px;
    display:inline-block
}
.section-title:after {
    bottom:-15px;
    right:0;
    background:#fff;
    border-radius:3px
}
.section-subtitle {
    font-size:1.2rem;
    color:#7f8c8d;
    max-width:700px;
    margin:0 auto
}
.testimonials-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:30px
}
.testimonial-card {
    background:#fff;
    border-radius:15px;
    padding:35px;
    transition:.3s;
    border:1px solid #eee
}
.testimonial-card:hover {
    transform:translateY(-5px)
}
.testimonial-card:before {
    content:'\f10d';
    font-family:'Font Awesome 6 Free';
    font-weight:900;
    position:absolute;
    top:20px;
    right:20px;
    font-size:60px;
    color:rgba(52,152,219,.1);
    z-index:0
}
.testimonial-text {
    font-size:1.1rem;
    color:#555;
    margin-bottom:25px;
    z-index:1;
    line-height:1.8
}
.client-info {
    display:flex;
    align-items:center;
    padding-top:20px;
    border-top:1px solid #eee
}
.client-img {
    width:70px;
    height:70px;
    border-radius:50%;
    margin-left:15px;
    border:2px solid #f5f5f5
}
.client-details h4 {
    font-size:1.2rem;
    color:#2c3e50;
    margin-bottom:5px
}
.client-details p {
    color:#7f8c8d;
    font-size:.9rem;
    display:flex;
    align-items:center;
    gap:5px
}
.client-details p i {
    color:#5183c5
}
.rating {
    color:#f1c40f;
    margin-top:5px;
    font-size:.9rem
}
.thank-you-note {
    text-align:center;
    margin-top:100px;
    padding:30px;
    background:linear-gradient(135deg,#3498db,#32da78d2);
    border-radius:35px;
    color:#fff
}
.thank-you-note h3 {
    font-size:2rem;
    margin-bottom:15px;
    color:#fff
}
.thank-you-note p {
    font-size:1.1rem;
    max-width:800px;
    margin:0 auto;
    color:#fff
}
.articles-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
    gap:2rem;
    max-width:1200px;
    margin:0 auto
}
.article-card {
    background-color:#f5f5f5;
    border-radius:20px;
    transition:.3s;
    display:flex;
    flex-direction:column
}
.article-card:hover {
    transform:translateY(-10px)
}
.article-img {
    height:250px
}
.article-content {
    padding:1.5rem;
    flex-grow:1;
    display:flex;
    flex-direction:column
}
.article-meta {
    display:flex;
    gap:1rem;
    margin-bottom:1rem;
    color:var(--gray);
    font-size:.9rem
}
.article-content h3 {
    margin-bottom:1rem;
    color:#000;
    font-size:1.4rem
}
.article-content p {
    color:var(--gray);
    margin-bottom:1.5rem;
    line-height:1.6;
    flex-grow:1
}
.contact {
    padding:5rem 2rem;
    background:linear-gradient(135deg,var(--primary),var(--primary-dark));
    color:#000
}
.contact-container {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:4rem;
    max-width:1200px;
    margin:0 auto
}
.contact-info {
    display:flex;
    flex-direction:column;
    gap:2rem
}
.contact-info h2 {
    font-size:2.5rem;
    margin-bottom:1rem
}
.contact-form h3,.form-group {
    margin-bottom:1.5rem
}
.contact-info p {
    opacity:.9;
    line-height:1.6
}
.contact-details {
    display:flex;
    flex-direction:column;
    gap:1.5rem
}
.contact-item {
    display:flex;
    align-items:flex-start;
    gap:1rem
}
.contact-icon,.social-links a {
    height:40px;
    align-items:center
}
.contact-icon {
    background-color:var(--accent);
    color:#fff;
    width:40px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    font-size:1.2rem;
    flex-shrink:0
}
#call-button,.contact-form,footer {
    background-color:#000
}
.contact-form {
    padding:2rem;
    border-radius:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.2)
}
.contact-form h3 {
    color:var(--primary-dark);
    font-size:1.8rem
}
.form-group label {
    display:block;
    margin-bottom:.5rem;
    color:var(--primary-dark);
    font-weight:500
}
.form-group input,.form-group textarea {
    background-color:#dfdfdf;
    width:100%;
    padding:.6rem .7rem;
    border:1px solid #e0e0e0;
    border-radius:15px;
    font-size:1rem;
    transition:.3s
}
.form-group input:focus,.form-group textarea:focus {
    border-color:#f5f5f5;
    outline:0;
    box-shadow:0 0 0 3px rgba(229,234,235,.2)
}
.form-group textarea {
    min-height:150px;
    resize:vertical
}
.submit-btn {
    background-color:#f1b320;
    color:var(--dark);
    padding:.8rem 1.5rem;
    border:none;
    border-radius:13px;
    font-size:1rem;
    cursor:pointer;
    transition:.3s;
    width:100%
}
#call-button,.social-links a {
    border-radius:50%;
    text-decoration:none
}
.submit-btn:hover {
    background-color:#f1b320;
    transform:translateY(-3px)
}
footer {
    color:#fff;
    padding:3rem 2rem 1rem
}
.footer-container {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:2rem;
    max-width:1200px;
    margin:0 auto
}
.footer-col h3 {
    font-size:1.3rem;
    margin-bottom:1.5rem
}
.footer-col h3::after {
    content:'';
    position:absolute;
    left:0;
    bottom:-10px;
    width:50px;
    height:2px;
    background-color:var(--accent)
}
.footer-col p {
    opacity:.8;
    line-height:1.6;
    margin-bottom:1rem
}
.footer-links {
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:.8rem
}
.footer-links li a {
    color:#fff;
    opacity:.8;
    text-decoration:none;
    transition:.3s
}
.footer-links li a:hover {
    opacity:1;
    padding-right:5px
}
.social-links {
    display:flex;
    gap:1rem;
    margin-top:1rem
}
.footer-bottom,.footer-bottom a {
    text-align:center;
    padding-top:2rem;
    margin-top:2rem;
    border-top:1px solid rgba(255,255,255,.1);
    opacity:.7;
    font-size:.9rem
}
.social-links a {
    color:#fff;
    background-color:rgba(255,255,255,.1);
    width:40px;
    display:flex;
    justify-content:center;
    transition:.3s
}
.social-links a:hover {
    background-color:#fff;
    color:#000;
    transform:translateY(-3px)
}
.footer-bottom a {
    color:#fff;
    text-decoration:none
}
#call-button {
    position:fixed;
    bottom:25px;
    left:25px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 6px rgba(0,0,0,.1);
    z-index:999999
}
.call-icon {
    width:25px;
    height:25px
}
@keyframes scrollText {
    0% {
        transform:translateX(100%)
    }
    100% {
        transform:translateX(-100%)
    }
}
.scrolling-text {
    white-space:nowrap;
    display:inline-block;
    animation:12s linear infinite scrollText;
    font-weight:600;
    padding-right:100%;
    margin-top:10px;
    margin-bottom:10px
}
.scrolling-text:hover {
    animation-play-state:paused
}
@keyframes fadeIn {
    from {
        opacity:0;
        transform:translateY(20px)
    }
    to {
        opacity:1;
        transform:translateY(0)
    }
}
@keyframes pulse {
    0%,100% {
        transform:scale(1)
    }
    50% {
        transform:scale(1.05)
    }
}
.fade-in {
    animation:1s forwards fadeIn;
    opacity:0
}
.fade-in.delay-1 {
    animation-delay:.2s
}
.fade-in.delay-2 {
    animation-delay:.4s
}
.fade-in.delay-3 {
    animation-delay:.6s
}
@media (max-width:992px) {
    .about-container,.contact-container {
        grid-template-columns:1fr
    }
    .about-img {
        height:400px
    }
    .testimonial-card {
        min-width:calc(100% - 2rem)
    }
}
@media (max-width:768px) {
    .testimonials-grid {
        grid-template-columns:1fr
    }
    .section-title {
        font-size:2.2rem
    }
    .section-subtitle {
        font-size:1rem
    }
    .testimonial-card {
        padding:25px
    }
    .menu-toggle {
        display:block;
        z-index:1001
    }
    nav {
        position:fixed;
        top:0;
        right:-100%;
        width:70%;
        height:100vh;
        background-color:var(--primary-dark);
        padding:6rem 2rem 2rem;
        transition:.5s
    }
    nav.active {
        right:0
    }
    nav ul {
        flex-direction:column;
        gap:2rem
    }
    .hero h1 {
        font-size:2.5rem
    }
    .section-header h2 {
        font-size:2rem
    }
}
@media (max-width:576px) {
    .services-grid {
        grid-template-columns:1fr
    }
    .hero h1 {
        font-size:2rem
    }
    .hero p {
        font-size:1rem
    }
}