/* ===============================
   GLOBAL VARIABLES (THEME SYSTEM)
   =============================== */
   :root {
    --bg-main: #141414;
    --bg-navbar: #131313;
    --bg-card: #111111;
  
    --text-main: #ffffff;
    --text-muted: #e9e9e9;
  
    --accent: #f77062;
    --accent-hover: #4837ff;
  }
  
  .light {
    --bg-main: #ffffff;
    --bg-navbar: #f5f5f5;
    --text-main: #111;
    --text-muted: #555;
    --accent: #f77062;
    --accent-hover: #21d4fd;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background: #f5f5f5;
    padding: 20px;
}

body > * {
    margin-bottom: 10px;
}

/* Main container */
.content-section {
    width: 100%;
    margin: auto;
    background: white;
    padding: 30px;
    display: flex;
    gap: 30px;
    align-items: center;
}

/* Text area */
.text-zone {
    flex: 1;
}

.title {
    font-size: 24px;
    margin-bottom: 15px;
}

.description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Image area */
.image-zone {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-zone img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

.page {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-top: 80px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
    .content-section {
        flex-direction: column;
        text-align: center;
    }

    .title {
        font-size: 20px;
    }

    .description {
        font-size: 15px;
    }
}



.navbar {
    position: fixed;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: calc(100% - 40px);
    padding: 12px 24px;
    background: var(--bg-main);
}

.navbar__container {
   
    display: flex;
    align-items: center;
    justify-content: space-between; 
}

/* Logo on the right */
#navbar__logo {
    order: 1;
}

.logo-img {
    height: 40px;
    object-fit: contain;
}

/* Button on the left */
.button {
    order: 2;
    padding: 10px 22px;
    border-radius: 2px;
    background: var(--accent);
    color: var(--bg-main);
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;

    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.button:hover {
    background: #c25048;
}


/* HERO SECTION CSS*/

.main{
    background-color: var(--bg-main);
    margin-top: 90px;
}

.main__container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: 0 auto;
    background-color: var(--bg-main);
    width: 100%;
    max-width: 1300px;
    padding: 30px;
}


.main__content h1{
    font-size: 3.5rem;
    background-color: #ca443a;
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content h2{
    font-size: 3rem;
    background-color: #456aab; 
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
}

.main__content p {
    margin-top: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-main);
}

.main__btn{
    font-size: 1rem;
    background-image: linear-gradient(to top,#f77062 0%,#fe5196 100%);  
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    margin-top: 2rem;
    cursor: pointer;
    position: relative;
    transition: all 0.35s;
    outline: none;
}

/*
.main__btn a{
    position: relative;
    z-index: 2;
    color: var(--text-main);
    text-decoration: none;
}

.main__btn:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-hover);
    transition: all 0.35s;
    border-radius: 4px;
}

.main__btn:hover {
    color: var(--text-main);
}

.main__btn:hover:after {
   width: 100%;
}
*/



.main__img--container{
    text-align: center;
}

#main__img {
    height: 90%;
    width: 90%;
}


/* Mobile Responsive */

@media screen and (max-width: 768px){
    .main__container{
       display: grid;
       grid-template-columns: auto;
       align-items: center;
       justify-self: center;
       width: 100%;
       margin: 0 auto;
    }


    .main__content{
        text-align: center;
        margin-bottom: 4rem;
    }

    .main__content h1{
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .main__content h2{
        font-size: 3rem;
    }

    .main__content p{
        margin-top: 1rem;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px){
  
    .main__content h1{
        font-size: 2rem;
        margin-top: 3rem;
    }

    .main__content h2{
        font-size: 2rem;
    }

    .main__content p{
        margin-top:2rem;
        font-size: 1.5rem;
    }

    .main__btn{
        padding: 12px 36px;
        margin: 2.5rem 0;
    }
}




/* FOOTER CSS */

.footer__container {
    background-color: var(--bg-main);
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   }

   #footer__logo{
    color: var(--text-main);
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
   }

   .footer__links {
    width: 100%;
    max-width: 1000px;
    display: flex;
    justify-content: center;
   } 

   .footer__link--wrapper{
    display: flex;
   }

   .footer__link--items {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 16px;
    text-align: left;
    width: 160px;
    box-sizing: border-box;
   }


   .footer__link--items h2{
    margin-bottom: 16px;
   }

   .footer__link--items > h2{
    color: var(--text-main);
   }

   .footer__link--items a{
    color: var(--text-main);
    text-decoration: none;
    margin-bottom: 0.5rem;
   }
   
   .footer__link--items a:hover{
    color: var(--text-muted);
    transition: 0.3s ease-out;
   }
   
   /* Social Icons */

   .social__icon--links {
    color: var(--text-muted);         
    font-size: 24px;     
    margin: 0 10px;
    text-decoration: none;
    }
  

   .social__media{
    max-width: 1000px;
    width: 100%;
   }

   .social__media--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 40px auto 0 auto;
   }

   .social__icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 240px;
   }

   .social__logo {
    Color: var(--text-main);
    justify-self: self-start;
    margin-left: 20px;
    cursor: pointer;
    text-decoration: none;
    font-size: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
   }

   .website__rights{
    color: var(--text-main);
   }

   @media screen and (max-width: 820px){
    .footer__links{
        padding-top:2rem;
    }

    #footer__logo{
        margin-bottom: 2rem;
    }

    .website__rights{
        margin-bottom: 2rem;
    }

    .footer__link--wrapper{
        flex-direction: column;
    }

    .social__media--wrap{
        flex-direction: column;
    }
   }

   @media screen and (max-width: 480px){
    .footer__link--items{
        margin: 0;
        padding: 10px;
        width: 100%;
    }

   }

   

  
  

  
  .pricing {
    max-width: 100%;
    margin: 70px auto ;
    padding: 0 40px;
    text-align: center;
  }
  
  .pricing h1 {
    font-size: 42px;
    margin-bottom: 60px;
  }
  
  .subtitle {
    color: #666;
    margin-bottom: 30px;
  }
  
  .toggle {
    display: inline-flex;
    background: #eee;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 50px;
  }
  
  .toggle button {
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    background: transparent;
  }
  
  .toggle button.active {
    background: white;
    font-weight: bold;
  }
  
  .toggle span {
    font-size: 12px;
    color: #2e7d32;
    margin-left: 5px;
  }
  
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, 260px);
    gap: 10px;
    justify-content: center; /* center the row */
  }
  
  .card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;

    display: flex;
    flex-direction: column;
  }
  
  .card h2 {
    margin-top: 0;
  }
  
  .price {
    font-size: 42px;
    font-weight: bold;
    margin: 10px 0;
  }
  
  .billing {
    color: #777;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .card ul {
    list-style: none;
    padding: 0;
  }
  
  .card ul li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
  }
  
  .card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: green;
  }
  
  #no::before {
    content: "✕";
    color: red;
}

  .btn {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    margin-top: auto;
    font-size: 16px;
  }
  
  .highlight {
    border: 2px solid #ff8a50;
  }
  
  .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff8a50;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
  }
  
  .dark {
    background: #111;
    color: white;
  }
  
  .dark .billing,
  .dark ul li::before {
    color: #aaa;
  }
  
  .dark .btn {
    background: white;
    color: black;
  }
  
  .btn.light {
    background: white;
  }

  