/* General Styles */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #2c9c4a;
    --secondary-color: #d4af37;
    --dark-color: #333;
    --light-color: #f4f4f4;
    --danger-color: #dc3545;
    --success-color: #28a745;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.6;
    background-color: #f8f8f8;
    color: #333;
}

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

a {
    text-decoration: none;
    color: var(--dark-color);
}

ul {
    list-style: none;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

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

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 5px;
}

.logo .tagline {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-right: 20px;
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    font-weight: 500;
    padding: 5px 10px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 70px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.whatsapp-btn {
    display: inline-block;
    background-color: #25d366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.whatsapp-btn i {
    margin-right: 10px;
}

.whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

/* Services Section */
.services {
    background-color: #fff;
}

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

.service-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-card p {
    color: #666;
}

/* About Section */
.about {
    background-color: #f8f8f8;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-text {
    max-width: 800px;
    text-align: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background-color: #fff;
}

.contact-info {
   display: flex;

    justify-content: center;
    gap: 15px;
}

.contact-item-link {
  text-decoration: none;
    color: inherit;
    display: block;
}

.contact-item {
   align-items: center;
    margin-bottom: 20px;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-item i {
      font-size: 1.5rem;
    color: var(--primary-color);
    margin-left: 15px;
	Float:right;
}

.contact-item p {
   font-size: 1rem;
	display:inline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.whatsapp-float a i {
    font-size: 1.5rem;
    margin-left: 10px;
}

.whatsapp-float a:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-logo h2 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-contact {
    display: flex;
    align-items: center;
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-whatsapp-btn i {
    font-size: 1.3rem;
    margin-left: 10px;
}

.footer-whatsapp-btn:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-info {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Service Popups */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
}

.service-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background-color: #fff;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-content {
    padding: 30px;
    position: relative;
}

.close-popup {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-popup:hover {
    color: var(--danger-color);
}

.popup-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.popup-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 15px;
}

.popup-header h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
}

.popup-body {
    margin-bottom: 30px;
}

.popup-body p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.popup-body h4 {
    margin: 20px 0 15px;
    color: var(--primary-color);
}

.popup-body ul {
    padding-right: 20px;
    margin-bottom: 20px;
}

.popup-body ul li {
    margin-bottom: 8px;
    position: relative;
    padding-right: 15px;
}

.popup-body ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    right: 0;
}

.popup-footer {
    padding-top: 20px;
    border-top: 1px solid #eee;
    text-align: center;
}

.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    background-color: #25d366;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-cta i {
    font-size: 1.5rem;
    margin-left: 10px;
}

.whatsapp-cta:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }
    
    nav {
        margin-top: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero {
        height: 400px;
        margin-top: 120px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 350px;
        margin-top: 150px;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 50px 0;
    }
    
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-float a {
        padding: 10px 20px;
    }
    
    .whatsapp-float a span {
        display: none;
    }
    
    .whatsapp-float a i {
        margin: 0;
    }
}


@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 20px;
    }

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

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

    .popup-content {
        padding: 20px;
    }

    .popup-header h3 {
        font-size: 1.5rem;
    }

    .popup-body p,
    .popup-body ul li {
        font-size: 0.95rem;
    }

    .contact-item {
        flex-direction: row;
        justify-content: flex-start;
    }

    .contact-item i {
        font-size: 1.2rem;
        margin-left: 10px;
    }

    .contact-item p {
        font-size: 0.95rem;
    }

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


nav ul li {
    margin: 0 15px;
    position: relative;
}

nav ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    left: -10px;
    color: #ccc;
    font-weight: bold;
}


	.menu-kad a{
	    
    padding: 5px 10px !important;
	
}

}


.menu-kad{
	
	
}
.menu-kad:last-child {
    border-left: none !important;
}


.menu-kad a{
	    font-weight: 500;
    padding: 5px 30px;
	
	  border-left: 2px solid #d4af37;
	   padding-left: 10px !important;
	 
}

.menu-kad a:hover{
	color:#2c9c4a;
	
  
	
}

