@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
/* Base Theme Colors */
:root {
    --background-color: #fefffe;
    --primary-color: #431e45;    
    --secondary-color: #a3698b;  
    --accent-color: #2c2951;    
    --text-color: #a3698b;        
    --white-color: #fff;         
}

/* Global Styles */
*{
    margin: 0;
    padding: 0;
  } 
  
body {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    background-color: var(--background-color);
    color: var(--text-color);
    transition: background-color 0.5s, color 0.5s;
}

.heading1 {
    font-family: 'Times New Roman', Times, serif;
    
}

.nova {
    font-family: 'Times New Roman', Times, serif;
}


/* nav section  */
*{
    box-sizing: border-box;
  } 
  nav{
    display: flex;
    top: 0;
    height: 80px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px 0 100px;
    flex-wrap: wrap;
  }
  nav .logo{
    color: #e279b7;
    margin-bottom: 15px;
    font-size: 30px;
    font-family: 'Times New Roman', Times, serif;
    margin-left: -40px;
  }
  
 nav img {
      width: 211px;
      margin-bottom: -30px;
  }
  
  nav ul{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  nav ul li{
    margin: 0 5px;
  }
  nav ul li a{
    color: #000000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 5px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  nav ul li a.active,
  nav ul li a:hover{
    color: #4040a0; 
  }
  nav .menu-btn i{
    color: #e26da8;
    font-size: 22px;
    cursor: pointer;
    display: none;
  }
  input[type="checkbox"]{
    display: none;
  }

section {
    padding: 80px 20px 20px 20px;
    text-align: center;
    min-height: 100vh;
}

#home {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: larger;
}

#home .content {
    max-width: 40%;
}

#home .content h1 {
    color: var(--primary-color);
    font-size: 2.5em;
    margin-bottom: 1px;
    animation: fadeInDown 1s;
}

#home .content p {
    font-size: 1.2em;
    margin-bottom: 20px;
    animation: fadeInUp 1s;
}

#home .content .btn-get-started {
    background-color:#8261c6;
    color: var(--white-color);
    padding: 10px 20px;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#home .content .btn-get-started:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

#home img {
    max-width: 55%;
}

.cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 300px;
    text-align: left;
    transition: transform 0.3s;
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card h2 {
    padding: 10px 20px;
    color: var(--primary-color);
}

.card p {
    padding: 0 20px 20px 20px;
}

.card:hover {
    transform: scale(1.05);
    background-color: #e080b8cb;
    color: white;
}

#about {
    text-align: center;
}

#about h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#about p {
    font-size: 1.2em;
    margin-bottom: 40px;
}

#about .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

#about .about-content .text {
    max-width: 50%;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#about .about-content .text:hover{
    background-color:#e996b2;
    color: #ffffff;
}
#about .about-content img {
    max-width: 45%;
}

#domains, #features {
    text-align: center;
}

#domains h2, #features h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

#domains .cards-container, #features .cards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

#domains .small-card, #features .small-card {
    background-color: var(--white-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    max-width: 150px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
}

#domains .small-card img, #features .small-card img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 10px;
}

#domains .small-card h3, #features .small-card h3 {
    color: var(--primary-color);
    margin-bottom: 9px;
    font-size: 17px;
}

#domains .small-card p, #features .small-card p {
    font-size: 0.9em;
    
}

#domains .small-card:hover , #features .small-card:hover {
    transform: scale(1.05);
    background-color: #e287bce0;
    color: #fff;
}
#domains .small-card:hover h3{
    color: white;
}
#features .small-card:hover h3{
    color: white;
}

footer {
    background-color: #db7cdfce;;
    color: var(--white-color);
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

footer .footer-logo {
    flex: 1;
}

footer .footer-logo img {
    max-width: 150px;
    margin-bottom: 10px;
}

footer .footer-goal {
    flex: 2;
    margin-left: 20px;
    margin-bottom: 20px;
}

footer .footer-links, footer .footer-social, footer .footer-address {
    flex: 1;
}

footer .footer-links h4, footer .footer-social h4, footer .footer-address h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

footer .footer-links ul, footer .footer-social ul, footer .footer-address ul {
    list-style: none;
    padding: 0;
}

footer .footer-links ul li, footer .footer-social ul li, footer .footer-address ul li {
    margin-bottom: 10px;
}

footer .footer-links ul li a, footer .footer-social ul li a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s;
}

footer .footer-links ul li a:hover, footer .footer-social ul li a:hover {
    color: var(--accent-color);
}

footer .footer-address p {
    margin: 0;
}

footer .footer-social ul li a img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.3s;
}

footer .footer-social ul li a:hover img {
    transform: scale(1.2);
}


/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}





@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {

  .card-content {
    padding: 15px;
  }

  .card-content h1 {
    font-size: 22px;
  }

  .card-content p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
 

  .card-content h1 {
    font-size: 20px;
  }

  .card-content p {
    font-size: 14px;
  }
}

.main {
  text-align: center;
  margin-top: 20px;
  color: #c5679e;
}



  /* button style  */

  .futuristic-button {
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    color: #000000;
    background: transparent;
    border: 2px solid #000000;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.5s;
    overflow: hidden;
    letter-spacing: 2px;
}

.futuristic-button:hover {
    color: #000;
    background: #fff;
    box-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
    transition-delay: 0.1s;
}

.futuristic-button:before, .futuristic-button:after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: 0.5s;
    z-index: 1;
}

.futuristic-button:before {
    transform: rotate(45deg);
}

.futuristic-button:after {
    transform: rotate(-45deg);
}

.futuristic-button:hover:before, .futuristic-button:hover:after {
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.button{
    position:relative;
    display:inline-block;
    margin:20px;
  }
  
  .button a{
    color:white;
    font-family:Helvetica, sans-serif;
    font-weight:bold;
    font-size:36px;
    text-align: center;
    text-decoration:none;
    background-color:#FFA12B;
    display:block;
    position:relative;
    padding:10px 20px;
    
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    text-shadow: 0px 1px 0px #000;
    filter: dropshadow(color=#000, offx=0px, offy=1px);
    
    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    box-shadow:inset 0 1px 0 #FFE5C4, 0 10px 0 #915100;
    
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
  .button a:active{
    top:10px;
    background-color:#F78900;
    
    -webkit-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
    -moz-box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3pxpx 0 #915100;
    box-shadow:inset 0 1px 0 #FFE5C4, inset 0 -3px 0 #915100;
  }
  
  .button:after{
    content:"";
    height:100%;
    width:100%;
    padding:4px;
    position: absolute;
    bottom:-15px;
    left:-4px;
    z-index:-1;
    background-color:#2B1800;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
  }
  
#background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  
  .circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    animation: move 10s infinite linear;
  }
  .square {
    position: absolute;
    height: 50px;
    width: 50px;
    opacity: 0.7;
    animation: move 10s infinite linear;
  }
  .triangle {
      width: 0;
      height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-bottom: 50px solid rgba(240, 28, 240, 0.5);
    opacity: 0.7;
    animation: move 10s infinite linear;
  }
  .triangle-down {
      width: 0;
      position: absolute;
      height: 0;
      border-left: 25px solid transparent;
      border-right: 25px solid transparent;
      border-top: 50px solid #f75a5ade;
    opacity: 0.7;
    animation: move 10s infinite linear;
  }
  
  @keyframes move {
    0% {
      transform: translateY(100vh);
    }
    100% {
      transform: translateY(-100vh);
    }
  }

  .circle:nth-child(1) {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.5);
    left: 10%;
    animation-duration: 10s;
  }
  .square {
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 0, 0.5);
    left: 10%;
    animation-duration: 15s;
  }
  
  
  .circle:nth-child(2) {
    width: 100px;
    height: 100px;
    background: rgba(0, 255, 0, 0.5);
    left: 30%;
    animation-duration: 20s;
    animation-delay: 0s;
  }
  
  .circle:nth-child(4) {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 0, 0.5);
    left: 70%;
    animation-duration: 15s;
    animation-delay: 0s;
  }
  
  /* Media Queries */

@media (max-width: 1000px){
  nav{
    padding: 0 40px 0 50px;
  }
}
@media (max-width: 920px) {
  nav .menu-btn i{
    display: block;
  }
  #click:checked ~ .menu-btn i:before{
    content: "\f00d";
  }
  nav ul{
    position: fixed;
    top: 80px;
    left: -100%;
    background: #9874eb; 
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
    z-index: 1;
  }
  #click:checked ~ ul{
    left: 0;
  }
  nav ul li{
    width: 100%;
    margin: 40px 0;
  }
  nav ul li a{
    width: 100%;
    margin-left: -100%;
    display: block;
    font-size: 20px;
    
  }
  #click:checked ~ ul li a{
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover{
    background: none;
    color: rgb(240, 154, 25);
  }

  /* section home  */
  #home {
    flex-direction: column;
}

#home .content {
    max-width: 100%;
    text-align: center;
}

#home .content h1 {
    font-size: 1.5em;
}

#home .content p {
    font-size: 0.9em;
}

#home img {
    max-width: 100%;
}

/* about section  */
#about .about-content {
  flex-direction: column;
  text-align: center;
}

#about .about-content .text {
  max-width: 100%;
  margin-bottom: 20px;
}

#about .about-content img {
  max-width: 80%;
  margin-bottom: 20px;
}
 .about_container {
    padding: 15px;
    padding-top: 60px;
    display: block;
  }

  .card-content h1 {
    font-size: 20px;
    padding: 15px;
  }

  .card-content p {
    font-size: 14px;
  }
  .about_container img{
    max-width: 100%;
    margin-bottom: 20px;
  }


/* footer section  */
footer {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

footer .footer-logo,
footer .footer-goal,
footer .footer-links,
footer .footer-social,
footer .footer-address {
  margin-left: 0;
  margin-bottom: 20px;
}

footer .footer-logo img {
  max-width: 100px;
}

footer .footer-goal {
  max-width: 100%;
}

.button {
  margin: 15px;
}

.button a {
  font-size: 28px;
  padding: 8px 16px;
}


 /* end of medieaqury  */
} 
