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


/* compamies section */
/* Companies/Affiliates Section */
.affiliates-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 40px 20px;
  margin-bottom: 0;
}

.affiliates-title {
  font-size: 28px;
  color: #2c3e50;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0px;
  position: relative;
}

.affiliates-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(45deg, #007bff, #0056b3);
  margin: 10px auto 0;
  border-radius: 2px;
}

.logos-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.logo-item img {
  max-width: 100%;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  transform: scale(1.05);
}


/* Enhanced Footer */
.enhanced-footer {
  background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
  color: #ffffff;
  padding: 50px 0 0 0;
  position: relative;
  overflow: hidden;
}

.enhanced-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #007bff, transparent);
}

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

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-section h6 {
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section h6::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #007bff;
  border-radius: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: block;
  padding: 2px 0;
}

.footer-links a:hover {
  color: #007bff;
  transform: translateX(5px);
}

.app-downloads {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  justify-content: center;
}

.app-downloads img {
  height: 45px;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.app-downloads img:hover {
  transform: scale(1.05);
}

.mascot-container {
  text-align: center;
  margin-bottom: 20px;
}

.mascot-container img {
  height: 100%;
  filter: drop-shadow(0 5px 15px rgba(0, 123, 255, 0.3));
}

.footer-divider {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgb(255, 255, 255),
    transparent
  );
  margin: 40px 0 25px 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: center;
}

.footer-legal a {
  color: #fdfefe;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.footer-legal a:hover {
  color: #007bff;
}

.social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.social-links img {
  height: 20px;
  width: 20px;
  filter: brightness(0) invert(1);
}
/* Responsive Design */
@media (max-width: 768px) {
  .affiliates-section {
    padding: 30px 15px;
  }

  .logos-grid-new {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
  }

  .logo-item {
    height: 60px;
    padding: 10px;
  }

  .enhanced-footer {
    padding: 40px 0 0 0;
  }

  .footer-container {
    padding: 0 15px;
  }

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

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

  .app-downloads {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
}

@media (max-width: 576px) {
  .logos-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }
}
/* accordion.css */

/* acccordion */
.accordion-time {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.item-accordion {
    border-bottom: 1px solid #f1f3f4;
    transition: all 0.2s ease;
    background: white;
}

.item-accordion:last-child {
    border-bottom: none;
}

.item-accordion:hover {
    background: #fafbfc;
}

.header-accordion {
    padding: 0.875rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #1f2937;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.title {
    flex: 1;
    margin-right: 1rem;
}

.arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #4285f4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.item:hover .arrow {
    background: #1a73e8;
    transform: rotate(90deg);
}

.content-accordion {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #f8f9fa;
}

.item:hover .content-accordion {
    max-height: 100px;
}

.content-inner {
    padding: 0 1.25rem 1rem;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.25s ease 0.1s;
}

.item:hover .content-inner {
    opacity: 1;
    transform: translateY(0);
}

.content-accordion p {
    color: #5f6368;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
    padding: 0.5rem 0;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .accordion {
        margin: 0.5rem;
        border-radius: 8px;
    }

    .header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .content-inner {
        padding: 0 1rem 0.875rem;
    }

    .content-accordion p {
        font-size: 0.825rem;
    }

    .arrow {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* Touch devices */
@media (hover: none) {
    .item:hover {
        background: white;
        transform: none;
    }

    .item:hover .arrow {
        background: #4285f4;
        transform: none;
    }

    .item:hover .content {
        max-height: 0;
    }

    .item:hover .content-inner {
        opacity: 0;
        transform: translateY(-5px);
    }

    .item.active {
        background: #fafbfc;
    }

    .item.active .arrow {
        background: #1a73e8;
        transform: rotate(90deg);
    }

    .item.active .content {
        max-height: 100px;
    }

    .item.active .content-inner {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtle animations */
.item {
    animation: slideUp 0.4s ease forwards;
    opacity: 0;
    transform: translateY(10px);
}

.item:nth-child(1) {
    animation-delay: 0.05s;
}

.item:nth-child(2) {
    animation-delay: 0.1s;
}

.item:nth-child(3) {
    animation-delay: 0.15s;
}

.item:nth-child(4) {
    animation-delay: 0.2s;
}

.item:nth-child(5) {
    animation-delay: 0.25s;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

.hero-content h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 500px;
}

.form-box {
  background: #fff;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: translateX(50px);
  animation: slideInRight 1s ease-out 0.7s forwards;
}

.form-head {
  text-align: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.form-head h2 {
  font-size: 1.5rem;
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.form-head p {
  color: #6b7280;
  font-size: 0.9rem;
}

.form-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.input-wrap {
  margin-bottom: 1rem;
  width: 100%;
}

.input-wrap label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.input-wrap input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  font-size: 0.875rem;
  background-color: #fff;
  box-sizing: border-box;
  display: block;
}

.input-wrap input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.input-wrap input[type="text"],
.input-wrap input[type="email"] {
  height: 42px;
}

.radio-set {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.radio-box input[type="radio"] {
  width: auto;
  margin: 0;
}

.radio-box label {
  margin: 0;
  font-size: 0.875rem;
  cursor: pointer;
}

.captcha-box {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  padding: 0.75rem;
  text-align: center;
  margin: 1rem 0;
  font-size: 0.8rem;
  color: #6b7280;
}

.button-submit {
  width: 100%;
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
  border: none;
  padding: 0.875rem;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.button-submit:hover {
  background: linear-gradient(135deg, #de6464, #da8d63);
}

@media (max-width: 640px) {
  .form-flex {
    grid-template-columns: 1fr;
  }

  .form-box {
    padding: 1.5rem;
  }
}


/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #47a0ff, #47a0ff);
    padding: 4rem 5%;
    text-align: center;
}

.trust-section h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    font-weight: 600;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.logo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.logo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo-card img {
    max-width: 80%;
    max-height: 60px;
    object-fit: contain;
}

/* Animations */
@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
    }

    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1.5rem;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        padding: 1rem 3%;
    }
}

/* Intersection Observer Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Main Section */
.operations-section {
    font-family: "Segoe UI", sans-serif;
    padding: 30px 15px;
    background: #f9fbfe;
}

.operations-header {
    text-align: center;
    padding-bottom: 30px;
}

.operations-header h2 {
    font-size: 1.8rem;
    color: #143c78;
    margin-bottom: 20px;
}

/* Blue Box */
.blue-box {
    background: #47a0ff;
    color: white;
    border-radius: 12px;
    padding: 55px 20px;
    max-width: 93%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.blue-box h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blue-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #e6efff;
}

/* Image Overlap */
.image-wrapper {
    max-width: 1000px;
    margin: -80px auto 0;
    z-index: 2;
    position: relative;
}

.image-wrapper img {
    margin-top: 20px;
    width: 100%;
    border-radius: 12px;
}

/* Feature Cards */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 1300px;
    margin: -75px auto 0;
    padding: 0 11px;
}

.feature-card-one,
.feature-card-two,
.feature-card-three,
.feature-card-four {
    flex: 1 1 220px;
    padding: 20px 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    min-height: 150px;
}

.feature-card-one {
    background: rgb(252 239 210);
}

.feature-card-two {
    background: rgb(217 232 253);
}

.feature-card-three {
    background: rgb(220 254 221);
}

.feature-card-four {
    background: rgb(247 226 227);
}

/* Individual Card Content Styling */
.feature-card-one i,
.feature-card-two i,
.feature-card-three i,
.feature-card-four i {
    font-size: 22px;
    color: #2176ff;
    margin-bottom: 10px;
    display: block;
}

.feature-card-one p,
.feature-card-two p,
.feature-card-three p,
.feature-card-four p {
    font-size: 0.9rem;
    color: #2176ff;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .blue-box h3 {
        font-size: 1.2rem;
    }

    .image-wrapper img {
        margin-top: 20px;
        width: 80%;
        border-radius: 12px;
        margin-bottom: 40px;
    }

    .blue-box p {
        font-size: 0.88rem;
    }

    .image-wrapper {
        margin-top: -60px;
    }

    .features-container {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .feature-card-one,
    .feature-card-two,
    .feature-card-three,
    .feature-card-four {
        flex: 1 1 100%;
        min-height: auto;
        padding: 18px 12px;
    }
}

/* video section */
/* Section Styles */
.tools-section {
    background: linear-gradient(to bottom, #47a0ff, #47a0ff);
    padding: 50px 20px;
    color: #fff;
    border-radius: 32px;
}

.tools-container {
    max-width: 1200px;
    margin: auto;
}

.tools-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 600;
}

.tools-video-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.4;
}

.integration-wrapper {
    text-align: center;
    margin-top: 60px;
}

.integration-wrapper h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.integration-subtitle {
    font-size: 14px;
    max-width: 600px;
    margin: 0 auto 30px;
}

.integration-image img {
    max-width: 100%;
    transform: translateY(50px);
}

@media (max-width: 768px) {
    .tools-video-wrapper {
        margin-bottom: 20px;
    }

    .integration-image img {
        transform: none;
    }
}

/* time management section */
body {
    background: linear-gradient(135deg, #47a0ff 0%, #47a0ff 100%);
    color: #1a202c;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%,
            rgba(37, 130, 230, 0.791) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 20%,
            rgba(27, 112, 216, 0.807) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 40%,
            rgba(20, 17, 226, 0.683) 0%,
            transparent 50%);
    animation: float 18s ease-in-out infinite;
    z-index: -1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-title {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: white;
    margin-bottom: 50px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.tab {
    background: transparent;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.tab::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transition: left 0.5s;
}

.tab:hover::before {
    left: 100%;
}

.tab:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.tab.active {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    font-weight: 600;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.content {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.case-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 600;
    color: white;
    text-align: center;
    line-height: 1.4;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transition: opacity 0.3s ease;
}

.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.icon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .icon::before {
    opacity: 0.1;
}

.problem-icon {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.2);
}

.problem-icon::before {
    background: #dc2626;
}

.solution-icon {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #059669;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2);
}

.solution-icon::before {
    background: #059669;
}

.card:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0;
}

.card-content {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
    transition: color 0.3s ease;
    margin-top: 10px;
}

.card:hover .card-content {
    color: #2d3748;
}

.cta {
    text-align: center;
    font-size: 18px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.cta:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-link {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    transition: all 0.3s ease;
}

.cta-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.cta-link:hover::after {
    width: 100%;
}

.cta-link:hover {
    color: #f59e0b;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Fade animation for content switching */
.fade-out {
    opacity: 0.3;
    transform: translateY(10px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 0%;
        margin: 0;
    }

    .container {
        padding: 60px 16px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .card {
        padding: 28px;
    }

    .tabs {
        gap: 8px;
        padding: 6px;
    }

    .tab {
        padding: 12px 20px;
        font-size: 13px;
    }

    .icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 40px 12px;
    }

    .card {
        padding: 24px;
    }

    .tab {
        padding: 10px 16px;
        font-size: 12px;
    }

    .tabs {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .cta {
        font-size: 16px;
        padding: 20px;
    }
}

/* Loading animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* BUSINESS SECTION */
.levels-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background-color: #c0daf7;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: rgb(24, 51, 96);
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.levels-cards {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

figure {
    position: relative;
    display: grid;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 1px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

figure:nth-child(1) {
    animation-delay: 0.1s;
}

figure:nth-child(2) {
    animation-delay: 0.2s;
}

figure:nth-child(3) {
    animation-delay: 0.3s;
}

figure:nth-child(4) {
    animation-delay: 0.4s;
}

figure:nth-child(5) {
    animation-delay: 0.5s;
}

figure:nth-child(6) {
    animation-delay: 0.6s;
}

figure:nth-child(7) {
    animation-delay: 0.7s;
}

figure:nth-child(8) {
    animation-delay: 0.8s;
}

figure>* {
    grid-area: 1/1;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

figure img {
    width: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
}

figure figcaption {
            display: grid;
            align-items: end;
            font-family: 'Segoe UI', sans-serif;
            font-size: 2rem;
            font-weight: 700;
            color: #fff;
            padding: 1.5rem;
           background: var(--c, linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.8) 100%));
            clip-path: inset(0 var(--_i, 100%) 0 0);
            -webkit-mask:
                linear-gradient(#000 0 0),
                linear-gradient(#000 0 0);

         
            margin: -1px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.7);
            letter-spacing: 0.5px;
        }

figure:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

figure:hover figcaption {
    --_i: 0%;
}

figure:hover img {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

/* Enhanced background overlay for night images */
figure[data-theme="day"] figcaption {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.9) 100%);
}

figure[data-theme="night"] figcaption {
    background: linear-gradient(180deg, transparent 0%, rgba(30, 58, 138, 0.8) 100%);
}

/* Fallback for browsers that don't support -webkit-mask-clip: text */
@supports not (-webkit-mask-clip: text) {
    figure figcaption {
        -webkit-mask: none;
        color: #fff;
    }
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px) scale(0.8);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .levels-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }

    figure img {
        height: 280px;
    }

    figure figcaption {
        font-size: 1.8rem;
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .levels-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    figure figcaption {
        font-size: 1.6rem;
        padding: 1rem;
    }
}

@media (min-width: 1200px) {
    .levels-cards {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Add some sparkle effect on hover */
figure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 1;
    pointer-events: none;
}

figure:hover::before {
    transform: translateX(100%);
}

/* UC FEATURES SECTION */
.uc-features {
    font-family: "Segoe UI", sans-serif;
    padding: 50px 20px;
    background: #f4f8fc;
    color: #002c5e;
    text-align: center;
}

.uc-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #003366;
}

.uc-title p {
    font-size: 1rem;
    max-width: 700px;
    margin: auto;
    font-weight: 500;
    color: #2c3e50;
}

.uc-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.uc-card {
    background: #e8f1fc;
    border: 1px solid #c0daf7;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
    transition: all 0.3s ease;
    position: relative;
}

.uc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    border-color: #90bdf5;
}

.uc-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: #0d63b7;
}

.uc-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #002855;
}

.uc-card p {
    font-size: 0.96rem;
    color: #333;
    margin-bottom: auto;
    line-height: 1.5;
}

.uc-card a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #004aad;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
}

.uc-card a i {
    margin-left: 6px;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.uc-card a:hover i {
    transform: translateX(4px);
}

@media (max-width: 600px) {
    .uc-card {
        padding: 20px 16px;
    }
}