/* Start Global Rules */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");

:root {
  --main-color: #18269e;
  --main-color-light: #2d40c7;
  --main-color-dark: #101b7a;
  --light-main-color: rgba(24, 38, 158, 0.05);
  --light-color: #f5f6fa;
  --dark-color: #000;
  --text-color: #777;
  --white-color: #fff;
  --card-bg: #ffffff;
  --card-shadow: 0 10px 30px rgba(24, 38, 158, 0.1);
  --card-shadow-hover: 0 15px 40px rgba(24, 38, 158, 0.2);
  --main-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 20px;
  --gradient: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-light) 100%);
}
body {
  font-family: "Cairo", sans-serif;
  color: var(--dark-color);
}
.text-color {
  color: var(--text-color);
}
.text-main {
  color: var(--main-color);
}
.fw-bold {
  font-weight: 500 !important;
}

img.section-icon {
  border-radius: 0 !important;
}
.bg-light-color {
  background-color: var(--light-color);
}
/* End Global Rules */

/* Start Navbar */
        .navbar {
            background-color: var(--white-color) !important;
            padding: 0 20px;
            height: 80px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1) !important;
            transition: var(--main-transition);
        }
                .navbar.navbar-shrink {
            height: 70px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
        }
        .navbar .navbar-brand {
            height: 100%;
            display: flex;
            align-items: center;
            transition: var(--main-transition);
        }
        .navbar .navbar-brand img {
            width: 160px;
            transition: var(--main-transition);
        }

        .navbar.navbar-shrink .navbar-brand img {
            width: 140px;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--main-transition);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-nav {
            align-items: center;
            margin-right: auto !important; /* نقل القائمة إلى اليسار */
            margin-left: 0 !important;
        }

        .nav-item {
            position: relative;
            margin: 0 5px;
        }

        .nav-link {
            padding: 12px 20px !important;
            color: var(--dark-color) !important;
            font-size: 16px;
            font-weight: 500;
            border-radius: 50px;
            transition: var(--main-transition);
            display: flex;
            align-items: center;
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0%;
            height: 100%;
            background: var(--main-color);
            transition: var(--main-transition);
            z-index: -1;
            border-radius: 50px;
        }

        .nav-link:hover::before,
        .nav-link.active::before {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--white-color) !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(24, 38, 158, 0.2);
        }

        .nav-link .material-icons {
            margin-left: 8px;
            font-size: 20px;
            transition: var(--main-transition);
        }

        .nav-link:hover .material-icons,
        .nav-link.active .material-icons {
            transform: scale(1.1);
        }

        /* Mobile menu improvements */
        @media (max-width: 991px) {
            .navbar-collapse {
                background: var(--white-color);
                padding: 20px;
                border-radius: 10px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
                margin-top: 10px;
            }

            .nav-item {
                margin: 5px 0;
            }

            .nav-link {
                justify-content: flex-start;
            }
        }

        /* Animation for navbar items */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-15px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .navbar-nav .nav-item {
            animation: fadeInDown 0.5s ease forwards;
            opacity: 0;
        }

        .navbar-nav .nav-item:nth-child(1) { animation-delay: 0.1s; }
        .navbar-nav .nav-item:nth-child(2) { animation-delay: 0.2s; }
        .navbar-nav .nav-item:nth-child(3) { animation-delay: 0.3s; }
        .navbar-nav .nav-item:nth-child(4) { animation-delay: 0.4s; }
        .navbar-nav .nav-item:nth-child(5) { animation-delay: 0.5s; }
        .navbar-nav .nav-item:nth-child(6) { animation-delay: 0.6s; }

        /* Scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            right: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(to right, var(--main-color), #4e73df);
            z-index: 9999;
            transition: width 0.2s ease;
        }
        .text-logo {
  font-size: 1.8rem;                     /* أكبر ليبان زي Logo */
  font-weight: 800;                      /* تخين جداً */
  color: var(--main-color);              /* اللون الأساسي */
  text-decoration: none;
  letter-spacing: 1.5px;                 /* مسافة عصرية بين الحروف */
  transition: var(--main-transition);    /* نفس الترانزيشن من root */
  line-height: 1;                        /* ضبط ارتفاع النص */
  display: flex;                         /* محاذاة أفضل */
  align-items: center;                   /* توسيط عمودي */
  height: 60px;                          /* ارتفاع ثابت يناسب النافبار */
  padding: 0 10px;
}

.text-logo span {
  color: var(--dark-color);              /* لون غامق لكلمة سامسونج */
  margin-right: 5px;                     /* مسافة صغيرة للفصل */
}

.text-logo:hover {
  color: var(--light-color);             /* عند الهوفر اللون أبيض */
  background: var(--main-color);         /* خلفية بلون أساسي */
  border-radius: 8px;                    /* زوايا ناعمة */
  padding: 8px 15px;                     /* تبان كبادج */
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);/* ظل خفيف */
}

/* End Navbar */

/* Start Showcase */
        .showcase {
            padding: 50px 0;
        }

        .showcase .rows {
            padding: 0 25px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-gap: 30px;
            justify-items: center;
        }

        .showcase .right {
            background-color: var(--light-main-color);
            border-radius: 30px;
            padding: 30px;
            min-height: 80vh;
            display: flex;
            align-items: center;
            flex-direction: column;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--main-transition);
        }

        .showcase .right:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .showcase .left {
            border-radius: 30px;
            min-height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        .showcase .left img {
            border-radius: 30px;
            margin-top: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            transition: var(--main-transition);
        }

        .showcase .left img:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .showcase .right h1 {
            line-height: 1.2;
            color: var(--main-color);
            font-weight: bold;
            margin-bottom: 20px;
            font-size: 2.5rem;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        }

        .showcase .right .lead {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--text-color);
            line-height: 1.6;
        }

        .showcase .contact-btns {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            grid-gap: 15px;
            margin-top: 30px;
            width: 100%;
        }

        .showcase .contact-btns .btn {
            width: 100% !important;
            padding: 12px 20px;
            margin: 0 !important;
            color: var(--dark-color);
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 100px;
            font-size: 16px;
            font-weight: 600;
            transition: var(--main-transition);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .showcase .contact-btns .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .showcase .contact-btns .btn .material-icons,
        .showcase .contact-btns .btn img {
            margin-right: 8px;
        }

        .showcase .contact-btns .btn .material-icons {
            color: var(--white-color);
        }

        .showcase .contact-btns .hotline-call-btn {
            background-color: #ffdd59;
        }

        .showcase .contact-btns .hotline-call-btn:hover {
            background-color: #ffd32a;
        }

        .showcase .contact-btns .phone-call-btn {
            background-color: #4bcffa;
        }

        .showcase .contact-btns .phone-call-btn:hover {
            background-color: #0fbcf9;
        }

        .showcase .contact-btns .whatsapp-call-btn {
            background-color: #26de81;
        }

        .showcase .contact-btns .whatsapp-call-btn:hover {
            background-color: #20bf6b;
        }

        .showcase .card {
            margin-top: 30px;
            padding: 25px;
            border: 0 !important;
            border-radius: 30px;
            background: linear-gradient(135deg, #ffdd59 0%, #ffa801 100%);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: var(--main-transition);
        }

        .showcase .card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .showcase .card h4 {
            color: var(--main-color);
            font-weight: bold;
            margin-bottom: 20px;
        }

        .showcase .card p {
            color: #444;
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .showcase .card input,
        .showcase .card textarea {
            padding: 12px 20px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            border: solid 1px #f1f1f1;
            font-size: 16px;
            color: var(--dark-color);
            transition: var(--main-transition);
            margin-bottom: 15px;
        }

        .showcase .card input:focus,
        .showcase .card textarea:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(24, 38, 158, 0.2);
            border-color: var(--main-color);
        }

        .showcase .card input::placeholder,
        .showcase .card textarea::placeholder {
            color: #888;
        }

        .showcase .card button {
            padding: 12px 20px;
            background-color: var(--main-color);
            color: var(--white-color);
            border-radius: 100px;
            font-size: 18px;
            font-weight: bold;
            transition: var(--main-transition);
            border: none;
            cursor: pointer;
        }

        .showcase .card button:hover {
            background-color: #0f1a7a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(24, 38, 158, 0.3);
        }

        .showcase .card button:active {
            transform: translateY(0);
        }

        /* تحسينات للرسوم المتحركة */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .showcase .right {
            animation: fadeInUp 0.8s ease-out;
        }

        .showcase .left {
            animation: fadeInUp 1s ease-out;
        }

        /* تحسينات للجوال */
        @media (max-width: 1200px) {
            .showcase .right h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 992px) {
            .showcase .rows {
                grid-template-columns: 1fr;
                grid-gap: 20px;
            }
            
            .showcase .right, 
            .showcase .left {
                min-height: auto;
                padding: 25px;
            }
            
            .showcase .right h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .showcase {
                padding: 30px 0;
            }
            
            .showcase .rows {
                padding: 10px;
            }
            
            .showcase .contact-btns {
                grid-template-columns: 1fr;
            }
            
            .showcase .right h1 {
                font-size: 1.8rem;
            }
            
            .showcase .right .lead {
                font-size: 1.1rem;
            }
        }

        /* تحسينات إضافية */
        .support-agent {
            display: inline-flex;
            align-items: center;
            background: var(--main-color);
            color: white;
            padding: 8px 16px;
            border-radius: 50px;
            margin-bottom: 20px;
            box-shadow: 0 4px 8px rgba(24, 38, 158, 0.2);
        }

        .support-agent .material-icons {
            margin-left: 5px;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--main-color);
            display: block;
            text-align: right;
        }
/* End Showcase */

/* Start About */
        .about {
            background-color: var(--main-color);
            position: relative;
            overflow: hidden;
        }
        
        .about .overlay {
            padding: 100px 0;
            background-image: url("../img/about-overlay.png");
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            position: relative;
        }
        
        .about .overlay::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(24, 38, 158, 0.85) 0%, rgba(40, 80, 160, 0.75) 100%);
            z-index: 1;
        }
        
        .about .container-fluid {
            position: relative;
            z-index: 2;
        }
        
        .about img {
            border-radius: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--main-transition);
            transform: translateY(0);
        }
        
        .about img:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }
        
        .about h2 {
            font-weight: 700;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .about h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 80px;
            height: 4px;
            background-color: var(--white-color);
            border-radius: 2px;
        }
        
        .about h3 {
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .about h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 60px;
            height: 3px;
            background-color: var(--white-color);
            border-radius: 2px;
        }
        
        .about ul {
            padding: 0;
            list-style: none;
        }
        
        .about ul li {
            position: relative;
            padding-right: 30px;
            margin-bottom: 15px;
            line-height: 1.6;
            transition: var(--main-transition);
        }
        
        .about ul li:hover {
            transform: translateX(-5px);
        }
        
        .about ul li::before {
            content: '\f058';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 3px;
            color: var(--white-color);
        }
        
        .about .lead {
            line-height: 1.8;
        }
        
        .stats-counter {
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 15px;
            padding: 25px;
            margin-top: 40px;
            backdrop-filter: blur(10px);
        }
        
        .stat-item {
            text-align: center;
            padding: 15px;
        }

.stat-icon {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    background: rgba(24, 38, 158, 0.1);
}
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--white-color);
            margin-bottom: 5px;
        }
        
        .stat-label {
            color: var(--light-color);
            font-size: 1.1rem;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--white-color);
            color: var(--main-color);
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            margin-top: 20px;
            transition: var(--main-transition);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .cta-button:hover {
            background-color: var(--light-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* تأثيرات للظهور عند التمرير */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* تحسينات للجوال */
        @media (max-width: 768px) {
            .about .overlay {
                padding: 60px 0;
            }
            
            .about h2 {
                font-size: 2.2rem;
            }
            
            .about h3 {
                font-size: 1.8rem;
            }
            
            .about img {
                margin: 30px 0;
            }
            
            .stats-counter {
                margin-top: 30px;
            }
        }
/* End About */

/* Start Services */
.services-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 38, 158, 0.1) 0%, rgba(40, 80, 160, 0.05) 100%);
  z-index: 0;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(40, 80, 160, 0.05) 0%, rgba(24, 38, 158, 0.1) 100%);
  z-index: 0;
}
        .services-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--main-transition);
  box-shadow: var(--card-shadow);
  position: relative;
  height: 350px;
  perspective: 1000px;
  cursor: pointer;
  border: 1px solid rgba(24, 38, 158, 0.08);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
  z-index: 3;
}
.service-card:hover::before {
  transform: scaleX(1);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 25px;
  text-align: center;
}

.card-back {
  transform: rotateY(180deg);
  background: var(--gradient);
  color: var(--white-color);
  border-radius: var(--border-radius);
}

.service-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-main-color);
  border-radius: 50%;
  margin-bottom: 25px;
  position: relative;
  transition: var(--main-transition);
  z-index: 2;
}
.service-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--main-transition);
  z-index: -1;
}

.service-icon i {
  font-size: 2.8rem;
  color: var(--main-color);
  transition: var(--main-transition);
  z-index: 2;
}
.service-card:hover .service-icon {
  transform: translateY(-10px) scale(1.1);
}

.service-card:hover .service-icon::after {
  opacity: 1;
}

.service-card:hover .service-icon i {
  color: var(--white-color);
  transform: scale(1.1);
}


.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--main-color);
  transition: var(--main-transition);
}

.card-back .service-title {
  color: var(--white-color);
}

.service-description {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  transition: var(--main-transition);
}
.card-back .service-description {
  color: rgba(255, 255, 255, 0.9);
}

.card-back .service-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  text-align: right;
  width: 100%;
}

.card-back .service-features li {
  margin-bottom: 12px;
  padding-right: 25px;
  position: relative;
  transition: var(--main-transition);
}
.card-back .service-features li:hover {
  transform: translateX(-5px);
}
.card-back .service-features li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  color: var(--white-color);
  transition: var(--main-transition);
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white-color);
  color: var(--main-color);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  margin-top: 20px;
  transition: var(--main-transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.service-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--main-transition);
  z-index: -1;
}

.service-button:hover {
  color: var(--white-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.service-button:hover::before {
  opacity: 1;
}

.service-button i {
  margin-right: 8px;
  transition: var(--main-transition);
}

.service-button:hover i {
  transform: translateX(5px);
}

/* تأثيرات الظهور */
.service-card {
  opacity: 0;
  transform: translateY(50px) rotate(5deg);
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s ease;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0) rotate(0);
}

.service-card:hover {
  box-shadow: var(--card-shadow-hover);
}

/* تأثير الإضاءة عند التحويم */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(45deg, #ff005e, #ff0000, #ff9900, #ff005e);
  background-size: 400%;
  border-radius: var(--border-radius);
  opacity: 0;
  transition: opacity 0.5s, filter 0.5s;
  filter: blur(15px);
}

.service-card:hover::after {
  opacity: 0.15;
  animation: gradient-border 3s ease infinite;
}

@keyframes gradient-border {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* فلتر للخدمات */
.services-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.filter-button {
  background: var(--white-color);
  color: var(--text-color);
  border: 2px solid #eaeaea;
  padding: 10px 25px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--main-transition);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.filter-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient);
  opacity: 0;
  transition: var(--main-transition);
  z-index: -1;
}

.filter-button:hover, .filter-button.active {
  color: var(--white-color);
  border-color: var(--main-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(24, 38, 158, 0.2);
}

.filter-button:hover::before, .filter-button.active::before {
  opacity: 1;
}

/* responsive design */
@media (max-width: 1200px) {
  .services-container {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .services-section {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .services-container {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    height: 330px;
  }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    max-width: 500px;
  }
  
  .service-card {
    height: 320px;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .services-filter {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 50px 0;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .service-card {
    height: 300px;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
  }
  
  .service-icon i {
    font-size: 2.2rem;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .filter-button {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
}

/* تأثيرات متقدمة للبطاقات */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.service-card:hover {
  animation: float 3s ease infinite;
}

/* تحسينات للأجهزة التي تدعم اللمس */
@media (hover: none) {
  .service-card:hover .card-inner {
    transform: none;
  }
  
  .service-card:hover {
    animation: none;
  }
  
  .service-card.touched .card-inner {
    transform: rotateY(180deg);
  }
}
.services-header {
  text-align: center;
  margin-bottom: 70px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(24, 38, 158, 0.03) 0%, rgba(40, 80, 160, 0.05) 100%);
  border-radius: 24px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.services-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--main-color) 0%, 
    #3a5ccc 25%, 
    #5b7eff 50%, 
    #3a5ccc 75%, 
    var(--main-color) 100%);
  border-radius: 4px 4px 0 0;
  animation: shimmer 3s infinite linear;
}

.services-header::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(24, 38, 158, 0.1) 0%, rgba(24, 38, 158, 0) 70%);
  z-index: 0;
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.services-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--main-color);
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  z-index: 2;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 10px rgba(24, 38, 158, 0.15);
}

.services-header h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, var(--main-color), #3a5ccc);
  border-radius: 5px;
  animation: linePulse 2s infinite ease-in-out;
}

@keyframes linePulse {
  0%, 100% { width: 100px; }
  50% { width: 150px; }
}

.services-header p {
  font-size: 1.2rem;
  color: var(--text-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.services-header .decoration {
  position: absolute;
  z-index: 1;
}

.services-header .decoration.circle-1 {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(24, 38, 158, 0.1);
  border-radius: 50%;
  top: 20px;
  left: 10%;
  animation: float 6s infinite ease-in-out;
}

.services-header .decoration.circle-2 {
  width: 40px;
  height: 40px;
  background: rgba(24, 38, 158, 0.1);
  border-radius: 50%;
  bottom: 30px;
  right: 15%;
  animation: float 4s infinite ease-in-out reverse;
}

.services-header .decoration.circle-3 {
  width: 25px;
  height: 25px;
  background: rgba(24, 38, 158, 0.15);
  border-radius: 50%;
  top: 40%;
  right: 20%;
  animation: pulse 3s infinite alternate;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.3); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 992px) {
  .services-header {
    padding: 30px 20px;
    margin-bottom: 50px;
  }
  
  .services-header h2 {
    font-size: 2.4rem;
  }
  
  .services-header p {
    font-size: 1.1rem;
  }
  
  .services-header .decoration.circle-1,
  .services-header .decoration.circle-2,
  .services-header .decoration.circle-3 {
    display: none;
  }
}

@media (max-width: 768px) {
  .services-header {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
  
  .services-header h2 {
    font-size: 2rem;
  }
  
  .services-header p {
    font-size: 1rem;
    padding: 15px;
  }
}

@media (max-width: 576px) {
  .services-header h2 {
    font-size: 1.8rem;
  }
  
  .services-header h2::after {
    width: 80px;
  }
  
  @keyframes linePulse {
    0%, 100% { width: 80px; }
    50% { width: 120px; }
  }
}
/* End Services */

/* Start Testimonials */
        .testimonial-section {
            padding: 100px 0;
            background-color: var(--light-color);
            position: relative;
            overflow: hidden;
        }

        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" width="100" height="100" opacity="0.05"><path fill="%2318269e" d="M30,30 Q50,10 70,30 T90,30 T70,70 T30,70 T10,30 T30,30 Z"></path></svg>');
            opacity: 0.05;
            z-index: 0;
        }

        .testimonial-section .container-fluid {
            position: relative;
            z-index: 1;
        }

        .testimonial-section h2 {
            font-size: 2.8rem;
            color: var(--main-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .testimonial-section h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
            width: 80px;
            height: 5px;
            background-color: var(--main-color);
            border-radius: 5px;
        }

        .testimonial-section .lead {
            font-size: 1.2rem;
            color: var(--text-color);
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 60px;
        }

        .testimonial-card {
            background-color: var(--white-color);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: var(--main-transition);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-height: 300px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(24, 38, 158, 0.1);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to left, var(--main-color), #4e73df);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.5s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-card:hover::before {
            transform: scaleX(1);
        }

        .testimonial-card .quote-icon {
            font-size: 3rem !important;
            color: var(--main-color);
            margin-bottom: 20px;
            opacity: 0.3;
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 0;
        }

        .testimonial-text {
            font-size: 1.1rem;
            color: var(--dark-color);
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: auto;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            margin-left: 15px;
            border: 3px solid var(--main-color);
            box-shadow: 0 4px 10px rgba(24, 38, 158, 0.2);
            transition: var(--main-transition);
        }

        .testimonial-card:hover .author-avatar {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(24, 38, 158, 0.3);
        }

        .author-details {
            text-align: right;
            flex: 1;
        }

        .author-name {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 5px;
            font-size: 1.1rem;
        }

        .author-rating {
            display: flex;
            direction: ltr;
        }

        .author-rating .material-icons {
            color: #FFD700;
            font-size: 1.2rem;
            margin-left: 2px;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        }

        /* عناصر التحكم في السلايدر */
        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        .testimonial-controls button {
            background-color: var(--main-color);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            cursor: pointer;
            transition: var(--main-transition);
            box-shadow: 0 4px 10px rgba(24, 38, 158, 0.3);
        }

        .testimonial-controls button:hover {
            background-color: #0f1a7a;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(24, 38, 158, 0.4);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .testimonial-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
            transition: var(--main-transition);
        }

        .testimonial-dot.active {
            background-color: var(--main-color);
            transform: scale(1.2);
        }

        /* تأثيرات للعرض */
        .testimonial-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .testimonial-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* التصميم المتجاوب */
        @media (max-width: 992px) {
            .testimonial-section {
                padding: 70px 0;
            }
            
            .testimonial-section h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-section .lead {
                font-size: 1.1rem;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            .testimonial-section {
                padding: 50px 0;
            }
            
            .testimonial-section h2 {
                font-size: 1.8rem;
            }
            
            .testimonial-card {
                padding: 20px;
                min-height: auto;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .author-avatar {
                width: 50px;
                height: 50px;
            }
        }

        /* فلتر التقييمات */
        .rating-filter {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .rating-filter button {
            background-color: white;
            border: 1px solid #ddd;
            padding: 8px 15px;
            margin: 5px;
            border-radius: 50px;
            cursor: pointer;
            transition: var(--main-transition);
        }

        .rating-filter button:hover,
        .rating-filter button.active {
            background-color: var(--main-color);
            color: white;
            border-color: var(--main-color);
        }
/* End Testimonials */

/* Start Contact */
.contact-section {
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7ff 0%, #f0f4ff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(24, 38, 158, 0.1) 0%, rgba(40, 80, 160, 0.05) 100%);
  z-index: 0;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(40, 80, 160, 0.05) 0%, rgba(24, 38, 158, 0.1) 100%);
  z-index: 0;
}

.contact-section .row {
  position: relative;
  z-index: 2;
}

.form-column {
  background-color: var(--white-color);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: var(--main-transition);
  height: 100%;
}

.form-column:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.contact-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  position: relative;
  display: inline-block;
}

.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.contact-section .lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 30px;
  text-align: center;
}

.contact-section .card {
  margin-top: 30px;
  padding: 30px;
  border: 0 !important;
  border-radius: var(--border-radius);
  background: linear-gradient(135deg, #ffdd59 0%, #ffc800 100%);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.2);
  transition: var(--main-transition);
  overflow: hidden;
  position: relative;
}

.contact-section .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient);
}

.contact-section .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(255, 193, 7, 0.3);
}

.contact-section .card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 15px;
  text-align: center;
}

.contact-section .card p {
  text-align: center;
  color: #333;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-section .card input,
.contact-section .card textarea {
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  border: 2px solid transparent;
  font-size: 16px;
  color: var(--dark-color);
  transition: var(--main-transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-section .card input:focus,
.contact-section .card textarea:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 3px rgba(24, 38, 158, 0.2);
  outline: none;
}

.contact-section .card input::placeholder,
.contact-section .card textarea::placeholder {
  color: #888;
}

.contact-section .card button {
  padding: 15px 25px;
  background: var(--gradient);
  color: var(--white-color);
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  border: none;
  transition: var(--main-transition);
  box-shadow: 0 5px 15px rgba(24, 38, 158, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.contact-section .card button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(24, 38, 158, 0.4);
}

.contact-section .card button:active {
  transform: translateY(1px);
}

.info-column {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: var(--white-color);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  height: 100%;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-column > div {
  margin-bottom: 40px;
  position: relative;
  padding-left: 20px;
}

.info-column > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--gradient);
  border-radius: 2px;
}

.info-column h3 {
  color: var(--main-color-light);
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-column .material-icons {
  font-size: 2rem !important;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-column p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #e0e0e0;
}

.info-column .display-6 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white-color);
  margin: 10px 0;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.info-column ul {
  list-style: none;
  padding: 0;
  columns: 2;
  column-gap: 20px;
}

.info-column ul li {
  margin-bottom: 12px;
  padding-right: 15px;
  position: relative;
  break-inside: avoid;
  transition: var(--main-transition);
}

.info-column ul li::before {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  color: var(--main-color-light);
}

.info-column ul li:hover {
  transform: translateX(-5px);
  color: var(--white-color);
}

.map-column {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  height: 100%;
  transition: var(--main-transition);
}

.map-column:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-5px);
}

.map-column iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: 0;
  border-radius: var(--border-radius);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .contact-section h2 {
    font-size: 2.5rem;
  }
  
  .info-column ul {
    columns: 1;
  }
}

@media (max-width: 991px) {
  .contact-section {
    padding: 80px 0;
  }
  
  .form-column, 
  .info-column, 
  .map-column {
    margin-bottom: 30px;
  }
  
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .info-column > div {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-section h2 {
    font-size: 2rem;
  }
  
  .contact-section .card {
    padding: 20px;
  }
  
  .info-column {
    padding: 30px 20px;
  }
  
  .info-column .display-6 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .contact-section h2 {
    font-size: 1.8rem;
  }
  
  .contact-section .lead {
    font-size: 1rem;
  }
  
  .contact-section .card h4 {
    font-size: 1.3rem;
  }
  
  .contact-section .card input,
  .contact-section .card textarea {
    padding: 12px 15px;
  }
  
  .info-column h3 {
    font-size: 1.2rem;
  }
}

/* Animation for form elements */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section .card input,
.contact-section .card textarea,
.contact-section .card button {
  animation: fadeInUp 0.5s ease-out forwards;
}

.contact-section .card input:nth-child(1) { animation-delay: 0.1s; }
.contact-section .card input:nth-child(2) { animation-delay: 0.2s; }
.contact-section .card input:nth-child(3) { animation-delay: 0.3s; }
.contact-section .card input:nth-child(4) { animation-delay: 0.4s; }
.contact-section .card textarea { animation-delay: 0.5s; }
.contact-section .card button { animation-delay: 0.6s; }
/* End Contact */

/* Start Footer */
footer {
  background-color: var(--dark-color);
  padding: 20px 10px;
}
footer p {
  color: var(--light-color);
  padding: 0;
  margin: 0;
}
/* End Footer */

/* Sticky Button */
.call-btn-sticky {
  position: fixed;
  bottom: 30px;
  left: 20px;
  background: #00c6ff; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #0072ff,
    #00c6ff
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
  z-index: 1000;
}
.call-btn-sticky2 {
  position: fixed;
  bottom: 120px;
  left: 20px;
  background: #f7ff00; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #db36a4,
    #f7ff00
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #db36a4,
    #f7ff00
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  animation: pulseZoom 1.5s ease-in-out infinite;
    z-index: 1000;

}
.whatsapp-btn-sticky {
  position: fixed;
  bottom: 30px;
  right: 20px;
  background: green; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #45b649,
    green
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #45b649,
    green
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

  color: var(--white-color);
  padding: 10px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
    z-index: 1000;

  animation: pulseZoom 1.5s ease-in-out infinite;
}
.call-btn-sticky:hover,
.call-btn-sticky2:hover,
.whatsapp-btn-sticky:hover {
  color: var(--white-color);
}
@keyframes pulseZoom {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Start Content */
.content {
  padding: 100px 0;
}
.content h2,
.content h3 {
  color: var(--main-color);
}
/* End Content */

/* ------------------------------------------- */

main {
  display: flex;
  flex-wrap: nowrap;
  height: 100vh;
  height: -webkit-fill-available;
  max-height: 100vh;
  overflow-x: auto;
  overflow-y: hidden;
}

.b-example-divider {
  flex-shrink: 0;
  width: 1.5rem;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.1);
  border: solid rgba(0, 0, 0, 0.15);
  border-width: 1px 0;
  box-shadow: inset 0 0.5em 1.5em rgba(0, 0, 0, 0.1),
    inset 0 0.125em 0.5em rgba(0, 0, 0, 0.15);
}

.bi {
  vertical-align: -0.125em;
  pointer-events: none;
  fill: currentColor;
}

.dropdown-toggle {
  outline: 0;
}

.nav-flush .nav-link {
  border-radius: 0;
}

.btn-toggle {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.5rem;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.65);
  background-color: transparent;
  border: 0;
}
.btn-toggle:hover,
.btn-toggle:focus {
  color: rgba(0, 0, 0, 0.85);
  background-color: #d2f4ea;
}

.btn-toggle::before {
  width: 1.25em;
  line-height: 0;
  content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%280,0,0,.5%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
  transition: transform 0.35s ease;
  transform-origin: 0.5em 50%;
}

.btn-toggle[aria-expanded="true"] {
  color: rgba(0, 0, 0, 0.85);
}
.btn-toggle[aria-expanded="true"]::before {
  transform: rotate(90deg);
}

.btn-toggle-nav a {
  display: inline-flex;
  padding: 0.1875rem 0.5rem;
  margin-top: 0.125rem;
  margin-left: 1.25rem;
  text-decoration: none;
}
.btn-toggle-nav a:hover,
.btn-toggle-nav a:focus {
  background-color: #d2f4ea;
}

.scrollarea {
  overflow-y: auto;
}

.fw-semibold {
  font-weight: 600;
}
.lh-tight {
  line-height: 1.25;
}
