@import url('../css/font.css');
@import url('../css/service.css');
@import url(../css/whyus.css);
@import url(../css/about.css);
@import url(../css/service.css);


@keyframes fadeInFromRight {
    0% {
      opacity: 0;
      transform: translateX(100%);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  

  .fade-in-from-right {
    animation: fadeInFromRight 3.0s ease-in-out;
  }
 

  @keyframes fadeIn {
    0% { opacity: 0;
        transform: translateY(10px); }
    100% { opacity: 1;
        transform: translateY(0); }
  }
  .btn{
    opacity: 0; 
    animation: fadeIn 5s ease-in-out forwards;
  }
  .fade-in-text {
    animation: fadeIn 5s ease-in-out;
  }
  /* Main Site Section */
  .site-title {
    text-align: center;
    padding: 20px;
}

.site-background {
    background-image: url('./assets/images/your-background-image.jpg');
    background-size: cover;
    background-position: center;
    color: var(--black-200);
}

.fade-in-text {
    animation: fadeIn 8s;
}

.fade-in-from-right {
    animation: fadeInRight 6s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Us Section */
.about-us {
    padding: 20px;
}

.about-us__image {
    text-align: center;
}

.about-us__image img {
    max-width: 100%;
    height: auto;
}

.about-us__content {
    text-align: justify;
    margin-top: 20px;
}

/* Services Section */
.services-jobs {
    padding: 20px;
}

.services-jobs__filter-btn {
    margin: 0 5px;
}




  


  .stram__title {
    animation: fadeIn 8s ease-in-out forwards;
    font-size: 64px;
    font-weight: 600;
    font-family: var(--playfair-display);
  
    color: var(--secondary-color);
  
    margin-top: 16px;
  }
  .stram__subtitle {
 
    animation: fadeIn 9s ease-in-out forwards;
  
    color: var(--text-gray);
    opacity: 0.8;
  
    letter-spacing: -0.01em;
    font-size: 56px;
    font-family: var(--Lexend);
    font-weight: 600;
    line-height: 78px;
    color:var(--black-200);
    text-align: center;
  }
  .stram__description{
    animation: fadeIn 10s ease-in-out forwards;
    
  }
:root{

    /*      Theme colors        */
    --text-gray: #3f4954;
    --text-light : #686666da;
    --bg-color: #0f0f0f;
    --white: #ffffff;
    --midnight: #104f55;

    /* gradient color   */
    --sky: linear-gradient(120deg, #a1c4fd 0%, #c2e9fb 100%);

    /*      theme font-family   */
    --Abel: 'Abel', cursive;
    --Anton: 'Anton', cursive;
    --Josefin : 'Josefin', cursive;
    --Lexend: 'Lexend', cursive;
    --Livvic : 'Livvic', cursive;
    --playfair-display: "Playfair Display", serif;
    --plus-jakarta-sans: "Plus Jakarta Sans", sans-serif;
  
    --primary-color: #b1454a;
    --secondary-color: #121212;
  
    --black-200: #020202;
    --black-300: #333333;
    --black-400: #1f1e31;
    --black-500: #555555;
    --gray-100: #888888;
  
    --color-white: #fff;
    --color-creamson: #fff0de;
}


/* ---------------- Global Classes ---------------*/

a{
    text-decoration: none;
    color: var(--text-gray);
}

.flex-row{
    display: flex;
    flex-direction: row;    
    flex-wrap: wrap;
}

ul{
    list-style-type: none;
}

h1{
    font-family: var(--Lexend);
    font-weight: 200;
    font-size: 3.5rem;
}

h2{
    font-family: var(--Lexend);
}

h3{
    font-family: var(--Abel);
    font-size: 2.1rem;
    font-weight: 100;
}



button.btn{
    border: none;
    border-radius: 2rem;
    padding: 1rem 3rem;
    font-size: 1rem;
    font-family: var(--Livvic);
    cursor: pointer;
}

span{
    font-family: var(--Abel);
}

.container{
    margin: 0 5vw;
}

.text-gray{
    color: var(--text-gray);
}

p{
    font-family: var(--Lexend);
    color: var(--text-light);
}

/* ------x------- Global Classes -------x-------*/

    


/* --------------- navbar ----------------- */



/* ----------------- Main Content----------- */

/* --------------- Site title ---------------- */
main .site-title{
    background: url('../assets/images/strategypg.jpg');
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
}

main .site-title .site-background{
    padding-top: 10rem;
    text-align: center;
    color: var(--white);
}

main .site-title h1, h3{
    margin: .3rem;
}

main .site-title .btn{
    margin: 1.8rem;
    background: var(--sky);
}

main .site-title .btn:hover{
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

/* --------x------ Site title --------x------- */
    
