 :root {
     --primary-color: #17a2b8;
     --gradient-primary: linear-gradient(135deg, #17a2b8 0%, #138396 100%);
     --gradient-secondary: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
     --primary-light: rgba(23, 162, 184, 0.1);
 }

 body {
     font-family: 'Cairo', sans-serif;
     background: #f8fafc;
 }

 .hero-section {
     background: var(--gradient-primary);
     color: white;
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .hero-section::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,122.7C960,117,1056,171,1152,197.3C1248,224,1344,224,1392,224L1440,224L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom no-repeat;
     background-size: cover;
 }

 .pricing-card {
     background: white;
     border-radius: 20px;
     border: none;
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.08);
     position: relative;
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .pricing-card:hover {
     transform: translateY(-15px);
     box-shadow: 0 20px 40px rgba(23, 162, 184, 0.15);
 }

 .pricing-card.featured {
     border: 2px solid var(--primary-color);
     transform: scale(1.05);
 }

 .pricing-card.featured:hover {
     transform: translateY(-15px) scale(1.05);
 }

 .pricing-header {
     background: var(--gradient-primary);
     padding: 30px 20px;
     color: white;
     text-align: center;
     position: relative;
     overflow: hidden;
 }

 .pricing-header::before {
     content: '';
     position: absolute;
     top: -50%;
     left: -50%;
     width: 200%;
     height: 200%;
     background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
 }

 .pricing-header h3 {
     font-weight: 700;
     margin-bottom: 15px;
     position: relative;
 }

 .pricing-card .card-body {
     padding: 30px;
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .pricing-card .price {
     font-size: 2.5rem;
     font-weight: 700;
     color: var(--primary-color);
     margin-bottom: 20px;
 }

 .pricing-card .price small {
     font-size: 1rem;
     color: #6c757d;
 }

 .pricing-card .list-unstyled {
     margin-bottom: 30px;
     flex: 1;
 }

 .pricing-card .list-unstyled li {
     margin-bottom: 15px;
     display: flex;
     align-items: flex-start;
 }

 .pricing-card .list-unstyled li i {
     margin-top: 4px;
     font-size: 1.2rem;
     margin-left: 10px;
 }

 .pricing-card .btn {
     padding: 12px;
     border-radius: 12px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
 }

 .pricing-card .btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 20px rgba(23, 162, 184, 0.2);
 }

 .feature-badge {
     position: absolute;
     top: 20px;
     right: -30px;
     transform: rotate(45deg);
     background: #ff9800;
     color: white;
     padding: 5px 40px;
     font-size: 14px;
     font-weight: 600;
     z-index: 1;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }

 .btn-primary {
     background: var(--gradient-primary);
     border: none;
     padding: 12px 30px;
     border-radius: 10px;
 }

 .btn-primary:hover {
     background: var(--primary-color);
     transform: translateY(-2px);
 }

 .switch-lang {
     position: fixed;
     top: 20px;
     left: 20px;
     z-index: 1000;
     background: var(--gradient-primary);
     color: white;
     border-radius: 30px;
     width: auto;
     height: auto;
     padding: 8px 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: var(--shadow-md);
     cursor: pointer;
     border: none;
     transition: all 0.3s ease;
 }

 .switch-lang:hover {
     transform: translateY(-2px);
     box-shadow: var(--shadow-lg);
     background: var(--primary-color);
 }

 .pricing-toggle {
     background: var(--primary-light);
     padding: 5px;
     border-radius: 30px;
     display: inline-flex;
     margin: 20px 0;
 }

 .pricing-toggle label {
     padding: 8px 20px;
     border-radius: 25px;
     cursor: pointer;
     transition: all 0.3s ease;
     color: var(--primary-color);
 }

 .pricing-toggle input:checked+label {
     background: var(--primary-color);
     color: white;
 }

 .text-primary {
     color: var(--primary-color) !important;
 }

 .bi-check-circle-fill {
     color: var(--primary-color) !important;
 }

 .feature-item {
     padding: 1.5rem;
     border-radius: 15px;
     background: white;
     box-shadow: 0 5px 15px rgba(23, 162, 184, 0.08);
     transition: transform 0.3s ease;
     height: 100%;
 }

 .feature-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(23, 162, 184, 0.15);
     border-color: var(--primary-color);
 }

 .feature-icon {
     width: 70px;
     height: 70px;
     padding: 15px;
     border-radius: 50%;
     background: var(--primary-light);
     margin: 0 auto 1.5rem;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .feature-icon i {
     font-size: 2rem;
     color: var(--primary-color);
 }

 .feature-item:hover .feature-icon {
     background: var(--primary-color);
 }

 .feature-item:hover .feature-icon i {
     color: white;
 }

 .testimonial-card {
     background: white;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.08);
     transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
     overflow: hidden;
     height: 100%;
 }

 .testimonial-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(23, 162, 184, 0.15);
 }

 .testimonial-content {
     position: relative;
     padding: 1.5rem;
 }

 .testimonial-text {
     position: relative;
     padding: 1.5rem;
     background: var(--primary-light);
     border-radius: 10px;
     margin-bottom: 0;
 }

 .testimonial-text::after {
     content: '';
     position: absolute;
     top: -10px;
     right: 30px;
     border-width: 0 10px 10px;
     border-style: solid;
     border-color: transparent transparent var(--primary-light);
 }

 .testimonial-text p {
     position: relative;
     z-index: 1;
     font-size: 0.95rem;
     line-height: 1.6;
 }

 .testimonial-text i.bi-quote {
     position: absolute;
     top: 10px;
     right: 10px;
     z-index: 0;
     font-size: 2rem;
     opacity: 0.2;
     color: var(--primary-color);
 }

 .testimonial-person {
     display: flex;
     align-items: center;
     padding: 0 1rem;
 }

 .testimonial-img {
     width: 60px;
     height: 60px;
     overflow: hidden;
     border-radius: 50%;
     border: 3px solid var(--primary-color);
     margin-left: 15px;
     background-color: #e9ecef;
     display: flex;
     align-items: center;
     justify-content: center;
 }

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

 .testimonial-placeholder {
     font-size: 1.5rem;
     color: var(--primary-color);
 }

 .testimonials-section {
     background: linear-gradient(135deg, #f8fafc 0%, #e9ecef 100%);
     position: relative;
     overflow: hidden;
 }

 .testimonials-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2317a2b8' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
 }

 .testimonial-container {
     max-width: 1200px;
     margin: 0 auto;
     position: relative;
     overflow: hidden;
     padding: 0 50px;
 }

 .testimonial-wrapper {
     display: flex;
     transition: transform 0.5s ease;
 }

 .testimonial-slide {
     padding: 15px;
     box-sizing: border-box;
     flex: 0 0 100%;
 }

 @media (min-width: 992px) {
     .testimonial-slide {
         flex: 0 0 33.333%;
     }
 }

 @media (min-width: 768px) and (max-width: 991px) {
     .testimonial-slide {
         flex: 0 0 50%;
     }
 }

 .slider-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: white;
     border-radius: 50%;
     width: 45px;
     height: 45px;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
     color: var(--primary-color);
     font-size: 1.2rem;
     transition: all 0.3s ease;
 }

 .slider-arrow:hover {
     background: var(--primary-color);
     color: white;
     transform: translateY(-50%) scale(1.1);
 }

 .prev {
     left: 10px;
 }

 .next {
     right: 10px;
 }

 .testimonial-dots {
     text-align: center;
     margin-top: 20px;
 }

 .testimonial-dots button {
     background: #17a2b8;
     border: none;
     border-radius: 50%;
     width: 10px;
     height: 10px;
     margin: 0 5px;
     cursor: pointer;
     transition: transform 0.3s ease;
 }

 .testimonial-dots button.active {
     transform: scale(1.2);
     background: #138396;
 }

 /* FAQ Accordion Styling */
 .faq-section {
     background-color: #f8f9fa;
 }

 .accordion-item {
     border-radius: 10px;
     overflow: hidden;
     margin-bottom: 15px;
     border: none;
     box-shadow: 0 5px 15px rgba(23, 162, 184, 0.08);
 }

 .accordion-button {
     padding: 20px 25px;
     font-weight: 600;
     color: var(--primary-color);
     background-color: white;
     border: none;
     position: relative;
 }

 .accordion-button:not(.collapsed) {
     color: white;
     background: var(--gradient-primary);
     box-shadow: none;
 }

 .accordion-button:focus {
     box-shadow: none;
     border: none;
 }

 .accordion-button::after {
     margin-right: auto;
     margin-left: 0;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%2317a2b8' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
     background-color: transparent;
     width: 22px;
     height: 22px;
     background-position: center;
     background-size: 22px;
     transition: transform 0.3s ease;
 }

 .accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
     transform: rotate(-180deg);
 }

 .accordion-body {
     padding: 20px 25px;
     background-color: white;
 }

 .accordion-body p {
     margin-bottom: 0;
     color: #666;
 }

 /* Contact Section Styling */
 .contact-section {
     background-color: white;
 }

 .contact-card {
     padding: 2rem;
     border-radius: 15px;
     background: white;
     box-shadow: 0 10px 30px rgba(23, 162, 184, 0.08);
     transition: all 0.3s ease;
     border: 1px solid rgba(23, 162, 184, 0.1);
 }

 .contact-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(23, 162, 184, 0.15);
 }

 .contact-icon {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     background: var(--primary-light);
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.3s ease;
 }

 .contact-icon i {
     font-size: 2.5rem;
     color: var(--primary-color);
     transition: all 0.3s ease;
 }

 .contact-card:hover .contact-icon {
     background: var(--primary-color);
 }

 .contact-card:hover .contact-icon i {
     color: white;
 }

 .contact-card h4 {
     margin-bottom: 1rem;
     color: var(--primary-color);
 }

 .contact-link {
     color: var(--primary-color);
     font-weight: 700;
     font-size: 1.1rem;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .contact-link:hover {
     color: var(--primary-color);
     transform: scale(1.05);
 }

 .navbar {
     background-color: rgba(255, 255, 255, 0.95);
     backdrop-filter: blur(10px);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
     transition: all 0.3s ease;
 }

 .navbar-sticky {
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .navbar .nav-link {
     font-weight: 500;
     margin: 0 10px;
     position: relative;
     transition: all 0.3s ease;
     color: #555;
 }

 .navbar .nav-link:hover,
 .navbar .nav-link.active {
     color: var(--primary-color);
 }

 .navbar .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 0;
     background-color: var(--primary-color);
     transition: width 0.3s ease;
 }

 .navbar .nav-link:hover::after,
 .navbar .nav-link.active::after {
     width: 100%;
 }

 .navbar-toggler {
     border: none;
     padding: 0;
 }

 .navbar-toggler:focus {
     box-shadow: none;
 }

 /* Download buttons styling */
 .download-buttons {
     margin-top: 1.5rem;
 }

 .download-btn {
     display: flex;
     align-items: center;
     padding: 8px 16px;
     border-radius: 10px;
     background: #222;
     transition: all 0.3s ease;
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .download-btn:hover {
     transform: translateY(-3px);
     background: #000;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .download-btn i {
     font-size: 1.8rem;
     margin-right: 10px;
 }

 .download-btn small {
     display: block;
     font-size: 0.7rem;
     opacity: 0.7;
 }

 .download-btn span {
     text-align: left;
 }

 /* Download icon buttons styling */
 .download-icon-btn {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 60px;
     height: 60px;
     border-radius: 50%;
     background: white;
     color: var(--primary-color);
     text-decoration: none;
     font-size: 24px;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     position: relative;
     overflow: hidden;
     z-index: 1;
     border: 1px solid rgba(23, 162, 184, 0.1);
 }

 .download-icon-btn::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: var(--gradient-primary);
     border-radius: 50%;
     transition: all 0.3s ease;
     opacity: 0;
     z-index: -1;
 }

 .download-icon-btn:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 20px rgba(23, 162, 184, 0.2);
     color: white;
 }

 .download-icon-btn:hover::before {
     opacity: 1;
 }

 /* Hero image styling */
 .hero-image-container {
     position: relative;
     z-index: 1;
     padding: 20px;
 }

 .hero-image-wrapper {
     position: relative;
     padding: 20px;
     perspective: 1000px;
 }

 .hero-image-frame {
     position: relative;
     z-index: 1;
     border-radius: 15px;
     overflow: hidden;
     transform: perspective(1000px) rotateY(-5deg);
     transition: all 0.5s ease;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border: 5px solid white;
 }

 .hero-image-wrapper:hover .hero-image-frame {
     transform: perspective(1000px) rotateY(-2deg) translateY(-10px);
     box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
 }

 .hero-image-wrapper:hover .hero-image-decoration {
     transform: perspective(1000px) rotateY(-2deg) translateZ(-15px) translateX(25px) translateY(-10px);
 }

 .hero-image {
     display: block;
     width: 100%;
     border-radius: 10px;
 }

 .hero-image-decoration {
     position: absolute;
     width: 100%;
     height: 100%;
     top: 0;
     left: 0;
     background: var(--gradient-primary);
     border-radius: 15px;
     transform: perspective(1000px) rotateY(-5deg) translateZ(-10px) translateX(20px);
     z-index: 0;
     opacity: 0.5;
 }

 .hero-floating-element {
     position: absolute;
     background: white;
     border-radius: 10px;
     padding: 15px;
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--primary-color);
     animation: float 6s ease-in-out infinite;
     z-index: 2;
 }

 .hero-element-1 {
     top: 10%;
     left: -40px;
     min-width: 100px;
 }

 .hero-element-1 i {
     font-size: 24px;
     margin-bottom: 5px;
 }

 .hero-element-1 span {
     font-weight: bold;
     font-size: 20px;
 }

 .hero-element-2 {
     bottom: 10%;
     right: -30px;
     min-width: 140px;
     padding: 15px;
     animation-delay: 2s;
 }

 .hero-element-2 i {
     font-size: 24px;
     margin-bottom: 5px;
 }

 @keyframes float {
     0% {
         transform: translateY(0px);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 /* CTA Button styling */
 .cta-button {
     position: relative;
     overflow: hidden;
     background: white;
     border: 1px solid rgba(23, 162, 184, 0.2);
     color: var(--primary-color);
     font-weight: 600;
     padding: 12px 30px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
     cursor: pointer;
     z-index: 1;
 }

 .cta-button::before {
     content: "";
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(23, 162, 184, 0.1), transparent);
     transition: all 0.6s ease;
     z-index: -1;
 }

 .cta-button:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
     color: var(--primary-color);
 }

 .cta-button:hover::before {
     left: 100%;
 }

 /* Price comparison table styling */
 .price-compare-container {
     background: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
 }

 .price-compare-table {
     border-collapse: separate;
     border-spacing: 0;
     border-radius: 10px;
     overflow: hidden;
 }

 .price-compare-table th {
     background-color: #f8f9fa;
     font-weight: 600;
     text-align: center;
     padding: 15px;
     border-bottom: 2px solid #dee2e6;
     min-width: 130px;
 }

 .price-compare-table td {
     text-align: center;
     padding: 15px;
     vertical-align: middle;
 }

 .highlight-row {
     background-color: rgba(23, 162, 184, 0.05);
 }

 .highlight-row td {
     border-top: 2px solid var(--primary-color);
     border-bottom: 2px solid var(--primary-color);
 }

 .highlight-row td:first-child {
     border-left: 2px solid var(--primary-color);
 }

 .highlight-row td:last-child {
     border-right: 2px solid var(--primary-color);
 }

 .best-value-tag {
     display: inline-block;
     background: var(--gradient-primary);
     color: white;
     font-size: 12px;
     padding: 3px 8px;
     border-radius: 20px;
     margin-top: 5px;
 }

 /* Removed compare-savings styling */
 /* Removed annual-savings styling */
 .savings-tag {
     display: inline-block;
     background: rgba(40, 167, 69, 0.1);
     color: #28a745;
     border-radius: 20px;
     padding: 2px 8px;
     font-size: 12px;
     margin-top: 8px;
     font-weight: 500;
 }

 /* Feature comparison styling */
 .highlight-column {
     background-color: rgba(23, 162, 184, 0.03);
 }

 .highlight-cell {
     background-color: rgba(23, 162, 184, 0.05);
 }

 .feature-name {
     text-align: right;
     font-weight: 500;
 }

 .feature-section {
     background-color: #f8f9fa;
     font-weight: 600;
     text-align: center;
     padding: 12px;
 }

 .feature-check {
     color: var(--primary-color);
     font-size: 18px;
 }

 .feature-x {
     color: #dc3545;
     opacity: 0.5;
     font-size: 16px;
 }

 .border-top-bold {
     border-top: 2px solid #dee2e6;
 }

 .package-header {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 5px;
 }