* {
  padding: 0px;
  margin: 0px;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f5f7;
  color: #172b4d;
}

.header {
  position: sticky;
  top: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.navbar {
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 20px;
}

.logo img {
  height: 25px;
  border-radius: 3px;
  margin-left: 10px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.menu {
  display: flex;
  gap: 40px;
  margin-left: -400px;
}

.menu a {
  text-decoration: none;
  color: #172b4d;
  font-size: 18px;
}

.menu a:hover {
  color: #0764f0;
}

.right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.right a {
  text-decoration: none;
  font-size: 19px;
  color: #172b4d;
}

.right a:hover {
  color: #0764f0;
}

.btn {
  background-color: #1268e9;
  color: #fff !important;
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

.btn:hover {
  background-color: #004db3;
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #172b4d;
  border-radius: 3px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .menu,
  .right {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    padding: 20px;
    border-top: 2px solid #ddd;
  }

  .menu a,
  .right a {
    font-size: 20px;
    padding: 10px 0;
  }

  /* Show menu when checkbox checked */
  #menu-toggle:checked ~ .menu,
  #menu-toggle:checked ~ .right {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

/* Banner */
.banner {
  background-color: #e6f0ff;
  text-align: center;
  padding: 15px 10px;
  font-size: 15px;
  color: #172b4d;
  line-height: 1.5;
}

.banner a {
  color: #0b63ce;
  text-decoration: underline;
}

/* Hero Section */
.hero {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  padding: 20px 80px;
  gap: 40px;
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
}

.hero-text {
  flex: 1;
  max-width: 550px;
  margin-top: 90px;
}

.hero-text h1 {
  font-size: 55px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.2;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 25px;
  color: #44546f;
}

.form {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.form input {
  padding: 15px;
  font-size: 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  flex: 1;
}

.form button {
  padding: 15px 30px;
  border: none;
  border-radius: 4px;
  background: #0065ff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.hero-text small {
  font-size: 20px;
  color: #6b778c;
}

.hero-text small a {
  color: #0065ff;
  text-decoration: none;
}

.hero-text .watch {
  display: inline-block;
  margin-top: 20px;
  color: #0065ff;
  text-decoration: none;
  font-weight: bold;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image video {
  max-width: 100%;
  border-radius: 10px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px;
  }
  .form {
    flex-direction: column;
  }
  .form input,
  .form button {
    width: 100%;
  }
}

/* Section */
.section {
  background-color: white;
  padding: 40px;
  text-align: left;
  max-width: 85%;
  margin: 60px auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.section h2 {
  font-size: 25px;
  font-weight: 600;
  color: #0b8be6;
  margin-bottom: 10px;
}

.section h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 800;
}

.section p {
  font-size: 18px;
  line-height: 1.9;
  color: #4a4a4a;
}

/* Tabs Container */
.container {
  display: flex;
  max-width: 90%;
  margin: 60px auto;
  gap: 40px;
  align-items: stretch; /* Equal height */
}

/* Hide radios */
input[type="radio"] {
  display: none;
}

/* Left Menu */
.menu1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.menu1 label {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f4f4f9;
  border-radius: 10px;
  cursor: pointer;
  padding: 30px;
  transition: 0.3s;
  min-height: 150px;
  font-size: 18px;
}

.menu1 label:hover {
  background: #e9f6ff;
}

/* Active highlight */
#inbox:checked ~ .container .menu1 label[for="inbox"],
#boards:checked ~ .container .menu1 label[for="boards"],
#planner:checked ~ .container .menu1 label[for="planner"] {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-left: 15px solid #00bfff;
}

/* Content */
.content {
  flex: 2;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-content {
  display: none;
}

#inbox:checked ~ .container .content #inbox-content,
#boards:checked ~ .container .content #boards-content,
#planner:checked ~ .container .content #planner-content {
  display: block;
}

.content img {
  max-width: 100%;
  border-radius: 00px;
}

.section1 {
  text-align: center;
  padding: 30px 40px;
}

.section1 h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.section1 p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.email-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #0065ff;
  border-radius: 10px;
  padding: 00px 50px;
  color: #fff;
  position: relative;
  height: 800px;
}

.email-section .section-header {
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

.email-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.email-section .section-header p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.email-section .content-row {
  display: flex;
  width: 80%;
  align-items: stretch;
  gap: 20px;
}

.email-section .image-box {
  flex: 1.5;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-section .image-box img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.email-section .content {
  flex: 1;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.email-section .content h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5f27cd;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.email-section .content h4 img {
  width: 28px;
  height: 28px;
}

.email-section .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .email-section .content-row {
    flex-direction: column;
    text-align: center;
  }
  .email-section .image-box,
  .email-section .content {
    width: 100%;
  }
}
.section-container {
  display: flex;
  gap: 20px;
  margin-top: 80px;
  padding: 0;
  align-items: stretch;
  height: 300px;
  width: 75%;
  position: absolute;
  top: 500px;
}

.section-container .left-box {
  flex: 1;
  background: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 300px;
}

.section-container .right-box {
  flex: 2;
  background: #fff;
  border-radius: 6px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
}

.section-container .right-box img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 4px;
}

.section-container .left-box h4 {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #5f27cd;
  font-size: 19px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: bold;
}
.section-container .left-box h4 img {
  width: 35px;
  height: 30px;
}

.section-container .left-box p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

@media (max-width: 768px) {
  .section-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .section-container .right-box,
  .section-container .left-box {
    width: 100%;
    flex: unset;
  }
  .section-container .left-box h4 {
    justify-content: center;
  }
}

.do-more-with {
  background-color: white;
  padding: 40px;
  text-align: left;
  max-width: 85%;
  margin: 160px auto 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.do-more-with h2 {
  font-size: 20px;
  color: #0a0a0a;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.do-more-with h1 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 800;
}

.do-more-with p {
  font-size: 18px;
  line-height: 1.9;
  color: #4a4a4a;
}

.card-container {
  display: flex;
  gap: 25px;
  max-width: 90%;
  margin: 0 auto;
  justify-content: center;
  padding: 20px;
}

.card {
  background: #f9fbff;
  border-radius: 10px;
  padding: 30px 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 50px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin: 0 0 15px 0;
  color: #091e42;
}

.card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
}

.card button {
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid #0052cc;
  background: transparent;
  color: #0052cc;
  font-size: 15px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.card button:hover {
  background: #5596f8;
  color: #f7f5f5;
}

@media (max-width: 1000px) {
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
}

.carousel-container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
}

.slider {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 300%;
}

.testimonial-card {
  width: 33.333%;
  background: white;
  display: flex;
  min-height: 400px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.card-left {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-right {
  flex: 1;
  background: #0343a2;
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-left p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  font-style: italic;
}

.author {
  margin-bottom: 20px;
}

.author-line {
  width: 40px;
  height: 3px;
  background: #011724;
  margin-bottom: 15px;
}

.author strong {
  color: #333;
  font-size: 16px;
}

.author br + text {
  color: #666;
  font-size: 14px;
}

.logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.logo img {
  width: 32px;
  height: 32px;
  margin-right: 12px;
}

.logo span {
  font-weight: 600;
  color: #333;
}

.read-link a {
  color: #0079bf;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
}

.read-link a:hover {
  text-decoration: underline;
}

.card-right h2 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.survey-link a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.survey-link a:hover {
  color: white;
  text-decoration: underline;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background: #0079bf;
}

.dot:hover {
  background: #0079bf;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  color: #0165fe;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.nav-arrow:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 1024px) {
  .carousel-container {
    padding: 0 10px;
  }

  .testimonial-card {
    min-height: 380px;
  }

  .card-left,
  .card-right {
    padding: 35px;
  }

  .card-left p {
    font-size: 17px;
  }

  .card-right h2 {
    font-size: 26px;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .nav-arrow.prev {
    left: -22px;
  }

  .nav-arrow.next {
    right: -22px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 20px 10px;
  }

  .testimonial-card {
    flex-direction: column;
    min-height: auto;
  }

  .card-left,
  .card-right {
    padding: 30px 25px;
  }

  .card-left {
    order: 1;
  }

  .card-right {
    order: 2;
  }

  .card-left p {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .card-right h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .author {
    margin-bottom: 15px;
  }

  .logo {
    margin-bottom: 15px;
  }

  .logo img {
    width: 28px;
    height: 28px;
  }

  .nav-arrow {
    display: none;
  }

  .carousel-dots {
    margin-top: 25px;
    gap: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px 5px;
  }

  .carousel-container {
    padding: 0;
  }

  .slider {
    border-radius: 8px;
  }

  .card-left,
  .card-right {
    padding: 25px 20px;
  }

  .card-left p {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .card-right h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  .author strong {
    font-size: 15px;
  }

  .logo span {
    font-size: 14px;
  }

  .read-link a,
  .survey-link a {
    font-size: 13px;
  }

  .carousel-dots {
    margin-top: 20px;
    gap: 8px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }
  .icons {
    display: none;
  }
}

.icons {
  margin-top: 40px;
  margin-left: 220px;
}

.signup-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f4f5f7;
}

.signup-section h2 {
  font-size: 28px;
  font-weight: bold;
  color: #172b4d;
  margin-bottom: 20px;
}

.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.signup-form input[type="email"] {
  padding: 12px;
  width: 300px;
  border: 1px solid #dfe1e6;
  border-radius: 4px;
  font-size: 16px;
}

.signup-form button {
  padding: 12px 20px;
  background-color: #0052cc;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-form button:hover {
  background-color: #0747a6;
}

.privacy-text {
  font-size: 14px;
  color: #344563;
}

.privacy-text a {
  color: #0052cc;
  text-decoration: none;
}

.privacy-text a:hover {
  text-decoration: underline;
}

.footer {
  background-color: #042c83;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-text {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: white;
}

.footer-text img {
  width: 32px;
  height: 32px;
}

.footer-text h2 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.footer-logo a {
  color: #0079bf;
  text-decoration: none;
  font-weight: 500;
}

.footer-logo a:hover {
  text-decoration: underline;
}

.footer-section {
  flex: 1;
  min-width: 200px;
}

.footer-section h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.footer-section h4 a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.footer-section h4 a:hover {
  text-decoration: underline;
}

.footer-section p {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 1.4;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid #e1e4e8;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: white;
  font-size: 14px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

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

.social-icons a:hover {
  color: #0079bf;
}

@media (max-width: 768px) {
  .footer {
    padding: 30px 15px 20px;
  }

  .footer-top {
    flex-direction: column;
    gap: 25px;
  }

  .footer-logo {
    min-width: 100%;
    text-align: center;
  }

  .footer-section {
    min-width: 100%;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
    gap: 15px;
  }

  .social-icons {
    justify-content: center;
  }
  .icons {
    display: none;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 25px 10px 15px;
  }

  .footer-top {
    gap: 20px;
  }

  .footer-text {
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .footer-text h2 {
    font-size: 20px;
  }

  .footer-section h4 {
    font-size: 15px;
  }

  .footer-section p {
    font-size: 13px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links a,
  .footer-links span {
    font-size: 13px;
  }

  .social-icons a {
    font-size: 16px;
  }
}
