body{
    font:'Poppins';
    text-align: center;
    background-color: #121212;
}

h1, h2{
    font: 'Poppins';
    font-weight: 300;
    line-height: 1.5;
}

h3{
    font: 'Poppins';
    font-weight: 300;
    line-height: 1.5;
}

p{
    color: #BCCCDC;;
}

.container-fluid{
    padding: 3% 3%;
}
  

/* Sections */

.white-container{
    background-color: #1d1d1d;
    color: #BCCCDC;
    border-radius: 70px;
}

.colored-container{
    background-color: #121212;
    color: #BCCCDC;
}

.projects-container{
    background-color: #121212;
    color: #BCCCDC;
}

/* Home Container */

#title .container-fluid{
    padding:3% 15% 17%;
}

#title{
    background-color: #4C3A51;
    text-align: left;
}


.home-header{
    font-size: 7rem;
    color: white;
    padding-top: 25%;
}


.top-container{
    padding-top: 1%;
}

.circle-container {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 12%;
    margin-top: 7%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("images/ReaAhuja.png");
    background-size: cover;
    background-position: center;
  }
  
  
  .circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  

  .typing-animation {
    animation: typing 5s steps(20) infinite;
  }
  
  @keyframes typing {
    0% {
      width: 0;
    }
    100% {
      width: 400px; 
    }
  }
  
  .blink-cursor {
    animation: blink 0.7s infinite;
  }
  
  @keyframes blink {
    0% {
      opacity: 0;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }
  
  


/* Navigation Bar */

html,
body {
  scroll-behavior: smooth;
}

.navbar {
    font-family: 'Roboto Flex';
    padding: 1rem 0;
    background-color: #121212;
    color: #BCCCDC;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .logo-container {
    margin-right: 1rem;
  }
  
  .logo-container img {
    width: 50px; 
  }
  
  
  .navbar-brand {
    font-size: 2.5rem;
    font-weight: bold;
    color: #BCCCDC;
    text-decoration: none;
  }
  
  .nav-item {
    margin: 0 0.5rem;
    font-size: 1.2rem;
    list-style: none;
  }
  
  .nav-item a {
    color: #BCCCDC;
    text-decoration: none;
    padding: 0.5rem;
    transition: color 0.3s;
    position: relative;
  }
  
  .nav-item a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #aaa;
    height: 1px;
  }
  
  .nav-item a:hover:after {
    width: 100%;
  }
  
  .nav-item a:hover {
    color: #fff;
    z-index: 1;
  }
  
  .nav-item a:after {
    text-align: left;
    content: '.';
    margin: 0;
    opacity: 0;
  }
  
  .nav-item a:hover:after {
    z-index: -10;
    animation: fill 1s forwards;
    -webkit-animation: fill 1s forwards;
    -moz-animation: fill 1s forwards;
    opacity: 1;
  }
  
  @keyframes fill {
    100% {
      width: 100%;
      background: #aaa;
    }
  }
  
  @-webkit-keyframes fill {
    100% {
      width: 100%;
      background: #aaa;
    }
  }
  
  @-moz-keyframes fill {
    100% {
      width: 100%;
      background: #aaa;
    }
  }
  

  
  

/* Download Buttons */

.download{
    margin: 5% 3% 5% 0;
}

/* Image */
.dog-img{
    transform: rotate(30deg);
    width:65%;
    position:absolute;
}

/* Responsive */

@media (max-width:1028px){
    .dog-img{
        position: static;
        transform: rotate(0);
        width:50%;
    }

    #title{
        text-align: center;
    }
}



/* Features */

#features{
    position: center;
    z-index: 1;
    text-align: center;
}

.middle-container{
    justify-content: center;
    /* border: 3px solid #BCCCDC; */
    padding: 20px;
}


.features-header{
    font: 'Poppins';
    font-size: 2.5rem;
    margin: 8rem 8rem 2rem;
}

.features-body{
    color: #BCCCDC;
}

.underline{
    text-decoration: underline;
    text-decoration-color: #007aff;
    font-weight: bolder;
}
.underline-name {
    text-decoration: underline;
    text-decoration-color: #007aff;
    text-decoration-thickness: 5%;
    font-weight: bolder;
    text-underline-offset: 5px; 
}



.underlineDescription-other{
    text-decoration: underline;
    text-decoration-color: #007aff;
}

.full-features-desc{
    margin: 3rem 0rem 2rem;
    font-size: 1.3rem;
}

.features-desc{
    color: #BCCCDC;
}

.features-title{
    font-size: 3rem;
    text-decoration: underline;
    text-decoration-color: #007aff;
    border-bottom: none;
   margin-bottom: 0;
   padding-top: 30px;
}

.vertical-dashed-line {
    border: none;
    border-left: 1px dashed #000;
    height: 100%;
    margin-top: 10px;
  }

  .btn-custom-color {
    background-color: #007aff; 
    color: white; 
  }
  
  


/* Projects */

.project-image {
  width: 100%; 
  height: 200px; 
  border-radius: 20px;
}

.button-container {
    display: inline-flex;
    gap: 10px; 
  }
  

.pricing-column{
    padding: 3% 2%;
}

.projects-title{
    font-size: 3rem;
    text-decoration: underline;
    text-decoration-color: #007aff;
    margin-bottom: 3%;
}

.project-subHeadings{
    text-decoration: underline;
    text-decoration-color: #007aff;
    text-underline-offset: 5px;
}

.card-header{
    font: 'Poppins';
    font-weight: 200;
    color: #BCCCDC;
    background-color: #1d1d1d;
}

.card-body{
    min-height: 200px;
    min-width: 282px;
    background-color: #1d1d1d;
}

.card{
    border-radius: 20px;
    overflow: hidden;  
    transition: transform 0.3s;
    background-color: #1d1d1d;
}

.card:hover {
    transform: translateY(-10px); 
  }


/* cta-header */


.cta-header{
    font-size: 2.5rem;
    text-decoration: underline;
    text-decoration-color: #007aff;
}

/* Footer */














