/* Base Styling */
:root {
  --primary-color: #00d2ff;
  --secondary-color: #fd4766;
  --accent-color: #7654fe;
  --dark-color: #333;
  --light-color: #f9f9f9;
  --gray-color: #777;
  --white-color: #fff;
  --gradient-bg: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--white-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styling */
header {
  background-color: var(--white-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  width: 200px;
  height: 50px;
}

nav ul {
  display: flex;
  align-items: center;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

nav ul li a:hover {
  color: var(--secondary-color);
}

nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

/* Hero Section */
#hero {
  background: linear-gradient(to right, #000428, #004e92);
  color: var(--white-color);
  padding: 160px 0 100px;
  text-align: center;
}

#hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

#hero h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 400;
}

#hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.primary-button {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.secondary-button {
  background-color: transparent;
  color: var(--white-color);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid var(--primary-color);
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-3px);
}

/* Section Heading */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-heading h2:after {
  content: '';
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-heading p {
  color: var(--gray-color);
  font-size: 1.1rem;
}

/* Features Section */
#features {
  padding: 100px 0;
  background-color: var(--light-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background-color: var(--white-color);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 25px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.feature-card p {
  color: var(--gray-color);
}

/* Benefits Section */
#benefits {
  padding: 100px 0;
  background-color: var(--white-color);
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px;
  align-items: center;
}

.benefit-text h3 {
  font-size: 1.6rem;
  margin-bottom: 30px;
  position: relative;
}

.benefit-text h3:after {
  content: '';
  position: absolute;
  width: 40px;
  height: 3px;
  background: var(--primary-color);
  bottom: -15px;
  left: 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.check-icon {
  width: 24px;
  height: 24px;
  margin-right: 15px;
  flex-shrink: 0;
}

.benefit-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-graphic {
  width: 100%;
  max-width: 400px;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(to right, #000428, #004e92);
  color: var(--white-color);
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
}

.cta-button {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: var(--white-color);
  color: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
  background-color: #111;
  color: var(--white-color);
  padding: 80px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 50px;
}

.footer-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 50px;
  height: 50px;
}

.footer-brand-info h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.footer-brand-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 50px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
  position: relative;
}

.footer-column h4:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background: var(--secondary-color);
  bottom: -10px;
  left: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: rgba(255,255,255,0.6);
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .header-container {
    padding: 15px 4%;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  #hero {
    padding: 140px 0 80px;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .header-container {
    flex-direction: column;
    padding: 20px 4%;
  }
  
  nav {
    margin-top: 20px;
    width: 100%;
  }
  
  nav ul {
    justify-content: center;
    width: 100%;
  }
  
  nav ul li {
    margin: 0 10px;
  }
  
  #hero {
    padding: 160px 0 80px;
  }
  
  #hero h1 {
    font-size: 2.2rem;
  }
  
  #hero h2 {
    font-size: 1.5rem;
  }
  
  .button-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .primary-button, .secondary-button {
    width: 80%;
  }
  
  .section-heading h2 {
    font-size: 1.8rem;
  }
  
  .footer-content, .footer-links {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 30px;
  }
}

@media screen and (max-width: 576px) {
  .logo-svg {
    width: 180px;
  }
  
  #hero h1 {
    font-size: 1.8rem;
  }
  
  #hero p {
    font-size: 1rem;
  }
  
  .feature-grid, .benefits-container {
    grid-template-columns: 1fr;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
}
