/* ==========================================
   IT Advisors
   Main Theme
========================================== */

:root{

    --primary:#00A7A7;
    --primary-dark:#008080;

    --secondary:#D9A400;

    --dark:#1F2937;

    --light:#F8FAFC;

    --gray:#6B7280;

    --white:#FFFFFF;

    --border:#E5E7EB;

    --transition:.3s ease;
}

/* ==========================================
   Global
========================================== */

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    color:var(--dark);

    background:#fff;

    overflow-x:hidden;
}

/* Arabic */

html[lang="ar"] body{

    font-family:'Cairo',sans-serif;
}

/* ==========================================
   Links
========================================== */

a{

    text-decoration:none;

    transition:var(--transition);
}

a:hover{

    color:var(--primary);
}

/* ==========================================
   Top Bar
========================================== */

.top-bar{

    background:var(--dark);

    color:#fff;

    padding:8px 0;

    font-size:14px;
}

.top-bar a{

    color:#fff;

    margin-right:20px;
}

.top-bar a:hover{

    color:var(--secondary);
}

/* ==========================================
   Navbar
========================================== */

.main-navbar{

    background:#fff;

    box-shadow:0 3px 15px rgba(0,0,0,.08);

    top:40px;

    transition:.4s;
}

.navbar-brand img{

    height:70px;
}

.nav-link{

    font-weight:500;

    margin-left:10px;

    color:var(--dark);
}

.nav-link:hover{

    color:var(--primary);
}

.dropdown-menu{

    border:none;

    border-radius:15px;

    box-shadow:0 5px 25px rgba(0,0,0,.12);
}

.dropdown-item{

    padding:10px 20px;
}

.dropdown-item:hover{

    background:var(--light);

    color:var(--primary);
}

/* ==========================================
   Hero Section
========================================== */

.hero-section{

    position:relative;

    min-height:850px;

    background:url('../images/hero-banner.jpg')
               center center / cover no-repeat;

    display:flex;

    align-items:center;

}
 
 
.hero-overlay{
    position:absolute;

    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(2,12,20,.92) 0%,
        rgba(2,12,20,.75) 40%,
        rgba(2,12,20,.30) 70%,
        rgba(2,12,20,.05) 100%
    );
}
.hero-content{
    background:rgba(0,0,0,.15);

    backdrop-filter:blur(4px);

    padding:40px;

    border-radius:25px;

    position:relative;

    z-index:2;

    color:#fff;

    max-width:760px;
 padding-top:120px;
 padding-bottom:15px;
}
 
 
.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,.15);
    padding:10px 18px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    color:#fff;
    letter-spacing:1px;
    font-size:14px;
    margin-bottom:20px;
}
.hero-content h1{

    font-size:4rem;

    font-weight:800;

    margin-bottom:25px;

    line-height:1.1;
}

.hero-content p{

    font-size:1.3rem;

    line-height:1.8;

    margin-bottom:35px;

    opacity:.95;

}

.hero-icons{

    display:grid;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:40px;
	

    grid-template-columns:
    repeat(6,1fr);

    gap:12px;
}

.hero-icon-box{

     
	width:120px;
    height:105px;
    border:1px solid rgba(255,255,255,.15);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(8px);

    border-radius:15px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

} 
 
.hero-icon-box i{

    color:#d9a300;

    font-size:30px;

    margin-bottom:10px;

}

.hero-icon-box span{

    font-size:14px;

    color:#fff;

}
.hero-buttons .btn{

    padding:16px 36px;

    font-size:18px;

    border-radius:50px;
}
.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-warning{

    background:#d9a300;

    border:none;

    color:#fff;

    font-weight:600;

    padding:15px 35px;

}

.btn-warning:hover{

    background:#c08f00;

}

@media(max-width:992px){

    .hero-section{

        min-height:auto;

        padding:100px 0;

    }

    .hero-content h1{

        font-size:3rem;

    }
	.hero-icons{

	grid-template-columns:
	repeat(2,1fr);

	}
     

}
 

/* ==========================================
   Buttons
========================================== */

.btn{

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;
}

.btn-warning{

    background:var(--secondary);

    border:none;

    color:#fff;
}

.btn-warning:hover{

    background:#c29100;

    color:#fff;
}

.btn-outline-light:hover{

    background:#fff;

    color:var(--primary);
}

/* ==========================================
   Sections
========================================== */

.section-padding{

    padding:100px 0;
}

.section-title h2{

    font-size:2.5rem;

    font-weight:700;

    margin-bottom:20px;
}

.section-title p{

    color:var(--gray);

    max-width:700px;

    margin:auto;
}

/* ==========================================
   Stats
========================================== */

.stats-section{

    background:var(--light);

    padding:70px 0;
}

.stats-section h2{

    color:var(--primary);

    font-weight:700;

    font-size:3rem;
}

/* ==========================================
   Cards
========================================== */

.solution-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 5px 25px rgba(0,0,0,.06);

    height:100%;

    transition:var(--transition);
}

.solution-card:hover{

    transform:translateY(-10px);

    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.solution-card h4{

    color:var(--primary);

    margin-bottom:15px;
}

/* ==========================================
   Why Us
========================================== */

.feature-list{

    list-style:none;

    padding:0;
}

.feature-list li{

    margin-bottom:20px;

    font-size:1.1rem;

    position:relative;

    padding-left:35px;
}

.feature-list li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:var(--primary);

    font-weight:bold;
}

/* ==========================================
   Industries
========================================== */

.industry-box{

    background:#fff;

    padding:25px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 3px 12px rgba(0,0,0,.05);

    transition:.3s;
}

.industry-box:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-5px);
}

/* ==========================================
   Founder Section
========================================== */

.founder-section{

    background:var(--light);
}

.founder-image{

    width:220px;

    height:220px;

    border-radius:50%;

    object-fit:cover;
}

/* ==========================================
   CTA
========================================== */

.cta-section{

    background:var(--primary);

    color:#fff;

    text-align:center;

    padding:120px 0;
}

.cta-section h2{

    font-size:3rem;

    margin-bottom:25px;
}

/* ==========================================
   Footer
========================================== */

footer{

    background:var(--dark);

    color:#fff;

    padding:80px 0 30px;
}

footer h5{

    margin-bottom:20px;
}

footer a{

    color:#d1d5db;

    display:block;

    margin-bottom:10px;
}

footer a:hover{

    color:#fff;
}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.1);

    margin-top:40px;

    padding-top:20px;
}

/* ==========================================
   Contact Form
========================================== */

.form-control{

    border-radius:12px;

    padding:14px;
}

.form-control:focus{

    border-color:var(--primary);

    box-shadow:none;
}

/* ==========================================
   WhatsApp Floating Button
========================================== */

.whatsapp-btn{

    position:fixed;

    bottom:20px;

    right:20px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    z-index:9999;

    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

/* ==========================================
   Responsive
========================================== */

@media(max-width:992px){

    .hero-title{

        font-size:2.7rem;
    }

    .main-navbar{

        top:0;
    }

    .top-bar{

        display:none;
    }
}

@media(max-width:768px){

    .hero-title{

        font-size:2.2rem;
    }

    .section-title h2{

        font-size:2rem;
    }

    .cta-section h2{

        font-size:2rem;
    }
}


.page-header{

    background:
    linear-gradient(
        rgba(0,167,167,.9),
        rgba(0,128,128,.9)
    );

    color:#fff;

    padding:150px 0 80px;
}

.page-header h1{

    font-size:3rem;

    font-weight:700;
}


html[lang="ar"] body{
    font-family: 'Cairo', sans-serif;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4,
html[lang="ar"] h5{
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
}

/* ==========================================
ARABIC FOOTER
========================================== */

.footer{

    background:#1f2937;

    color:#ffffff;

     padding:50px 0 20px;
}
 
.footer-logo{

    max-width:220px;

    height:auto;

    margin-bottom:20px;
}
.footer h5{

    color:#ffffff;

    margin-bottom:20px;

    font-weight:700;
}

.footer p{

    color:#d1d5db;
}

.footer-links{

    padding:0;

    list-style:none;

    text-align:right;
}

.footer-links li{

    margin-bottom:12px;
}

.footer-links a{

    color:#d1d5db;

    text-decoration:none;

    transition:.3s;
}

.footer-links a:hover{

    color:#0ea5a8;
}

.footer-divider{

    margin:40px 0 25px;

    border-color:rgba(255,255,255,.1);
}

.social-icons a{

    margin-left:12px;

    color:#ffffff;

    font-size:20px;

    transition:.3s;
}

.social-icons a:hover{

    color:#0ea5a8;
}
.social-icons{

    display:flex;

    gap:15px;

    justify-content:flex-start;

    margin-top:20px;
}

.social-icons a{

    font-size:22px;
}
.whatsapp-float{

    position:fixed;

    bottom:25px;

    left:25px;

    width:60px;

    height:60px;

    background:#25d366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    text-decoration:none;

    z-index:9999;

    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.whatsapp-float:hover{

    color:#fff;

    transform:scale(1.05);
}
.footer-company{

    text-align:right;

    max-width:500px;
}

.hero-ar{

    direction:rtl;

    text-align:right;

}

.hero-ar .hero-content{

    padding-top:80px;

    background:rgba(0,0,0,.15);

    backdrop-filter:blur(4px);

    border-radius:25px;

    padding:40px;

    max-width:760px;

}

.hero-ar .hero-content h1{

    font-family:'Cairo',sans-serif;

    font-size:4.5rem;

    font-weight:800;

    line-height:1.25;

    margin-bottom:25px;

}

.hero-ar .hero-description{

    font-family:'Cairo',sans-serif;

    font-size:1.3rem;

    line-height:2;

    margin-bottom:35px;

}

.hero-ar .hero-icons{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:12px;

    margin-bottom:40px;

}
 

.hero-ar .hero-icon-box{

    width:100%;

    height:110px;

}

.hero-ar .hero-buttons{

    display:flex;

    gap:15px;

    justify-content:flex-start;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.hero-ar .hero-stats{

    display:flex;

    gap:40px;

    flex-wrap:wrap;

}

.hero-ar .hero-stats strong{

    display:block;

    color:#d9a300;

    font-size:2rem;

}

.hero-ar .hero-stats span{

    color:#fff;

    font-family:'Cairo',sans-serif;

}

.hero-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(0,15,25,.20) 0%,
        rgba(0,15,25,.25) 35%,
        rgba(0,15,25,.25) 65%,
        rgba(0,15,25,.05) 100%
    );
}

.modal-content{

    border:none;

    border-radius:20px;

}

.modal-header{

    background:#0f8f95;

    color:#fff;

    border-radius:20px 20px 0 0;

}

.modal-title{

    font-family:'Cairo',sans-serif;

    font-weight:700;

}

.modal-body{

    font-family:'Cairo',sans-serif;

}

.form-control,
.form-select{

    padding:12px;

    border-radius:10px;

}

.btn-warning{

    background:#d9a300;

    border:none;

    font-weight:700;

}
 
.hero-ar{

    background:
    linear-gradient(
        90deg,
        rgba(0,15,25,.95) 0%,
        rgba(0,15,25,.85) 35%,
        rgba(0,15,25,.45) 65%,
        rgba(0,15,25,.10) 100%
    ),
    url('../assets/images/hero-banner-ar.jpg');

    background-size:cover;

    background-position:center;

}
.hero-ar::before{

    content:'';

    position:absolute;

    inset:0;

    background:url('../images/hero-banner.jpg')
               center center/cover no-repeat;

    transform:scaleX(-1);

    z-index:0;

}

.hero-ar .hero-overlay{

    z-index:1;

}

.hero-ar .container{

    position:relative;

    z-index:2;

}

.hero-ar .hero-background{

    transform: scaleX(-1);

}
@media(max-width:992px){

.hero-ar .hero-content h1{

    font-size:3rem;

}

.hero-ar .hero-icons{

    grid-template-columns:repeat(2,1fr);

}

.hero-ar .hero-stats{

    justify-content:center;

    text-align:center;

}

.hero-ar{

    text-align:center;

}

}