:root {
--Light-color: rgb(37 99 235 / 1)
;

}

* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
padding: 0;
margin: 0;
}

html {
scroll-behavior: smooth;
}



body {
font-family: 'Space Grotesk', sans-serif;
height: 100vh;
width: 100%;
margin: 0;
padding: 0;
overflow-x: hidden; 
}

.container {
padding-left: 60px;
padding-right: 60px;
margin-left: auto;
margin-right: auto;
}

/* Small */
@media (min-width: 768px) {
.container {
width: 750px;
}
}
/* Medium */
@media (min-width: 992px) {
.container {
width: 970px;
}
}
/* Large */ 
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}

header {
display: flex;
justify-content: space-around;
color: var(--Light-color);
align-items: center;
width: 100%;
position: relative;
height: 80px;
background-color: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
    z-index: 1000;
}
header nav {
  position: absolute; 
  left: 50%;
  top: 50%;
  gap: 10px;
  transform: translate(-50%, -50%); 
}
header .container .h-logo i { 
font-size: 35px;
cursor: pointer;
color: #3664F4;
}
header .container .h-logo .data{ 
color: #333;
font-size: 45px;
} 
header .container .h-logo {
  margin-right: 10px;
  margin-left: -10px;
  margin-bottom:13px;
}
header .container {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  width: 100%; 
  max-width: 1170px; 
  padding-left: 15px;
  padding-right: 15px;
}

.h-logo {
display: flex;
align-items: center;
gap: 10px;
cursor: pointer;

}

.h-menu {
display: flex;
align-items: center;
gap: 20px; 
color: var(--font-color);

}

.h-menu nav ul {
display: flex;
gap: 7px; 
color: var(--font-color);
list-style: none;
}




.start button {
background: black;
color: var(--background-color);
border: none;
padding: 8px 16px;
border-radius: 6px;
color: white;
cursor: pointer;
font-weight: 600;
transition: background-color 0.3s ease, color 0.3s ease;
}
.start button:hover {
  background-color: #1343f0;
  color: white;
}
nav {
  display: flex;
  align-items: center;  
  justify-content: center; 
  gap: 20px;
}
nav ul {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  list-style: none;

}

nav li {
  display: flex;
  align-items: center;
  justify-content: center;
}

nav a {
  display: flex;   
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  color: #000;
  line-height: 1.4;  
  white-space: nowrap;
  transition: color 0.3s ease;
    transition: transform 0.3s ease;

}
nav a:hover {
color: #124fd1;
transform: translateY(-5px);

} 
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100; 
}

.burger span {
  display: block;
  height: 3px;
  background: black; 
  border-radius: 3px;
  transition: all 0.3s ease;
}
.mobile-started {
  display: none;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
 position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
  cursor: pointer;
  transition: top 0.4s ease;  }
header {
  width: 100%;
}
 .h-menu {
    position: absolute;
    top: 0px;  
    right:  20px;
    left: 0px;
    width: 100%;
    transform: translateY(-250%);
    transition: transform 0.3s ease;
    flex-direction: row;   
    justify-content: center; 
    align-items: center;
    padding: 15px 0;
    font-size: 14px;
background: linear-gradient(to bottom right, #1343f0, #5571c7);
    height: 80px;
 }



.start button {
    display: none;
}
  .start {
    display: none;
  }
.h-menu nav ul li a:hover {
  color: white;
  }
  #menu-toggle:checked ~ .h-menu {
    transform: translateY(0);
  }

  
  #menu-toggle:checked + .burger span {
    background: white; 
  }
  #menu-toggle:checked + .burger {
  top: 100px;
}
  
  #menu-toggle:checked + .burger span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  #menu-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px; 
    height: 22px;  
    cursor: pointer;
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    z-index: 1001;
    transition: all 0.3s ease;
  }
  .mobile-started {
    position: absolute;
    top: 50%;
    right: 60px; 
    transform: translateY(-50%);
    margin-left: 0;
  }
.start button:hover {
background-color: white;
color: black;
 }

  .h-menu {
    position: absolute;
    top: 80; 
    left: 0;
    width: 100%;
    background-color: #1343f0;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    flex-direction: row;
    align-items: center;
    padding: 20px 0;
    z-index: 1000;
    height: 80px;
  }

  .h-menu nav ul {
    flex-direction: row;
    gap: 20px;
  }
.h-menu nav ul li a:hover  {
  color:white;
}
  .start {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px; 
  }

  .burger span {
    display: block;
    height: 3px;      
    width: 100%;      
    background: rgb(0, 0, 0);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  #menu-toggle:checked + .burger {
    justify-content: flex-start;
    left: 45px; 
  }

  #menu-toggle:checked ~ .h-menu {
    transform: translateY(0);
  }

  #menu-toggle:checked + .burger span {
    background: white;
  }

  #menu-toggle:checked + .burger span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  #menu-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

.hero {
  height: 70vh;              
  display: flex;
  justify-content: center;      
  align-items: center;         
  text-align: center;           
  color: white;
background: linear-gradient(135deg, #1e3a8a 0%, #0ea5e9 50%, #22d3ee 100%);
}

.hero .container .hero-text p {
    font-size:  28px;
    color: rgba(255, 255, 255, 0.7); 
    font-weight: 800;
}
.hero .container .hero-text h1 {
text-align: center;
margin-left: 230px;
  max-width: 600px;            
  padding: 0 20px;    
  white-space: nowrap;  
  position: relative;
  font-size: 70px;     
  left: -160px;
  top: -20px;    
}

.plans {
  padding: 60px 0;
  background: #f5f6fa;
  text-align: center;
}
.plans-cards .basic,.Professional,.Enterprise {
    height: 480px;
}
.plans-cards .Enterprise ul li {
    margin-bottom: 30px;
}
.plans-cards .Professional ul li{
    margin-bottom: 30px;
}
.plans-cards .basic ul li {
    margin-bottom: 30px;

}
.plans h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #00363c;
}

.plans-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plan-btn:nth-child(1) {
}
.plans-cards > div {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plans-cards > div:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.basic-info, .Professional-info, .Enterprise-info {
  margin-bottom: 25px;
}

.basic-info h3, .Professional-info h3, .Enterprise-info h3 {
  font-size: 28px;
  color: #00363c;
  margin-bottom: 10px;
}
.plans-cards .Professional {
    border: 2px solid #0ea5e9;
}
.basic-info span, .Professional-info span, .Enterprise-info span {
  font-size: 24px;
  font-weight: 700;
  color: #3664F4;
}

.basic-info span + span, .Professional-info span + span, .Enterprise-info span + span {
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-left: 5px;
}
.Popular-Plan {
    display:inline-block;
    width: 125px;
    position: relative;
    height: 35px;
    border-radius: 35px ;
    padding-top: 9px;
    background-color: white;
    top: -89px;
    border: 2px solid #0ea5e9;
    right: -23px;
}
.Popular-Plan h4{
    color: #0ea5e9;
    
}
.plans-cards ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
}

.plans-cards ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 16px;
  color: #555;
}

.plans-cards ul i.fa-x {
  color: #f44336;
}

.plans-cards ul i.fa-check {
  color: #3664F4;
}

.plan-btn {
  display: inline-block;
  padding: 10px 25px;
  background: #3664F4;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}
.plan-btn-f {
      display: inline-block;
  padding: 10px 25px;
  background: gray;
  color: white;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  cursor: default;
}
.plan-btn:hover {
  background: #124fd1;
}

/* Responsive */
@media (max-width: 992px) {
  .plans-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* --------- Responsive for Tablet (768px - 1024px) --------- */
@media (max-width: 1024px) and (min-width: 769px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  header {
    height: 70px;
  }

  .h-logo .data {
    font-size: 35px;
  }

  .h-logo i {
    font-size: 28px;
  }

  nav ul {
    gap: 15px;
  }
.h-menu nav ul {
        display: flex;
    flex-direction: row;
        gap: 0px;
        margin-left: -2px;
}

  nav a {
    font-size: 18px;
  }

  .hero {
    height: 60vh;
    padding: 0 20px;
  }

  .hero .hero-text h1 {
    font-size: 50px;
    left: 0;
    top: 0;
    max-width: 100%;
    white-space: normal;
  }

  .hero .hero-text p {
    font-size: 22px;
  }
  .plans h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .plans-cards {
    gap: 15px;
  }

  .plans-cards > div {
    width: 280px;
    padding: 25px 15px;
  }

  .basic-info h3, .Professional-info h3, .Enterprise-info h3 {
    font-size: 24px;
  }

  .basic-info span, .Professional-info span, .Enterprise-info span {
    font-size: 20px;
  }

  .plans-cards ul li {
    font-size: 15px;
  }

  .plan-btn {
    padding: 8px 20px;
  }
}

/* --------- Responsive for Mobile (up to 768px) --------- */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }


header {
display: flex;
justify-content: space-around;
color: var(--Light-color);
align-items: center;
width: 100%;
position: relative;
height: 80px;
background-color: white;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.9);
z-index: 1000;
}
  
  header nav {
  position: absolute; 
  left: 50%;
  top: 50%;
  gap: 10px;
  transform: translate(-50%, -50%); 
}

  .h-logo .data {
    font-size: 28px;
  }

  .h-logo i {
    font-size: 25px;
  }

  nav {
    width: 100%;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin: 0;
  }

  nav a {
    font-size: 16px;
  }

  .hero {
    height:80vh;
    padding: 0 10px;
  }

  .hero .container .hero-text h1 {
        font-size: 28px;
        white-space: normal;
        text-align: center;
        left: -120px;
        top: -41px;
        margin-bottom: 10px;
        position: relative; 

  }

      .hero .container .hero-text p {
     font-size: 16px;
    white-space: normal;
    line-height: 1.5;
    text-align: center;
      }
  .plans h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
.h-menu nav ul {
    display: flex;
    flex-direction: row;
        gap: 0px;
        margin-left: -2px;
}
  .plans-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .plans-cards > div {
    width: 90%;
    padding: 20px 15px;
  }

  .basic-info h3, .Professional-info h3, .Enterprise-info h3 {
    font-size: 20px;
  }

  .basic-info span, .Professional-info span, .Enterprise-info span {
    font-size: 18px;
  }

  .plans-cards ul li {
    font-size: 14px;
    gap: 8px;
  }

  .plan-btn {
    padding: 7px 18px;
  }
}
