
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family:'Syne' !important;
    background-color: #020103;
    letter-spacing: 1.0px;
}
body, html {
    overflow-x: hidden; 
}


a {
    text-decoration: none;
    color: inherit;
}
  
  /* Styling for the arrow */
  .arrow {
    font-size: 20px; 
    margin-left: 10px;
    display: inline-block;
    animation: bounce 1s infinite alternate; 
    color: white;
    border: 1px solid white ;
    border-radius: 50%;
    background-color: transparent;
    cursor: pointer;
    padding: 5px 5px;
  }
  .arrow:hover{
    background-color: rgba(255, 255, 255, 0.758);
    color: #020103;
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(10px); 
    }
    100% {
      transform: translateX(0); 
    }
  }
/* Navbar Styling */
.navbar {
    background-color: #020103 !important;
    box-shadow: 0 4px 8px rgb(86 5 94 / 40%);
    z-index: 1050; 
}

.navbar .navbar-nav .nav-link {
    color: #fff;
    transition: all 0.3s ease;
    padding: 20px 20px;
}

.navbar .navbar-nav .nav-link:hover {
    background: linear-gradient(90deg, #5200FF, #FF2DF7);
    color: transparent;
    background-clip: text;
    border-radius: 5px;
    border-bottom: 1px solid #FF2DF766;
}

.navbar .navbar-nav.ms-auto {
    margin-left: auto;
}

.navbar .navbar-nav.ms-auto li {
    margin-left: 30px;
   
}

/* Contact Button */
.navbar .navbar-nav .nav-item.contact a {
    background: linear-gradient(90deg, #FF2DF766, #5200FF66);
    color: white;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 500;
    border-image: linear-gradient(20deg, #5100ffd7, #FF2DF766) 1;
    color: white;
    box-shadow: 0 4px 8px rgba(255, 47, 247, 0.5);
}

.navbar .navbar-nav .nav-item.contact a:hover {
    background: linear-gradient(90deg, #5200FF66, #FF2DF766);
    border: 2px solid #FF2DF766;
    color: white;
    box-shadow: 0 0 4px #5100ffb8, 0 0 10px #ff2df8ac, 0 0 10px #5100ffac, 0 0 20px #ff2df8a9;
}

/* Navbar Logo */
.navbar-logo {
    width: auto;
    max-height: 40px;
    display: block;
}

/* Navbar Toggler */
.navbar-toggler {
    background: linear-gradient(90deg, #610e65, #19083cfe);
    border: none;
}

.navbar-toggler-icon {
    background-color: transparent;
}


/* Media Query for Mobile */
@media (max-width: 767.98px) {
    .navbar .navbar-nav .nav-item {
        margin-left: 15px; 
    }
    
    .navbar-toggler {
        background: linear-gradient(90deg, #610e65, #19083cfe);
        border: none;
    }
    .navbar-logo {
        width: 50%;
        max-height: 70px;   
        display: block;       
      }
      .navbar .navbar-nav .nav-item.contact a {
       width: 30%;
       margin-bottom: 20px;
    }
    .navbar .navbar-nav.ms-auto li {
       margin-bottom: 5px;
       
    }
}


/* Banner Section */

.banner {

    position: relative;

    text-align: center;

    height: 100vh;  

}
 
.banner-text {

    position: absolute;

    top: 35%;  

    left: 50%;  

    transform: translate(-50%, -50%);

}
 
.banner h1 {

    font-size: 3em;

    margin-bottom: 10px;

    background: linear-gradient(#f4f1f4fe, #f8cbffec);

    color: transparent;

    background-clip: text;

    -webkit-background-clip: text;

    font-weight: 600;

}
 
.banner p {

    font-size: 1em;

}
 
/* Video background */

.banner-img {

    width: 100%;
    object-fit: cover;

}
 

@media (max-width: 768px) {

    .banner {

        height: 90vh;  

    }
 
    .banner-text {

        top: 40%; 
        transform: translate(-50%, -50%); 
        width: 100%;

    }
 
    .banner h1 {

        font-size: 2rem; 
        padding: 0 20px;

    }
 
    .banner p {

        font-size: 0.9em; 

    }

}


/* About Us Section */
.about-us {
    padding: 60px 20px !important;
    background-color: #020103;
}
.about-us h1 {
    background: linear-gradient(to right, #FF2DF7, #5200FF, #5200FF, #5200FF);
    color: transparent; 
    background-clip: text; 
    -webkit-background-clip: text; 
    font-size: 3rem; 
    font-weight: 600; 
    margin-bottom: 20px;
}

.about-us p{
    color: #fff;
    text-align: justify;
}
.about-us .img-fluid{
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    border-radius: 25px;
   
}
@media (max-width: 768px) {

    .about-us h1 {
        background: linear-gradient(to right, #FF2DF7, #5200FF, #5200FF, #5200FF);
        color: transparent; 
        background-clip: text; 
        -webkit-background-clip: text; 
        font-size: 2rem; 
        font-weight: 600; 
    }
    .about-us p{
        color: #fff;
        text-align: justify;
        font-size: 14px; 
        margin-bottom: 40px;
    }

}

/* Mission & Vision Section */
.mission-vision {
    background-image: url('../images/missvissBac.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 30px;
    color: white;
    text-align: center;
}

.mission-vision .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.mission-vision .vision, .mission {
    flex: 0 0 40% !important;
    margin-bottom: 20px;;
}
.vision-heading {
    display: flex;     
    justify-content: center !important;   
    gap: 10px; 
    margin-bottom: 20px;
}
.mission-vision h2 {
    font-size: 3rem !important;
    font-weight: 600;
    margin-bottom: 10px;
    background: linear-gradient(to right, #FF2DF7,#FF2DF7, #5200FF, #5200FF);
    color: transparent; 
    background-clip: text; 
    -webkit-background-clip: text; 
    margin: 0;            
   
}

.vision-heading img {
    width: 40px;          
    height: auto;          
}
.mission-heading .icon-text {
    display: flex;         
  justify-content: center !important;   
    gap: 10px;    
    margin-bottom: 20px;        
}
.mission-heading img {
    width: 40px;           
    height: auto;          
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision .row {
        flex-direction: column; 
        align-items: center; 
}

.mission-vision .vision, .mission {
    flex: 0 0 100%; 
    margin-bottom: 20px;
}

.mission-vision h2 {
    font-size: 2rem !important; 
}

.mission-vision i {
    font-size: 14px !important; 
}
.mission-heading img {
    width: 30px;           
    height: auto;          
}
.vision-heading img {
    width: 30px;          
    height: auto;          
}
    }


/* AI Knowledge Academy Section */
.ai-knowledge {
    padding: 60px 20px !important;
    background: linear-gradient(90deg, #410644,#130531fe );
    
}

.ai-knowledge h2 {
    background: linear-gradient(to right, #FF2DF7,#FF2DF7, #5200FF, #5200FF); 
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
    text-align: center;
}

.ai-item {
    padding: 20px;
    /* border: 1px solid #ddd;  */
    /* border-radius: 8px;  */
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
    height: 100%;
}

.ai-item:hover {
    box-shadow: rgba(136, 148, 191, 0.48) 6px 2px 16px 0px, rgba(242, 212, 249, 0.8) -6px -2px 16px 0px;
	color: transparent;
    transform: translateY(-10px); 
    border-radius: 15px;
}

.serial-no {
    font-size: 1.5rem;
    font-weight: bold;
    color: #150532; 
    background: linear-gradient(90deg, #f7d9f9,#e8e0fafe );
    border-radius: 50%; 
    width: 40px;
    height: 40px; 
    display: flex; 
    justify-content: center;
    align-items: center; 
    margin-right: 10px; 
    text-align: center; 
    box-shadow: rgba(0, 0, 0, 0.4) 0px 30px 90px;
}


.ai-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #f1ecec; 
    margin-top: 10px;
    text-align: left;
}

.ai-description {
    font-size: 1rem;
    color: #e3dede;
    margin-top: 5px;
    text-align: left;}

@media (max-width: 768px) {
    .ai-item {
        margin-bottom: 20px; 
    }
    .ai-knowledge h2 {
        font-size: 2rem;
      
    }
}


/* KSA-AI Compliance Section */
.ksa-ai-compliance {
    padding: 40px 20px;
    background-color: #020103;
   
}

.ksa-ai-compliance h2 {
    background: linear-gradient(to right, #FF2DF7, #FF2DF7, #5200FF, #5200FF); 
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
  
}

.animated-border {
    border: none;
    box-shadow: rgba(255, 217, 249, 0.1) 0px 4px 12px;
    position: relative;
    overflow: hidden;
}

.ksa-card:hover .service-content {
    bottom: 0; 
}


.ksa-ai-compliance h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  
  .service-content {
    padding-top: 15px;
  }
  
  .service-content .card-text {
    font-weight: bold;
    color: #fcf5f5;
    text-align: left;
    font-size: 1.0rem;
  }
  
  .service-content .card-des {
    font-size: 0.9rem;
    color: #ddd7d7;
    text-align: left;
    font-size: 0.8rem;
  }

  .card-img-top {
    transition: transform 0.3s ease-in-out;
    border-radius: 15px;
    width: 100%;
    height: 70%;
  }
  
  .service-card:hover .card-img-top {
    transform: scale(1.1); 
    border-radius: 25px;
  }
  
 

/* Responsive Design */
@media (max-width: 768px) {
  
    .ksa-ai-compliance h2 {
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 60px !important;
    }
    }

  
/* AI for Government Applications Section */
.ai-for-government{
    padding: 60px 20px !important;
    background-color: #020103;
    
}
.ai-for-government h2 {
    background: linear-gradient(to right, #FF2DF7,#FF2DF7, #5200FF, #5200FF); 
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
    text-align: center;
}
.government-item 
{

    padding: 20px;
 
} 

 .government-serial-no {
    font-size: 70px;
    font-weight: bold;
    color: #b3b1b1;
    align-items: left;
    /* margin-bottom: 10px; */
} 

.government-title{
    font-size: 1.2rem;
    font-weight: 600;
    color: #f2f2f2;
    text-align: left;
}

.government-description {
    color: #c5c2c2;
    font-size: 0.9rem;
    line-height: 1.4;
    text-align: left;
} 
.gov-line{
    color: #f4efef;
    width: 100%;
}


@media (max-width: 768px) {
  
    .ai-for-government h2 {
      
        font-size: 2rem;
      
    }
    .government-item 
    {
    
        padding: 15px;
     
    } 
     
     .government-serial-no {
        font-size: 70px;
        margin-bottom: 10px;
    } 
    
    .government-title{
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 10px;
       
    }
    
    .government-description {
       
        font-size: 0.9rem;
        text-align: left;
    } 
    .gov-line{
        color: #f4efef;
        width: 100%;
    }
    }

/* <----------------meet out founders-> */
.meet-our-founders{
    padding: 60px 20px !important;
    background: linear-gradient(90deg, #410644,#020103,#020103,#020103 );
}
.meet-our-founders h2 {
    background: linear-gradient(to right, #FF2DF7,#FF2DF7, #5200FF, #5200FF); 
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
    text-align: center;
}
.founder-img{
    width: 100%;
    height: auto;
    border-radius: 0 40% 0 0;
    background: linear-gradient(90deg, #5200FF, #FF2DF7); 
    color: transparent; 
    background-clip: text; 
   background-color: transparent;
   background: linear-gradient(90deg,  #5200FF66, #FF2DF766,);
   border: 3px solid #FF2DF766;
  
}
.founder h3{
   color: white;
   font-weight: 600;
   margin-bottom: 10px;
}
.founder h6{
    background: linear-gradient(to right, #FF2DF7,#FF2DF7, #5200FF, #5200FF); 
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text; 
    font-size: 18px;
    margin: 10px 0;
}
.founder p{
 color: rgb(214, 211, 211);
 text-align: justify;
 margin: 10px 0;
}


/* Responsive Design */
@media (max-width: 768px) {
  
    .meet-our-founders h2 { 
        font-size: 2rem;
       
    }
    .founder-img{
        width: 50%;
        height: auto;
        margin-bottom: 20px;
      
    }
    .founder h3{
       color: white;
       font-weight: 600;
       margin-bottom: 10px;
    }
    .founder h6{
        font-size: 18px;
        margin: 10px 0;
    }
    .founder p{
     color: rgb(214, 211, 211);
     text-align: justify;
     margin: 10px 0;
     font-size: 14px;
    }
    }
/* ------------------------------- */
.ethical-ai h4 {
    background: linear-gradient(to right, #FF2DF7,  #5200FF, #5200FF);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
    text-align: center; 

    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 70%; 
}


.ethical-ai {
    overflow: hidden; 
    background-image: url('../images/building-ai.webp'); 
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    padding: 50px 30px; 
}
.get-in-touch{
    color: #fff !important;
 

}

.form_div {
    background-color: transparent; 
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /
}


.form-control {
    border-radius: 5px;
    border: none;
    margin: 10px 0;
    width: 100%;
    background: transparent;
    padding: 15px 10px 15px 25px;
    font-size: 16px;
    border-radius: 15px;
    border: 1px solid #b1b0b0;

}
.button_container{
    display: flex;
    justify-content: center;  
    align-items: center;  
    /* height: 100vh;   */
}

.submit_btn {
    text-align: center;
    background: linear-gradient(90deg, #5200FF66, #FF2DF766);
    border: 2px solid #FF2DF766;
    color: transparent;
    background: linear-gradient(90deg, #5200FF, #FF2DF7); 
    background-clip: text;
    background-color: transparent;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding: 10px 20px;
}
@media (max-width: 767px) {
    .ethical-ai h4 {
        font-size: 2rem;
      
    }
}

/* AI Services and Products */


.carousel-section {
    
    background: linear-gradient( #020103 ,#410644);
}

.carousel-heading {
    background: linear-gradient(to right, #FF2DF7,  #5200FF, #5200FF);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 60px !important;
    text-align: center !important;
    padding: 0 20px;
   
}


.carousel-section img{
    background: linear-gradient(90deg, #5200FF66, #FF2DF766);
    border-top: 2px solid #FF2DF766;
    border-bottom: 2px solid #FF2DF766;
    color: transparent;
    background: linear-gradient(90deg, #5200FF, #FF2DF7); 
}
@media (max-width: 767px) {
    .carousel-heading {
        font-size: 2rem;
        font-weight: 600;
    }
}



/* Footer Section */
footer{
    background-color: #020103;
    color: white;
    padding: 20px;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer .list-unstyled {
    padding-left: 0;
    list-style-type: none;
}

.footer .list-unstyled li {
    font-size: 0.9rem;
    margin-bottom: 10px;
}
.footer .list-unstyled li a:hover{
    background: linear-gradient(90deg, #5200FF, #FF2DF7) !important; 
    color: transparent !important; 
    background-clip: text !important;
}
.footer .social-icons {
    font-size: 1.5rem;
}

.footer .social-icon {
    color: white;
    margin-right: 15px;
    transition: color 0.3s ease;
    cursor: pointer;
    
}

.footer .social-icon:hover {
    color: #5200FF; 
    transition: color 0.3s ease;
}

.footer a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
}

.footer a:hover {
    cursor: pointer;
}
.footer-logo {
    width: auto;
    max-height: 40px;   
    display: block;       
  }

@media (max-width: 767px) {
    .footer .row {
        text-align: center;
    }

    .footer .social-icons {
        margin-top: 10px;
    }

    .footer .col-md-4 {
        margin-bottom: 20px;
    }
    .footer-logo {
        width: 100% !important;
        /* display: block; */
        margin: 0 auto;
        text-align: center; 
        max-width: 80px;
    }
}

