* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:"Reem Kufi", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }



        :root {
            --primary: #6c63ff;
            --secondary: #ff6584;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --card-bg: rgba(255, 255, 255, 0.1);
            --transition: all 0.4s ease;
        }


        
     body {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: var(--light);
            min-height: 100vh;
            overflow-x: hidden;
            background-attachment: fixed;
            transition: var(--transition);
        }

        body.light-theme {
            background: linear-gradient(135deg, #e6dada, #274046);
            color: #333;
        }

        /* 3D Navigation */
       header {
            background: rgba(26, 26, 46, 0.9);
            padding: 1.2rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            display: flex;
            justify-content: space-between;
            align-items: center;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        body.light-theme header {
            background: rgba(248, 249, 250, 0.9);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            transition: transform 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            color: var(--primary);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: var(--light);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
            position: relative;
        }

        body.light-theme nav a {
            color: #333;
        }

        nav a:hover {
            color: var(--primary);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .nav-btns {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .theme-toggle {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border: none;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
        }

        .theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(108, 99, 255, 0.3);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.5rem;
            cursor: pointer;
        }

        body.light-theme .mobile-toggle {
            color: #333;
        }


        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 1rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            transform: translateZ(15px);
            color: #ffffff;
            
        }

        /* 3D Cards */
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            perspective: 1000px;
        }

        .card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transform-style: preserve-3d;
            transition: transform 0.5s;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

        .card:hover {
            transform: translateZ(20px) rotateY(5deg);
        }

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 1rem;
            transform: translateZ(15px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .card-title {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #ff6b6b;
            transform: translateZ(10px);
        }

        .card-desc {
            line-height: 1.6;
            margin-bottom: 1.5rem;
            transform: translateZ(5px);
        }

        .card-btn {
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            transform: translateZ(10px);
            font-weight: 600;
        }

        .card-btn:hover {
            background: #ff5252;
            transform: translateZ(10px) translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 82, 82, 0.4);
        }

        /* Details Bar */
        .details-bar {
            background: rgba(255, 255, 255, 0);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 10px;
            margin-top: 3rem;
            transform-style: preserve-3d;
            transform: translateZ(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .details-title {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #ff5252
        }

        .details-content {
            line-height: 1.6;
        }

        .stats {
            display: flex;
            justify-content: space-around;
            margin-top: 1.5rem;
            text-align: center;
        }

        .stat {
            padding: 1rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #ff6b6b;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #ddd;
        }


        
        
  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 310px;
    background-color: #25d366;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: wiggle 2s infinite;
  }
  .whatsapp-float img {
    width: 35px;
  }
  @keyframes wiggle {
    0%, 60%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-10deg); }
    20%, 40% { transform: rotate(10deg); }
  }

.main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  @media (max-width: 768px) {
    .main-grid {
      grid-template-columns: 1fr;
    }
  }








        /* Footer */
        footer {
            text-align: center;
            padding: 2rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Animations */
        @keyframes nav-entry {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
                gap: 1rem;
            }

            .nav-links {
                gap: 1rem;
            }

            .cards-container {
                grid-template-columns: 1fr;
            }

            .stats {
                flex-direction: column;
                gap: 1rem;
            }
        }

     


/* Basic Card Styling */
.contact-card {
    width: 300px;
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    text-align: center;
}

/* Heading inside the card */
.contact-card h2 {
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Styling for each item (link) */
.contact-item {
    margin-bottom: 15px;
}

/* General Link Styling */
.contact-link {
    display: flex; /* Makes icon and text align nicely */
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none; /* Removes the underline */
    font-weight: bold;
    color: #fff;
    transition: background-color 0.3s ease;
}

/* Icon Styling */
.contact-link i {
    font-size: 20px;
    margin-right: 10px;
}

/* Individual Link Colors & Hover Effects */
.call-link {
    background-color: #007bff;
}
.call-link:hover {
    background-color: #0056b3;
}

.whatsapp-link {
    background-color: #25d366;
}
.whatsapp-link:hover {
    background-color: #128c7e;
}

.location-link {
    background-color: #ea4335;
}
.location-link:hover {
    background-color: #d82b1c;
}



 footer {
            background: rgba(10, 10, 10, 0.616);
            padding: 3rem 2rem;
            margin-top: 4rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        body.light-theme footer {
            background: rgba(248, 249, 250, 0.9);
            border-top: 1px solid rgba(0, 0, 0, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .footer-section p {
            line-height: 1.6;
            color: #ccc;
            margin-bottom: 1rem;
        }

        body.light-theme .footer-section p {
            color: #666;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .social-links a:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.4);
        }

        .footer-bottom {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #ccc;
        }




        @media (max-width: 790px) {
            nav ul {
                position:fixed;
                top: 0;
                right: -300px;
                width: 300px;
                height: 35vh;
                background: rgba(26, 26, 46, 0.95);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 4rem 1rem;
                transition: right 0.3s ease;
                z-index: 999;
            }

            body.light-theme nav ul {
                background: rgba(248, 249, 250, 0.95);
            }

            nav ul.active {
                right: 0;
            }

            .mobile-toggle {
                display: block;
                z-index: 1000;
            }

          
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating {
            animation: float 5s ease-in-out infinite;
        }


       


        /* Main container styling */
.elementor-element-ef9123b {
  background: #000000;      /* ہلکا بیک گراؤنڈ */
  padding: 8px 15px;
  border-bottom: 1px solid #ddd;
  font-family: Arial, sans-serif;
}

/* UL flex layout */
.elementor-element-ef9123b .elementor-icon-list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* LI items */
.elementor-element-ef9123b .elementor-icon-list-item {
  display: flex;
  align-items: center;
  font-size: 14px;
}

/* Icon styling */
.elementor-element-ef9123b .elementor-icon-list-icon {
  margin-right: 6px;
  color: #007BFF;       /* نیلا کلر */
  font-size: 16px;
}

/* Text styling */
.elementor-element-ef9123b .elementor-icon-list-text {
  color: #ffffff;
  font-weight: 500;
  transition: color 0.3s;
}

.elementor-element-ef9123b a:hover .elementor-icon-list-text {
  color: #007BFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .elementor-element-ef9123b .elementor-icon-list-items {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .elementor-element-ef9123b .elementor-icon-list-item {
    font-size: 15px;
  }
}


/* Main Card */
.contact-card {
  max-width: 350px;
  margin: 40px auto;
  padding: 30px;
  background: #000000;
  border-radius: 16px;
  
  text-align: center;
  font-family: Arial, sans-serif;
}

.contact-card h2 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #ffffff;
}

/* Button Group */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Common button style */
.btn {
  display: block;
  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* Hover animation (shine effect) */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.4);
  transform: skewX(-30deg);
  transition: left 0.5s;
}
.btn:hover::after {
  left: 120%;
}

/* Individual buttons */
.btn-call {
  background: #28a745;
}
.btn-call:hover {
  background: #218838;
}

.btn-whatsapp {
  background: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
}

.btn-map {
  background: #3474ff;
}
.btn-map:hover {
  background: #e64a19;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-card {
    margin: 29px;
    padding: 20px;
  }
  .btn {
    font-size: 14px;
    padding: 12px;
  }
}
