
: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;
 }


  .h-menu nav ul {
   display: flex;
  justify-content: space-evenly; 
  align-items: center;
  gap: 0px;
    margin-left: -2px;
  }
.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 {
display: flex;
justify-content: center;
align-items: center;
position: relative; 
height: 90vh;
background: linear-gradient(to bottom right, #1343f0, #5571c7);
overflow: hidden;
}
.hero .container {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  width: 100%; 
  max-width: 1170px; 
  padding-left: 15px;
  padding-right: 15px;
}
.hero-text {
  color: white;
  max-width: 600px; 
}
.hero-text h1 {
  font-size: 60px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.guard {
  color: white; 
  font-size: 40px;
}
.first {
color: #292828;
font-size: 70px;
font-weight: 700;
}
.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.hero-text .started {
  display: inline-block;
  background: black;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.hero-text .started:hover {
  background: #ffffff; 
  color: black;
}
.hero-image img {
  max-width: 100%;
  height: auto;
  width: 500px;
  border-radius: 10px;
  padding: 25px; 
  background: rgba(255, 255, 255, 0.1); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.6); 
}

.hero .container .hero-text h1 span .f-data {
  color: white;
  font-size: 48px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-image img {
   margin-top: 20px  ;
    width: 80%;
    padding: 10px;
  }
} 
.services {
  padding: 20px 0;
  padding-bottom: 60px;
  background: #f9f9f9;
  text-align: center;
}

.services .main {
  font-size: 120px;
  margin-bottom: 20px;
  color: #3333338a;
  font-weight: 800;
  z-index: -1;
}
.services .main2 {
  font-size: 26px;
  margin-top: -60px;
  margin-bottom: 40px;
  color: #333;
  font-weight: 700;
  z-index: 1;
}

.services .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center; 
}

.services .card {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.services .card i {
  font-size: 40px;
  color: #3664F4;
  margin-bottom: 15px;
  cursor: pointer;

}

.services .card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.services .card p {
  font-size: 14px;
  color: #2e2e2e;
  font-weight:600;
  
  line-height: 1.5;
}
@media (max-width: 992px) {
  .services .cards {
    grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 576px) {
  .services .cards {
    grid-template-columns: 1fr;
  }
  .services .main {
    font-size: 80px;
  }

  .services .main2 {
    font-size: 24px;
    margin-top: -40px;
    margin-bottom: 20px;
  }
}

.Features {
  padding: 60px 0;
  background: #f9f9f9;
}

.Features .container {
  display: grid;
  grid-template-columns: 1fr 1fr; 
  align-items: center;
  gap: 40px;
}

.Features img {
  margin-left: -60px;
  border-radius: 20px;
  max-width: 100%;
  height: auto;
  width: 500px;
  border-radius: 10px;
  padding: 25px; 
  background: rgba(155, 148, 148, 0.308); 
  box-shadow: 0 4px 20px rgba(0,0,0,0.6); 
}

.Features .fe-info {
  text-align: left; 
}

.Features .fe-info h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 800;
}

.Features .fe-info p.main2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #333;
  font-weight: 600;
}

.Features .fe-info i {
  font-size: 22px;
  color: white; 
  background: #3664F4; 
  padding: 15px;
  border-radius: 50%; 
  margin-right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}
.Features .fe-info i:hover {
transform: translateY(-5px);
box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.Features .fe-info h3 {
  font-size: 22px;
  margin: 15px 0 10px;
  color: #222;
}
.Features .FGB {
  color: #1343f0;
}
.Features .fe-info p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  font-weight:  600;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
  .Features .container {
    grid-template-columns: 1fr; 
    text-align: center;
  }
  .Features .fe-info {
    text-align: center;
  }
}

.Testimonials {
background: linear-gradient(135deg, #124fd1, #3664f4, #5a8dfd);
  padding: 20px 0;
  padding-bottom: 60px;
  text-align: center;
}

.Testimonials .t-info h1{
color: white;
font-size: 46px;
font-weight: 700;
margin-bottom: 20px;
letter-spacing: 1.6px;
}

.Testimonials .t-info p {
  color: rgb(191 219 254);
  margin-bottom: 60px;
  font-size: 26px;
}



.Testimonials .cards {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 80px;
justify-items: center; 
}
@media (min-width: 768px) and (max-width: 992px) {
  .Testimonials .cards {
    display: grid !important; 
    grid-template-columns: 1fr !important; 
    gap: 40px !important;
    justify-items: center !important;
  }

  .Testimonials .card {
    width: 700px !important;
    max-width: 701px !important;
  }
   .Testimonials .t-info p {
    font-size: 22px !important;
  }
   .Testimonials .t-info i {
    font-size: 30px !important;
    left: 0;
   }

}


.Testimonials  .card  {
width: 325px;
background: rgba(255, 255, 255, 0.2); 
backdrop-filter: blur(10px); 
border-radius: 15px;
height: 275px;
border: 1px solid rgba(255, 255, 255, 0.3); 
transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.Testimonials  .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.Testimonials .card i {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 40px;
  color: white;

}
.Testimonials .card  h2 {
text-align: center;
color: rgb(191 219 254);
}
.Testimonials .card p {
text-align: center;
color: #333;
font-size: 14px;
margin-top: 4px;
}
.Testimonials .card .Client {
  margin-top: 20px;
  color:rgba(255, 255, 255, 0.74) ;
  font-size: 20px;
}

.finale {
  background: white;
  color: #333;
  text-align: center;
  padding: 40px 20px;
}
.finale h1 span {
  color: #1343f0;
  font-weight: 700;
  font-size: 40 px;
}
.finale p {
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.finale p span{
  color: #1343f0;
  font-weight: 700;
}
.finale h1 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 600;
}

.finale a {
  display: inline-block;
  background: #1343f0;
  color: white;
  padding: 16px 24px;
  border-radius: 6px;
  height: 50px;
  text-align: center;
  text-decoration: none;
  font-weight: 800;
  margin-right: 20px;
  margin-bottom: 20px;
}
.finale a:hover {
  background: #0d36b8;
  color: white;
}

footer {

  color: white;
  padding: 40px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1170px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-logo i {
  color: #3664F4;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #3664F4;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-social a {
  color: white;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #3664F4;
}

.footer-copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-links, .footer-social {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    font-size: 20px;
  }
}


