@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@500&display=swap');

/* Base styles and reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0056b3;
    --secondary: #28a745;
    --dark: #333;
    --light: #f8f9fa;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --whatsapp: #0e9440;
}

html {
    scroll-behavior: smooth;
    direction: rtl;
}

body {
    font-family: "Alexandria", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background-color: var(--primary);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--primary);
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
}

.btn:hover {
    background: #004494;
    transform: translateY(-3px);
}

.whatsapp-btn {
    background: var(--whatsapp);
}

.whatsapp-btn:hover {
    background: #1da851;
}

/* Header */
.header {
    background: white;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--primary);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 1.5rem;
}

nav ul li:last-child {
    margin-right: 0;
}

nav a {
    font-weight: bold;
    padding: 0.5rem;
}

nav a:hover {
    color: #004494;
}

/* Hero Section */
.hero {
    background: #e6f2ff;
    padding: 4rem 0;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}
.hero-call-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.hero-content h2 {
    font-size: 2.2rem;
    text-align: right;
    margin-bottom: 1rem;
}

.hero-content h2:after {
    display: none;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.hero-image {
    flex: 1;
}

.hero-image img {
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.service-card h3 {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-right: 1.5rem;
}

.features-list li:before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    right: 0;
    top: -5px;
}

.features-list.large li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f9f9f9;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-text {
    flex: 1;
}

/* Contact Simplified Section */
.contact-simplified {
    padding: 5rem 0;
    background: #e6f2ff;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: white;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-card .contact-icon {
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    margin-bottom: 1.5rem;
    color: #666;
}

.whatsapp-card .btn {
    background-color: var(--whatsapp);
}

.whatsapp-card .btn:hover {
    background-color: #1da851;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Fixed Action Buttons */
.fixed-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-call-btn, 
.fixed-whatsapp-btn,.fixed-call-btns, 
.fixed-whatsapp-btns {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    border-radius: 50px;
    color: white;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.fixed-call-btn, .fixed-call-btns {
    background: var(--primary);
}

.fixed-whatsapp-btn,.fixed-whatsapp-btns {
    background: var(--whatsapp);
}

.fixed-call-btn svg, 
.fixed-whatsapp-btn svg, .fixed-call-btns svg, 
.fixed-whatsapp-btns svg  {
    margin-left: 10px;
}

.fixed-call-btn:hover, 
.fixed-whatsapp-btn:hover, .fixed-call-btns:hover, 
.fixed-whatsapp-btns:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column-reverse;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .fixed-buttons {
        left: 20px;
    }
    
    .fixed-call-btn span ,  .fixed-whatsapp-btn span{
        display: none;
    }
    
    .fixed-call-btn, 
    .fixed-whatsapp-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        justify-content: center;
        padding: 0;
    }
    
    .fixed-call-btn svg, 
    .fixed-whatsapp-btn svg {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 1rem;
    }
    
    nav ul {
        justify-content: center;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
}

/* Additional styles for the service description */
.service-description {
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Contact message styles */
.contact-message {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.contact-message p {
    margin-bottom: 1rem;
}
.service-description, .contact-message {
    margin-top: 30px;
    text-align: center;
}