/* Global */
body {
  margin: 0;
  font-family: Inter, sans-serif;
  background: #0b0f19;
  color: white;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 999;
  transition: background 0.3s;
}
.header.scrolled {
  background: rgba(10, 15, 25, 1);
}
.logo {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #5a7cff;
}
nav a {
  margin-left: 25px;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
nav a:hover {
  color: #5a7cff;
}

/* Hero */
.hero {
  padding-top: 110px;
  padding-bottom:100px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0b0f19, #1a2540);
  position: relative;
  overflow: hidden;
}
#bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1; /* behind the text */
}
.hero-inner {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin:auto;
  padding:20px;
}
.hero h1 {
  font-size: 70px;
  max-width: 900px;
  margin: auto;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
.hero p {
  margin-top: 20px;
  color: #aaa;
  font-size: 20px;
}
.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:30px;
}

/* Mobile Fix */

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
width:80%;
max-width:320px;
text-align:center;
}

}
.btn-primary {
  background: #5a7cff;
  padding: 14px 28px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(90,124,255,0.3);
}
.btn-primary:hover {
  background: #7a92ff;
  box-shadow: 0 12px 30px rgba(122,146,255,0.5);
}
.btn-outline {
  border: 1px solid #555;
  padding: 14px 28px;
  border-radius: 10px;
  margin-left: 10px;
  color: #aaa;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}
.btn-outline:hover {
  color: white;
  border-color: #5a7cff;
}

/* Impact Stats */
.impact {
  padding: 120px 10%;
  text-align: center;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.stat h3 {
  font-size: 50px;
  margin-bottom: 10px;
  color: #5a7cff;
  font-weight: 700;
}

/* Platforms 3D Canvas & Diagram */
.platforms {
  padding: 100px 10%;
  text-align: center;
  background: #111827;
  position: relative;
}

/* Diagram container responsive */
.platforms.diagram-container {
  display: flex;
  flex-direction: column;           /* stacked on small screens */
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  position: relative;               /* for absolute text */
}

/* Side-by-side on large screens */
@media (min-width: 900px) {
  .platforms.diagram-container {
    flex-direction: row;
    align-items: center;
  }
}

/* Canvas styling */
#platform-diagram {
  flex: 1 1 400px;
  max-width: 500px;
  height: 450px;
  border-radius: 20px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(90,124,255,0.2);
}

/* Text wrapper styling */
.diagram-wrapper {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
}

/* Overlapping text option */
.diagram-wrapper.overlap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  pointer-events: none;
}

/* Individual labels for diagram (optional for circle names) */
.diagram-label {
  position: absolute;
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  pointer-events: none;
}

/* Government Parallax Cards */
.government {
  padding: 100px 10%;
  text-align: center;
}
.gov-desc {
  max-width: 750px;
  margin: auto;
  color: #aaa;
  font-size: 18px;
}
.gov-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  margin: 20px;
  cursor: pointer;
  transition: all 0.4s;
}
.gov-card:hover {
  transform: translateY(-15px);
  background: rgba(90,124,255,0.2);
}

/* Carousel */
.carousel {
  padding: 100px 10%;
  background: #0d1326;
  text-align: center;
}
.carousel-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-top: 20px;
  scroll-behavior: smooth;
}
.carousel-card {
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  flex-shrink: 0;
  cursor: pointer;
  transition: all 0.4s;
  box-shadow: 0 8px 25px rgba(90,124,255,0.2);
}
.carousel-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(90,124,255,0.25);
  box-shadow: 0 12px 35px rgba(90,124,255,0.35);
}

/* Industries Map */
.industries {
  padding: 100px 10%;
  text-align: center;
  background: #111827;
}
.industries-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.industry-bubble {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 25px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(90,124,255,0.2);
    position:relative;
    z-index:1;
}
.industry-bubble:hover {
  transform: scale(1.2);
  box-shadow: 0 10px 30px rgba(90,124,255,0.35);
}

/* Founder */
.founder {
  padding: 100px 10%;
  text-align: center;
  background: #111827;
}
.founder-name {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #5a7cff;
}

/* CTA Section */

.cta{
padding:100px 20px;
text-align:center;
background:#0d1326;
}

.cta h2{
font-size:36px;
margin-bottom:30px;
}

/* Button styling */

.cta .btn-primary{
font-size:20px;
padding:18px 36px;
display:inline-block;
}

/* Mobile Fix */

@media(max-width:768px){

.cta{
padding:70px 20px;
}

.cta h2{
font-size:28px;
line-height:1.3;
}

.cta .btn-primary{
width:80%;
max-width:320px;
}

}

/* Footer */
footer {
  padding: 30px;
  text-align: center;
  background: #000;
  color: #777;
}

/* Responsive */
@media(max-width:768px){
  .hero h1{font-size:42px;}
  .hero p{font-size:16px;}
  .stats h3{font-size:36px;}
  .carousel-card{min-width:200px;}
}

/* Leadership Section */
.leadership {
  padding: 80px 10%;
  background: #0b0f19;
  color: #fff;
  text-align: center;
}

.leadership h2 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.leadership p {
  font-size: 18px;
  margin-bottom: 50px;
  color: #ccc;
}

/* Container for cards */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

/* Each card */
.team-card {
  flex: 1 1 18%; /* 5 cards per row on desktop */
  min-width: 250px; /* prevents too narrow cards */
  background: #0b0f19;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-title {
  font-size: 18px;
  font-weight: 700;
  color: #00bfff;
  margin-bottom: 4px;
}

.team-role {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 13px;
  color: #aaa;
  margin-bottom: 10px;
}

.team-metrics span {
  display: inline-block;
  font-size: 12px;
  color: #fff;
  margin-right: 10px;
}

/* Bar and subtext */
.team-bar {
  background: #1f2230;
  height: 6px;
  border-radius: 3px;
  margin: 6px 0 12px 0;
}

.team-bar .bar {
  height: 100%;
  background: #00bfff;
  border-radius: 3px;
}

.team-subtext {
  font-size: 14px;
  color: #888;
  margin-top: 30px;
  font-style: italic;
  text-align: center;
}

/* Responsive breakpoints */
@media screen and (max-width: 1200px) {
  .team-card {
    flex: 1 1 30%; /* 3 cards per row */
  }
}

@media screen and (max-width: 900px) {
  .team-card {
    flex: 1 1 45%; /* 2 cards per row */
  }
}

@media screen and (max-width: 600px) {
  .team-card {
    flex: 1 1 100%; /* 1 card per row */
  }
}

/* Header */
.header {
  background: #0b0f19;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  padding: 15px 20px;
}
.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .logo img {
  height: 50px;           /* Adjust as needed */
  width: auto;
  object-fit: contain;
}
.header .logo span {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #00bfff;
}
.header nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  font-weight: 500;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* Responsive Nav */
@media screen and (max-width: 768px) {
  .header nav {
    position: absolute;
    top: 60px;
    right: 0;
    background: #0b0f19;
    width: 200px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
  }
  .header nav a { margin: 10px 20px; }
  .menu-toggle { display: block; }
}

/* Platform Ecosystem Section */
.platforms { text-align:center; padding:120px 20px 60px; }
.platforms h2 { font-size:36px; font-weight:700; margin-bottom:10px; }
.platforms p { color:#aaa; font-size:16px; margin-bottom:50px; }

.ecosystem-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: auto;
}

.center-circle {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 180px; height: 180px;
  background: #00bfff;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

.satellite {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 130px;
  height: 130px;
  transform: translate(-50%, -50%); /* center at pivot */
}
.circle {
  width: 130px;
  height: 130px;
  background: #1f2230;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;      /* <-- add this */
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}
.circle span {
  font-size: 12px;
  margin-top: 6px;
}
.circle-text {
  font-size: 14px;
}
.circle:hover { transform: scale(1.15); background:#22263c; }

/* Mobile Nav */
@media screen and (max-width: 768px) {
  .header nav {
    position: absolute;
    top: 60px;         /* below header */
    right: 0;
    background: #0b0f19;
    width: 200px;
    display: none;     /* hidden by default */
    flex-direction: column;
    padding: 10px 0;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
  }
  .header nav a {
    margin: 10px 20px;
    font-size: 16px;
  }
  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }

  /* Optional: animate menu open */
  .header nav.show {
    display: flex;
    animation: slideDown 0.3s ease forwards;
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Contact Section */
.contact-section {
  padding: 100px 20px;
  background: #111827;
  color: #fff;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-container {
  max-width: 1100px;
  width: 100%;
}

/* Heading & Paragraph */
.contact-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}
.contact-section p {
  font-size: 18px;
  color: #aaa;
  margin-bottom: 50px;
}

/* Wrapper: form + info */
.contact-wrapper {
  display: flex;
  gap: 50px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Form Styling */
.contact-form {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(90,124,255,0.2);
  text-align: left;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 16px;
  resize: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}
.contact-form button {
  width: fit-content;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: #5a7cff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #7a92ff;
}

/* Contact Info Styling */
.contact-info {
  flex: 1 1 350px;
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(90,124,255,0.2);
  text-align: left;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.contact-info p {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Map placeholder */
.map-placeholder {
  margin-top: 20px;
  height: 200px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #aaa;
  font-style: italic;
}

/* Responsive: Mobile */
@media screen and (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .contact-form,
  .contact-info {
    text-align: center;
  }
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-logo span {
  font-size: 14px;
  color: #aaa;
  font-weight: 600;
}

/* Footer */
footer {
  background: #0b0f19;
  color: #ccc;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  position: relative;
  z-index: 10;
}

footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

footer .footer-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

footer .footer-logo span {
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}

footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 5px;
}

footer .footer-links a {
  color: #5a7cff;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
  font-size: 14px;
}

footer .footer-links a:hover {
  color: #00bfff;
  text-decoration: underline;
}

footer p {
  margin-top: 15px;
  color: #777;
  font-size: 13px;
}

/* Responsive: Mobile Footer */
@media screen and (max-width: 600px) {
  footer .footer-logo {
    gap: 8px;
  }
  footer .footer-links {
    flex-direction: column;
    gap: 8px;
  }
}

.industry-bubble {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  padding: 25px 40px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  box-shadow: 0 5px 20px rgba(90,124,255,0.2);
}

.industry-bubble:hover {
  transform: scale(1.2);
  box-shadow: 0 0 30px #5a7cff;
}

/* Tooltip styling */
.tooltip {
  position: absolute;
  bottom: auto; /* appear below bubble */
  top:-45px;
  left: 50%;
  transform: translateX(-50%) scale(0);
  background: rgba(0, 191, 255, 0.95);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
}

/* Optional small arrow below tooltip */
.tooltip::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: transparent transparent rgba(0, 191, 255, 0.95) transparent;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.footer-social a {
  color: #00bfff;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.footer-social a:hover {
  color: #7a92ff;
  transform: scale(1.2);
}

/* Clients Section */
.clients {
  padding: 80px 20px;
  background: #0b0f19; /* matching your dark theme */
  color: #fff;
  text-align: center;
}

.clients h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.clients p {
  font-size: 1.1rem;
  color: #cfd1d8;
  margin-bottom: 50px;
}

/* Logos Grid */
.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.client-card {
  background: #14182b;
  border-radius: 12px;
  padding: 20px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.client-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.client-card img {
  max-width: 100px;
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.client-card span {
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 768px) {
  .client-card {
    width: 140px;
    padding: 15px;
  }

  .client-card img {
    max-width: 80px;
    max-height: 60px;
    margin-bottom: 10px;
  }

  .clients h2 {
    font-size: 2rem;
  }

  .clients p {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .client-card {
    width: 120px;
    padding: 12px;
  }

  .client-card img {
    max-width: 70px;
    max-height: 50px;
  }

  .clients h2 {
    font-size: 1.6rem;
  }

  .clients p {
    font-size: 0.95rem;
  }
}
.case-studies {
  padding: 80px 10%;
  background: #0d1326;
  color: #fff;
  text-align: center;
}

.case-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.case-card {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 20px;
  min-width: 250px;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(90,124,255,0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.case-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(90,124,255,0.25);
  box-shadow: 0 12px 35px rgba(90,124,255,0.35);
}

/* TECHNOLOGY STACK */

.techstack{
padding:100px 20px;
text-align:center;
background:#0e1424;
}

.techstack h2{
font-size:40px;
margin-bottom:10px;
}

.techstack p{
color:#aaa;
margin-bottom:50px;
}

.tech-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

.tech-card{
background:#111a30;
padding:30px;
border-radius:10px;
transition:0.3s;
}

.tech-card i{
font-size:40px;
color:#4db5ff;
margin-bottom:15px;
}

.tech-card:hover{
transform:translateY(-8px);
background:#162040;
}



/* PROCESS SECTION */

.process{
padding:100px 20px;
text-align:center;
background:#0b0f19;
}

.process h2{
font-size:40px;
margin-bottom:10px;
}

.process p{
color:#aaa;
margin-bottom:60px;
}

.process-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
max-width:1100px;
margin:auto;
}

.process-step{
background:#111a30;
padding:30px;
border-radius:10px;
position:relative;
transition:0.3s;
}

.process-number{
width:50px;
height:50px;
border-radius:50%;
background:#4db5ff;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-weight:bold;
margin:0 auto 15px auto;
font-size:20px;
}

.process-step:hover{
transform:translateY(-8px);
background:#162040;
}

.digital-impact{
padding:80px 20px;
text-align:center;
background:#0f172a;
color:#fff;
}

.digital-impact h2{
font-size:36px;
margin-bottom:10px;
}

.digital-impact p{
color:#cbd5f5;
margin-bottom:40px;
}

.impact-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:25px;
max-width:1000px;
margin:auto;
}

.impact-card{
background:#111827;
padding:30px 20px;
border-radius:10px;
transition:all .3s ease;
border:1px solid rgba(255,255,255,0.05);
}

.impact-card:hover{
transform:translateY(-6px);
background:#1f2937;
}

.impact-card h3{
font-size:34px;
margin-bottom:10px;
color:#38bdf8;
}

.impact-card p{
font-size:15px;
color:#cbd5f5;
}

/* Services Section */

.services{
padding:100px 20px;
text-align:center;
background:#0e1424;
color:#fff;
}

.services h2{
font-size:38px;
margin-bottom:10px;
font-weight:700;
}

.services p{
color:#aaa;
margin-bottom:50px;
font-size:16px;
}

/* Grid Layout */

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
max-width:1100px;
margin:auto;
}

/* Service Card */

.service-card{
background:#111a30;
padding:35px 25px;
border-radius:15px;
transition:all .35s ease;
border:1px solid rgba(255,255,255,0.05);
position:relative;
overflow:hidden;
}

/* Hover Glow */

.service-card:hover{
transform:translateY(-10px);
background:#162040;
box-shadow:0 10px 30px rgba(90,124,255,0.25);
}

/* Icon */

.service-card i{
font-size:40px;
color:#5a7cff;
margin-bottom:18px;
display:block;
}

/* Title */

.service-card h3{
font-size:20px;
margin-bottom:12px;
font-weight:600;
}

/* Description */

.service-card p{
font-size:14px;
color:#cbd5f5;
line-height:1.5;
}

/* Responsive */

@media(max-width:768px){

.services{
padding:80px 20px;
}

.services h2{
font-size:30px;
}

}