:root{
    --dark-color:#19283f;
    --green-color:#33d1cc;
    --red-color:#ff3150;
    --gold-color:#ffc400;
}
body{
    font-family: "Roboto" , "sans-serif";
    height: 1000px;   
}
.main-btn{
    background-color:var(--red-color) ;
    color:var(--gold-color) ;
    padding: 0.5rem 1rem;
}
.main-btn:hover{
        color:white ;
}
/* start nav */
.navbar{
    background-color: rgb(0 , 0, 0, 0.8);
   

}
.navbar .navbar-nav .nav-link{
    color: aliceblue;
}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover{
  color :var(--green-color);
}
.navbar .navbar-toggler{
    color: white;
    font-size: 25px;
    border-color: white;
}
.navbar .navbar-toggler:focus{
    box-shadow: none;
}
/* end nav */
/* start landing */
.landing{
    background-image: url(pexels-natri-129208.jpg);
    background-size: cover;
    background-position: center;

    /* background-color: var(--dark-color); */
    min-height: calc(100vh - 56px);
}
/* end landing*/
 /*دي الخط اللي تحت البراجراف  */
.main-title::after{
   content: '';
   width: 120px;
   height: 2px;
   background-color: var(--green-color);
   position: absolute;
   bottom: -20px;
   left:50%;
   transform: translateX(-50%);
}
/* start future */
/* .feat .icon-holder {
   height: 50px; 
} */
.feat .icon-holder .icon{
    color: var(--red-color);
    font-size: 2.5rem;
}
.feat a:hover h4 {
   color: var(--red-color) !important;
}

/* end future */
.icon{
    color: var(--red-color);
    font-size: 2.5rem;
}
.service-item{
    background: #fff;
    transition: transform 0.5s ease , box-shadow 2s ease-out;
    border: 20px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.service-item::before{
    content: "";
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--red-color);
    transition: all 0.5s ease;
    z-index: -1;
}
.service-item:hover{
    transform: translateY(-10px);
    box-shadow: rgb(0, 0 , 0 , 0.1);
}
.service-item:hover::before{
    bottom: 0;
}
 .service-item:hover .icon i,
 .service-item:hover h4 ,
  .service-item:hover p {
    color: #fff !important;
    transition: 0.3s;
 }
.service-item  h4{
    font-size: 1.2rem;
    color: #444;
}
.service-item  h4{
    line-height: 1.6;
}
/* /////////////// */
.feat-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f6f6f6;  
    transition: 0.3s ease-in-out;
    border-radius: 4px;
}
.feat-item:hover {
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.feat-item i {
    font-size: 24px;
    margin-right: 15px;
    line-height: 0;
}
.feat-item h3 {
    font-weight: 700;
    margin: 0;
    font-size: 16px;
}
.feat-item h3 a {
    color: #444;
    text-decoration: none;
    transition: 0.3s;
}
.feat-item:hover h3 a {
    color: #e43c5c; 
}
.call-to-action {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
    url('WhatsApp\ Image\ 2026-02-06\ at\ 5.24.45\ PM.jpeg') fixed center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}
.call-to-action h3 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.call-to-action p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}
.call-to-action .cta-btn {
    font-family: "Open Sans", sans-serif;  
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px;
    border-radius: 50px;
    transition: 0.5s;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
}
.call-to-action .cta-btn:hover {
    background: #e43c5c;  
    border-color: #e43c5c;
}
.portfolio-filters {
    padding: 0;
    margin: 0 auto 20px auto;
    list-style: none;
    background: #fff;
    border-radius: 50px;
    padding: 2px 20px;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: #444;
    transition: 0.3s;
}
.portfolio-filters li:hover, .portfolio-filters li.filter-active {
    color: #e43c5c; 
}
.portfolio-wrap {
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
}
.portfolio-wrap::before {
    content: "";
    background: rgba(228, 60, 92, 0.6);  
    position: absolute;
    left: 30px;
    right: 30px;
    top: 30px;
    bottom: 30px;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}
.portfolio-info {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 3;
    transition: all ease-in-out 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.portfolio-wrap:hover::before { opacity: 1; }
.portfolio-wrap:hover .portfolio-info { opacity: 1; }
.portfolio-links a {
    color: #fff;
    margin: 0 5px;
    font-size: 24px;
    display: inline-block;
    transition: 0.3s;
}
.portfolio-links a:hover { color: #f1f1f1; }
.portfolio {
    padding: 80px 60px;
    text-align: center;
    background: #f7f7f7;
}
.portfolio h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.portfolio h2 span {
    color: #e43c5c;
}
.filters {
    margin-bottom: 40px;
}
.filters button {
    border: none;
    background: transparent;
    margin: 0 10px;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 16px;
}
.filters .active {
    background: #e43c5c;
    color: #fff;
    border-radius: 20px;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.item {
    position: relative;
    overflow: hidden;
}
.item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
}
.item:hover .overlay {
    opacity: 1;
}
.overlay h3 {
    margin-bottom: 5px;
}
.overlay p {
    font-size: 14px;
    margin-bottom: 15px;
}
.icons span {
    background: #e43c5c;
    padding: 10px;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}
.pricing-card {
    background: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    position: relative;
    border: 1px solid #eee;
    transition: 0.3s;
}
.pricing-card.featured {
    border: 2px solid #e43c5c;
    z-index: 2;
}
.pricing-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #444;
    margin-bottom: 20px;
}
.price-icon {
    width: 70px;
    height: 70px;
    background: #fceef3;
    color: #e43c5c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
}
.pricing-card h4 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 25px;
}
.pricing-card h4 sup { font-size: 28px; }
.pricing-card h4 span { color: #bababa; font-size: 16px; }
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}
.pricing-card ul li { padding-bottom: 12px; font-size: 15px; }
.pricing-card ul .na { text-decoration: line-through; }
.btn-buy {
    display: inline-block;
    padding: 10px 40px;
    border-radius: 50px;
    color: #e43c5c;
    border: 2px solid #e43c5c;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}
.btn-buy:hover, .btn-buy.active {
    background: #e43c5c;
    color: #fff;
}
.accordion-item {
    border-radius: 5px !important;
    overflow: hidden;
}
.accorion-button {
    padding: 20px;
    font-size: 17px;
    background-color: #fff;
    transition: 0.3s;
}
.accordion-button:not(.collapsed) {
    color: #e43c5c;  
    background-color: #fff;
    box-shadow: none;
}
.accordion-button::after {
    background-size: 1rem;
    transition: 0.3s;
}
.badge-custom {
    background: #fceef3;
    color: #e43c5c;
    padding: 6px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 13px;
}
.faq .faq-list { padding: 0 100px; }
.faq .faq-list ul { padding: 0; list-style: none; }
.faq .faq-list li {
    padding: 20px;
    background: #fff;
    border-radius: 4px;
    position: relative;
    border: 1px solid #eee;  
    margin-bottom: 15px;
}
.faq .faq-list a {
    display: block;
    position: relative;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    color: #444;  
    padding: 0 30px;
}
.faq .faq-list a:not(.collapsed) { color: #e43c5c; }
.faq .faq-list .icon-help {
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
    color: #e43c5c;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 14px;
}
.faq .faq-list a.collapsed .icon-close { display: none; }
.faq .faq-list a:not(.collapsed) .icon-show { display: none; }
.faq .faq-list p { margin-top: 10px; color: #777; }
.team .member {
  background: #fff;
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  transition: 0.3s;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  height: 40px;
  background: rgba(255, 255, 255, 0.85);  
  display: flex;
  align-items: center;
  justify-content: center;
  transition: bottom 0.3s;
  opacity: 0;
}
.team .member:hover .social {
  opacity: 1;
  bottom: 10px;  
}
.team .member .social a {
  transition: color 0.3s;
  color: #444;
  margin: 0 10px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #e43c5c; 
}
.team .member .member-info {
  padding: 25px 15px;
}
.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #444;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}
.badge-team {
  background: #fceef3;
  color: #e43c5c;
  padding: 5px 15px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}
.member-box {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.member-img {
  position: relative;
  line-height: 0;
}
.member-info {
  position: absolute;
  inset: 0;  
  background: rgba(0, 0, 0, 0.7);  
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s;
}
.member-box:hover .member-info {
  opacity: 1;
}
.info-content {
  text-align: center;
  color: #fff;
  transform: translateY(20px);
  transition: 0.4s;
}
.member-box:hover .info-content {
  transform: translateY(0);
}
.info-content h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}
.info-content span {
  font-style: italic;
  display: block;
  font-size: 14px;
  margin-bottom: 15px;
}
.social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  transition: 0.3s;
}
.social a:hover {
  color: #e43c5c; 
}
.badge-custom {
  background: #fceef3;
  color: #e43c5c;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
}
.contact .icon-box {
  width: 44px;
  height: 44px;
  background: #fceef3;  
  color: #e43c5c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
  flex-shrink: 0;
}
.contact h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #444;
}
.contact p {
  color: #888;
  font-size: 14px;
  margin-bottom: 0;
}
.contact-form {
  background: #fff;
  border-radius: 5px;
}
.contact-form .form-control {
  border-radius: 0;
  padding: 12px;
  font-size: 14px;
  border: 1px solid #ddd;
}
.contact-form .form-control:focus {
  border-color: #e43c5c;
  box-shadow: none;
}
.btn-send {
  background: #e43c5c;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  font-weight: 600;
}
.btn-send:hover {
  background: #d62d4a;
}
.footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer-links ul li i {
  margin-right: 8px;
}
.footer-links ul li a {
  color: #777;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links ul li a:hover {
  color: #e43c5c;
}
.social-links a {
  font-size: 18px;
  display: inline-block;
  background: #e43c5c;  
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.social-links a:hover {
  background: #d62d4a;
}
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #e43c5c;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  color: #fff;
  text-decoration: none;
}
.back-to-top:hover {
  background: #d62d4a;
  color: #fff;
}