// : Use a unique and descriptive class name
// : Use a value from 200 to 1000

.cairo- {
  font-family: "Cairo", sans-serif;
  font-optical-sizing: auto;
  font-weight: ;
  font-style: normal;
  font-variation-settings:
    "slnt" 0;
}

h1,h2,h3,h4,div,span,ul,li,a,p{  font-family: "Cairo", sans-serif !important;}

.services__details-content>.title {
text-align:center;
}
.services__details-content>p {
  font-size:21px;
  text-align:justify;
}

    .feature-card {
        transition: all 0.3s ease;
        border: 2px solid transparent;
        border-radius: 12px;
    }

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: var(--primary-color); 
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .feature-icon {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1);
    }

    .feature-card h5 {
        font-weight: 700;
        color: #14176c;
    }

    .feature-card p {
        color: #6c757d;
    }


.nav-tabs {
  list-style: none !important;
  border: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.nav-tabs .nav-link {
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 10px 22px;
  color: #0d1b3f;
  font-weight: 600;
  background-color: #fff;
  transition: all 0.3s ease;
  min-width: 140px;
  text-align: center;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background-color: var(--primary-color);
  color: #fff !important;
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.tab-content {
  animation: fadeIn 0.4s ease;
  margin-top: 20px;
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

.thetailors-section {
  padding: 80px 20px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
}

.question-box {
  background-color: #004bfc;
  display: inline-block;
  padding: 20px 40px;
  border-radius: 6px;
  margin-bottom: 50px;
  text-align: center;
}

.question-box h2 {
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  margin: 0;
}

.points {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: right;
}

.point {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  direction: rtl;
}

.number {
  min-width: 50px;
  height: 50px;
  background-color: #fcb100;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.point:hover .number {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(252, 177, 0, 0.4);
}

.point p {
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}


.faq-section {
  max-width: 900px;
  margin: 0 auto;
  font-family: 'Cairo', sans-serif;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease;
}

.faq-item.active {
  border: 2px solid #004bfc;
}

.faq-question {
  padding: 18px 25px;
  background: #fff;
  color: #004bfc;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  font-size: 17px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #fcb100;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '-';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  padding: 0 25px;
  color: #333;
  transition: max-height 0.5s ease, padding 0.4s ease;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  padding: 15px 25px 25px;
  max-height: 500px;
}
.tgmobile__menu .navigation li:hover>a{
    background: #fb7f2e;
}
.whats-app {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 15px;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.card .feature-card{
margin-top:8px;
}


#custom-popup-overlay {
position: fixed;
top: 0; left: 0;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.6);
display: none;
justify-content: center;
align-items: center;
z-index: 9999;
font-family: 'Cairo', sans-serif;
}

    #custom-popup {
        background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
        color: #fff;
        padding: 60px 40px;
        border-radius: 20px;
        text-align: center;
        max-width: 95%;
        width: 600px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        position: relative;
        animation: fadeIn 0.5s ease-in-out;
    }

    #custom-popup h2 {
        font-size: 26px;
        margin-bottom: 20px;
        font-weight: 800;
        color: #ffffff;
    }

    #custom-popup p {
        font-size: 18px;
        margin-bottom: 30px;
        color: #f1f1f1;
    }

    #custom-popup .popup-btn {
        background-color: #25D366;
        color: #fff;
        padding: 14px 28px;
        border-radius: 50px;
        border: none;
        font-weight: bold;
        font-size: 18px;
        cursor: pointer;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: background 0.3s ease;
    }

    #custom-popup .popup-btn:hover {
        background-color: #1ebe5d;
    }

    #custom-popup .close-popup {
        position: absolute;
        top: 10px;
        right: 10px;
        background: none;
        border: none;
        font-size: 30px;
        cursor: pointer;
        color: #fff;
    }

    @media (max-width: 600px) {
        #custom-popup {
            margin-top: 50px;
            width: 90%;
            padding: 40px 20px;
        }

        #custom-popup .close-popup {
            top: 5px;
            right: 5px;
            font-size: 26px;
            width: 35px;
            height: 35px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #custom-popup h2 {
            font-size: 20px;
        }

        #custom-popup p {
            font-size: 16px;
        }

        #custom-popup .popup-btn {
            font-size: 16px;
            padding: 12px 20px;
        }
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }