/* ======================== General Styling ======================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: #000;
}

img {
  display: block;
  max-width: 100%;
}

/* ======================== Header & Navigation ======================== */

/* Menubar */
.menubar {
  display: none;
}

/* Sidenav */
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  margin-top: 0;
}

.sidenav p {
  color: #ccc;
  padding: 0 0 0 5vw;
}

.sidenav ul {
  font-size: 4vw;
}

.sidenav li {
  display: inline-block;
  font-size: 1vw;
  margin-left: 8vw;
  height: 8vw;
}

.sidenav a {
  padding: 0 8px 0 32px;
  text-decoration: none;
  font-size: 4vw;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: black;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 10px -5px rgb(255, 255, 255);
  height: 5vw;
}

.navbar a,
.navbar p {
  font-size: 1.2vw;
  color: white;
  font-weight: bold;
  text-decoration: none;
}

.navbarsinfoLogo img {
  height: 3.5vw;
  width: 8vw;
  border-radius: 0.5vw;
}

/* Navigation List & Dropdowns */
nav ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

nav ul li {
  position: relative;
  display: inline-block;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #000;
  color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  min-width: 250px;
  z-index: 1;
  padding: 0;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.dropdown-menu li {
  display: block;
  padding: 0;
}

.dropdown-menu li a,
.dropdown-menu li p {
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

.dropdown-menu li a:hover {
  background-color: #333;
}

/* Dropdown Sections */
.dropdown-section {
  padding: 10px 20px;
  border-bottom: 1px solid #575757;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-heading1 {
  font-weight: bold;
  margin-bottom: 8px;
  display: block;
  font-size: 16px;
  background-color: #575757;
}

.dropdown-section ul {
  margin: 0;
  padding-left: 0;
}

.dropdown-section ul li {
  padding: 4px 0;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
  margin: 0;
  padding: 0;
}

/* Dropdown Toggle */
.dropdown-toggle {
  color: #000;
  padding: 10px 5px;
  text-decoration: none;
  display: block;
  font-family: 'Arial', sans-serif;
  font-size: 14px;
}

/* Dropdown Caret */
.Dropdowncaret {
  display: flex;
  flex-direction: row;
  align-items: center;
}

 /* .Dropdowncaret:hover {
  background-color: #ddd;
}  */

/* Infinite Solutions Element */
.InfiniteSolutions {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  color: rgb(0, 0, 0);
  border-radius: 1vw;
  padding: 0 0.5vw;
  background-color: white;
}

.InfiniteSolutions a {
  color: rgb(0, 0, 0);
  padding: 0.5vw 0;
}

.InfiniteSolutions img {
  height: 1.5vw;
  width: 3vw;
}

/* Navbar Phone Number */
.NavbarPhoneNo {
  padding: 0;
}

.NavbarPhoneNo a {
  font-size: 1.2vw;
}

/* Navbar Book a Demo Button */
.NavbarBookADemo button {
  font-weight: bold;
  font-size: 0.9vw;
  background-color: white;
  color: black;
  border: 2px solid black;
  padding: 0.5vw;
  width: 9vw;
  border-radius: 25px;
  cursor: pointer;
}

.NavbarBookADemo button:hover {
  background-color: white;
  color: black;
  border: 2px solid black;
  transition: 0.3s;
}

/* ============================ Header ========================= */

#tally-support {
  margin: 0 auto;
  padding: 6rem 1rem 2rem 1rem;
  background: linear-gradient(135deg, #333, #000);
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

/* Decorative floating circles with rotation animation */
@keyframes rotateCircle {
  0%   { transform: rotate(0deg) scale(1); }
  50%  { transform: rotate(180deg) scale(1.1); }
  100% { transform: rotate(360deg) scale(1); }
}

#tally-support::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
  bottom: -50px;
  left: -50px;
  animation: rotateCircle 25s infinite linear reverse;
  z-index: 0;
}

#tally-support .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Title with Animated Underline */
#tally-support h2 {
  font-size: 2.5rem;
  color: #EFE17C;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 1rem;
  position: relative;
}

#tally-support h2::after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: linear-gradient(to right, #EFE17C, #b29500);
  margin: 0.5rem auto 0;
  animation: expandLine 1s forwards;
}

@keyframes expandLine {
  from { width: 0; }
  to { width: 50%; }
}

#tally-support .section-intro {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Arial', sans-serif;
  margin-top: 0.5rem;
}

.btn-download {
  font-size: 1vw;
  color: #000;
  background-color: #EFE17C;
  padding: 1vw 2vw;
  border-radius: 2vw;
  font-weight: 700;
  border: 0.2vw solid #EFE17C;
}

.download-container {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 20px;
  justify-content: center; 
  border-bottom: 1px solid #575757;
}

.download-text {
  font-size: 1.5em;
  margin: 0;
  font-weight: 600;
}

.download-container button {
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
}

/* =========================== Call to Action ========================== */
/* Voucher Approval Section Styles */
.voucher-approval-hero {
    background: linear-gradient(135deg, #333, #000);
    padding: 5rem 2rem;
    position: relative;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
}

.animation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
}

.content-wrapper {
    flex: 1;
    max-width: 600px;
    z-index: 2;
}

.voucher-approval-hero h1 {
    font-size: 2.2rem;
    color: #EFE17C;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.voucher-approval-hero p {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.voucher-svg svg {
  width: 100%;
  height: auto;
}

.cta-buttontop {
    background: #EFE17C;
    color: 000;
    border: none;
    padding: 0.8rem 0rem;
    font-size: 1rem;
    border-radius: 1vw;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 0px 3px #EFE17C;
    display: inline-block;
}

.cta-buttontop:hover {
    background: #EFE17C;
    transform: translateY(-2px);
    box-shadow: 0 0px 5px #EFE17C;
}

.cta-buttontop a {
    color: #000;
    text-decoration: none;
    padding: 1.2vw 2vw;
    /* background-color: red; */
}

.cta-buttonCall {
  background-color: #000;
  color: #EFE17C;
    border: 0.2vw solid #EFE17C;
    padding: 0.8rem 1rem;
    margin-left: 1vw;
    font-size: 1rem;
    border-radius: 1vw;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-block;
}

.cta-buttonCall a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
    transition: color 0.3s ease;
}

.infinite-dropdown {
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #e7dede #333;
}

.infinite-dropdown::-webkit-scrollbar {
    width: 6px;
}

.infinite-dropdown::-webkit-scrollbar-track {
    background: #333;
}

.infinite-dropdown::-webkit-scrollbar-thumb {
    background-color: #e7dede;
    border-radius: 3px;
}

/* This is the key fix — without it, dropdown-section overrides overflow */
.infinite-dropdown .dropdown-section {
    display: block;
}

.infinite-dropdown .dropdown-section:first-child {
    padding: 0;
    margin: 0;
}

.infinite-dropdown .dropdown-heading1 {
    margin: 0;
    padding: 10px 20px;
}

.cta-buttonCall:hover {
    background: #EFE17C;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0px 5px #EFE17C;
}

.cta-buttonCall:hover a {
    color: #000000;
}

.floating-documents {
    position: relative;
    width: 500px;
    height: 400px;
    min-height: 300px;
}

.document {
    position: absolute;
    width: 200px;
    height: 280px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.1);
}

.voucher-svg {
    width: 100%;
    height: 220px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.voucher-label {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: white;
    background: #4a90e2;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.doc1 {
    top: 0;
    left: 0;
    transform: rotate(-5deg);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.doc1 .voucher-label {
    background: #4a90e2;
}

.doc2 {
    top: 50px;
    left: 150px;
    transform: rotate(3deg);
    animation: float 7s ease-in-out infinite 1s;
    z-index: 2;
}

.doc2 .voucher-label {
    background: #e74c3c;
}

.doc3 {
    top: 20px;
    left: 300px;
    transform: rotate(-2deg);
    animation: float 5.5s ease-in-out infinite 0.5s;
    z-index: 3;
}

.doc3 .voucher-label {
    background: #2ecc71;
}

.document:hover {
    transform: translateY(-5px) rotate(0deg) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 10;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes stamp {
    0%, 100% {
        opacity: 0;
        transform: scale(0.5);
    }
    20%, 80% {
        opacity: 1;
        transform: scale(1.1);
    }
}

.bounce-in {
    animation: bounceIn 1s ease-out;
}

/* .fade-in {
    animation: fadeIn 1.5s ease-out;
}

.pulse {
    animation: pulse 2s infinite;
} */

/* @keyframes bounceIn {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    80% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
} */

/* @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
} */

/* @keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
} */

/* Responsive design */
@media (max-width: 992px) {
    .animation-container {
        flex-direction: column;
        text-align: center;
    }
    
    .floating-documents {
        width: 50%;
        height: 300px;
    }
    
    .content-wrapper {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .voucher-approval-hero h1 {
        font-size: 2.2rem;
    }
    
    .document {
        width: 180px;
        height: 260px;
    }
    
    .doc1 {
        left: 10px;
    }
    
    .doc2 {
        left: 120px;
    }
    
    .doc3 {
        left: 230px;
    }
    
    .approval-stamp {
        left: 150px;
    }
}

@media (max-width: 768px) {
    .floating-documents {
      width: 50%;
      height: 250px;
    }
    .voucher-approval-hero {
        padding: 3rem 1rem;
    }
    
    .document {
        width: 160px;
        height: 240px;
    }
    
    .doc1 {
        left: 5px;
    }
    
    .doc2 {
        left: 90px;
    }
    
    .doc3 {
        left: 175px;
    }
    
    .approval-stamp {
        left: 120px;
        top: 100px;
    }
}

@media (max-width: 576px) {
    .floating-documents {
      width: 80%;
      height: 250px;
    }
    
    .document {
        width: 140px;
        height: 220px;
    }
    
    .doc1 {
        left: 0;
    }
    
    .doc2 {
        left: 70px;
    }
    
    .doc3 {
        left: 140px;
    }
    
    .approval-stamp {
        left: 90px;
        top: 80px;
        width: 60px;
        height: 60px;
    }
    
    .approval-stamp::after {
        font-size: 0.6rem;
    }
}

/* ======================= What it Does ======================= */

.approval-workflow {
    background: linear-gradient(135deg, #000 0%, #000 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    flex-wrap: wrap;
}

.section-title {
    font-size: 2.5rem;
    color: #EFE17C;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 5vw 0vw 0vw 0vw;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #2ecc71);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Workflow Visualization */
.workflow-visualization {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin: 4rem 0;
    padding: 0vw 5vw;
    flex-wrap: wrap;
}

.workflow-step {
    position: relative;
    width: 160px;
    padding: 1.5rem;
    background: rgb(255, 255, 255);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(245, 242, 242, 0.08);
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
    border: 1px solid rgba(202, 185, 185, 0.05);
}

.workflow-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    color: #4a90e2;
    position: relative;
}

.step-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.workflow-step h3 {
    font-size: 1.1rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.workflow-step p {
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 0;
}

/* Step Specific Styling */
.primary-step .step-icon {
    background: #e3f2fd;
    color: #2196f3;
}

.secondary-step .step-icon {
    background: #fff8e1;
    color: #ffc107;
}

.secondary-step .step-icon svg:first-child {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
}

.secondary-step .step-icon svg:last-child {
    position: absolute;
    right: 5px;
    bottom: 5px;
    width: 20px;
    height: 20px;
}

.final-step .step-icon {
    background: #e8f5e9;
    color: #4caf50;
}

.official-step .step-icon {
    background: #f1f8e9;
    color: #8bc34a;
}

.entry-step .step-icon {
    background: #f3e5f5;
    color: #9c27b0;
}

/* Approval Path */
.approval-path {
    flex-grow: 1;
    min-width: 50px;
    height: 4px;
    background: linear-gradient(90deg, #4a90e2, #2ecc71);
    position: relative;
    margin: 0 -10px;
    z-index: 1;
    border-radius: 2px;
}

.path-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #2ecc71;
}

/* Badges & Indicators */
.approval-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.primary-step .approval-badge {
    background: #2196f3;
}

.secondary-step .approval-badge {
    background: #ffc107;
    color: #333;
}

.final-step .approval-badge {
    background: #4caf50;
}

/* Animated Elements */
.pulse-dots {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.pulse-dots::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin: 0 3px;
    animation: pulse 2s infinite;
}

.pulse-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #e74c3c;
    border-radius: 50%;
    margin: 0 3px;
    animation: pulse 2s infinite 0.5s;
}

.pulse-dots.green::before,
.pulse-dots.green::after {
    background: #2ecc71;
}

/* Approved Stamp */
.approved-stamp {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%) rotate(-5deg);
    background: #e74c3c;
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 3px 10px;
    border-radius: 3px;
    animation: stampPulse 2s infinite;
}

/* Floating Comments */
.floating-comments {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatUp 4s infinite ease-in-out;
}

.comment-bubble {
    background: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    position: relative;
    white-space: nowrap;
}

.comment-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid white;
}

/* Animations */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes stampPulse {
    0% { transform: translateX(-50%) rotate(-5deg) scale(1); }
    50% { transform: translateX(-50%) rotate(-5deg) scale(1.05); }
    100% { transform: translateX(-50%) rotate(-5deg) scale(1); }
}

@keyframes floatUp {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .workflow-visualization {
        justify-content: center;
        gap: 3rem;
    }
    
    .approval-path {
        display: none;
    }
    
    .workflow-step {
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .workflow-features {
        grid-template-columns: 1fr;
    }
      #tally-support {
    padding: 3rem 1rem;
  }

  #tally-support h2 {
    font-size: 2rem;
  }

  #tally-support .section-intro {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
    .approval-workflow {
        padding: 3rem 1rem;
    }
    
    .workflow-step {
        width: 140px;
        padding: 1rem;
    }
}

/* ============================== Module Video =========================== */

.video-section {
        max-width: 1000px;
        margin: 60px auto;
        padding: 40px;
        background-color: #1e1e1e;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .section-heading {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .section-heading h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #ece08a;
        /* margin-bottom: 16px; */
        background: #ece08a;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    
    .section-heading p {
        font-size: 1.2rem;
        color: #b0b0b0;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.8;
    }
    
    .video-container {
        width: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    }
    
    video {
        width: 100%;
        display: block;
        background-color: #000;
        aspect-ratio: 16/9;
    }
    
    @media (max-width: 992px) {
        .video-section {
            margin: 40px 20px;
            padding: 30px;
        }
        
        .section-heading h2 {
            font-size: 2rem;
        }
        
        .section-heading p {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 576px) {
        .video-section {
            margin: 20px 10px;
            padding: 20px;
        }
        
        .section-heading h2 {
            font-size: 1.8rem;
        }
    }

/* ====================== Why use Approval Module ======================== */

.why-use-it {
   background: linear-gradient(135deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0vw;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.title-gradient {
    font-size: 2.5rem;

    /* background: linear-gradient(90deg, #4a90e2, #2ecc71); */
    -webkit-background-clip: text;
    background-clip: text;
    color:   #EFE17C;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: #ebeff3;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.benefit-card {
    /* background: white; */
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 0.2vw solid #EFE17C;
    /* border: 1px solid rgba(231, 235, 27, 0.05); */
}

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

.benefit-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
    text-align: center;
}

.benefit-card p {
    font-size: 1rem;
    color: #a0bcbe;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Benefit Icons */
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

/* Automation Icon */
.gear-icon {
    position: absolute;
    border-radius: 50%;
    background: #4a90e2;
    opacity: 0.8;
}

.gear-1 {
    width: 50px;
    height: 50px;
    top: 0;
    left: 0;
    animation: rotate 8s linear infinite;
}

.gear-2 {
    width: 30px;
    height: 30px;
    bottom: 0;
    right: 0;
    animation: rotateReverse 6s linear infinite;
}

.gear-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background: inherit;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.gear-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 100%;
    background: inherit;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.arrow-path {
    position: absolute;
    width: 60px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 3px dashed #4a90e2;
    animation: moveArrow 3s linear infinite;
}

/* Security Icon */
.shield-base {
    width: 50px;
    height: 60px;
    background: #e74c3c;
    border-radius: 5px 5px 15px 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shield-check {
    width: 20px;
    height: 10px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkPulse 2s ease-in-out infinite;
}

.lock-icon {
    width: 20px;
    height: 20px;
    border: 3px solid #e74c3c;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.lock-icon::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 10px;
    background: white;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

/* Accuracy Icon */
.graph-bar {
    position: absolute;
    bottom: 0;
    background: #2ecc71;
    border-radius: 3px 3px 0 0;
    animation: graphGrow 1.5s ease-in-out infinite alternate;
}

.bar-1 {
    width: 15px;
    height: 40px;
    left: 15px;
    animation-delay: 0s;
}

.bar-2 {
    width: 15px;
    height: 60px;
    left: 40px;
    animation-delay: 0.3s;
}

.bar-3 {
    width: 15px;
    height: 30px;
    left: 65px;
    animation-delay: 0.6s;
}

.checkmark {
    width: 20px;
    height: 10px;
    border-left: 3px solid #2ecc71;
    border-bottom: 3px solid #2ecc71;
    position: absolute;
    top: 20px;
    right: 15px;
    transform: rotate(-45deg);
    animation: checkPulse 2s ease-in-out infinite;
}

/* Access Icon */
.browser-window {
    width: 60px;
    height: 40px;
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.browser-content {
    width: 100%;
    height: 100%;
    background: #f0f8ff;
    border-radius: 0 0 3px 3px;
    position: relative;
    overflow: hidden;
}

.cloud-icon {
    width: 30px;
    height: 20px;
    background: #4a90e2;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: cloudFloat 3s ease-in-out infinite;
}

.cloud-icon::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    background: #4a90e2;
    border-radius: 50%;
    top: -8px;
    left: -5px;
}

.cloud-icon::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #4a90e2;
    border-radius: 50%;
    top: -5px;
    right: -5px;
}

.devices {
    position: absolute;
    width: 100%;
    height: 100%;
}

.phone {
    width: 15px;
    height: 25px;
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 10px;
    animation: deviceFloat 4s ease-in-out infinite;
}

.tablet {
    width: 25px;
    height: 20px;
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    right: 10px;
    animation: deviceFloat 5s ease-in-out infinite;
}

/* Control Icon */
.user-profile {
    width: 60px;
    height: 40px;
    background: #f39c12;
    border-radius: 50% 50% 0 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.role-badge {
    position: absolute;
    background: white;
    color: #2c3e50;
    font-size: 0.5rem;
    font-weight: bold;
    padding: 2px 5px;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: badgeFloat 6s linear infinite;
}

.role-badge:nth-child(1) {
    top: -10px;
    left: 10px;
    animation-delay: 0s;
}

.role-badge:nth-child(2) {
    top: -10px;
    right: 10px;
    animation-delay: 1s;
}

.role-badge:nth-child(3) {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

.permission-slider {
    width: 70px;
    height: 5px;
    background: #e0e0e0;
    border-radius: 5px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
}

.permission-slider::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 5px;
    background: #2ecc71;
    border-radius: 5px;
    left: 0;
    top: 0;
    animation: sliderMove 3s ease-in-out infinite;
}

/* Pulse Dots */
.pulse-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.pulse-dots::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4a90e2;
    border-radius: 50%;
    margin: 0 3px;
    animation: pulse 2s infinite;
}

.pulse-dots::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #4a90e2;
    border-radius: 50%;
    margin: 0 3px;
    animation: pulse 2s infinite 0.5s;
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes moveArrow {
    0% { transform: translate(-100%, -50%); opacity: 0; }
    30%, 70% { opacity: 1; }
    100% { transform: translate(0%, -50%); opacity: 0; }
}

@keyframes checkPulse {
    0% { transform: translate(-50%, -60%) rotate(-45deg) scale(1); }
    50% { transform: translate(-50%, -60%) rotate(-45deg) scale(1.2); }
    100% { transform: translate(-50%, -60%) rotate(-45deg) scale(1); }
}

@keyframes graphGrow {
    from { height: 10px; }
    to { height: var(--final-height); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translate(-50%, -50%); }
    50% { transform: translate(-50%, -60%); }
}

@keyframes deviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-15px); opacity: 0.8; }
}

@keyframes sliderMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(40px); }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-gradient {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .why-use-it {
        padding: 3rem 1rem;
    }
    
    .cta-bubble {
        padding: 1rem;
        width: 100%;
    }
    
    .bubble-text {
        font-size: 1rem;
    }
      #tally-support {
    padding: 2.5rem 1rem;
  }

  #tally-support h2 {
    font-size: 1.75rem;
  }

  #tally-support .section-intro {
    font-size: 0.95rem;
  }
}

/* Dark Theme CTA */
.dark-cta {
    background: linear-gradient(135deg, #000 0%, #222020 100%);
    padding: 5rem 2rem;
    color: #e2e8f0;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0vw 0vw;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-block {
  color: #EFE17C;
    display: block;
    position: relative;
    animation: textReveal 1s ease-out forwards;
    opacity: 0;
}

.text-block:nth-child(1) {
    animation-delay: 0.2s;
}

.text-block:nth-child(2) {
    animation-delay: 0.4s;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

/* CTA Button */
.cta-button-container {
    position: relative;
}

.cta-button {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    animation: fadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.cta-button a {
  color:#ffffff;
  text-decoration: none;

}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    background: linear-gradient(to right, #818cf8, #a78bfa);
    color: #ffffff;
    text-decoration: none;
}

.cta-button:hover a {
  color: #ffffff;
  text-decoration: none;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    fill: white;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow-icon {
    transform: translateX(5px);
}

.cta-extra {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    animation: fadeInUp 1s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(20px);
}

.shield-icon {
    width: 20px;
    height: 20px;
    background: rgba(74, 222, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.shield-icon svg {
    width: 14px;
    height: 14px;
    fill: #4ade80;
}

.cta-extra span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Visual Elements */
.cta-visual {
    position: relative;
    width: 400px;
    height: 300px;
}

.floating-devices {
    position: relative;
    width: 100%;
    height: 100%;
}

.laptop {
    position: absolute;
    width: 280px;
    height: 180px;
    background: #1e293b;
    border-radius: 12px 12px 0 0;
    bottom: 0;
    left: 30%;
    transform: translateX(-50%);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    animation: float 6s ease-in-out infinite;
    border: 1px solid #334155;
}

.laptop-base {
    position: absolute;
    width: 300px;
    height: 10px;
    background: #0f172a;
    border-radius: 0 0 8px 8px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #334155;
    border-top: none;
}

.screen {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: #0f172a;
    margin: 5px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    border: 1px solid #334155;
}

.dashboard-preview {
    padding: 10px;
}

.dashboard-header {
    height: 20px;
    background: #1e293b;
    border-radius: 4px;
    margin-bottom: 10px;
}

.approval-card {
    background: #1e293b;
    border-radius: 8px;
    padding: 12px;
    position: relative;
    overflow: hidden;
    border: 1px solid #334155;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

.approval-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.badge {
    background: #f59e0b;
    color: #1e293b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
}

.amount {
    color: #e2e8f0;
    font-weight: bold;
    font-size: 0.9rem;
}

.approval-details {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.approval-actions {
    display: flex;
    gap: 8px;
}

.mini-btn {
    flex: 1;
    padding: 4px;
    border-radius: 4px;
    font-size: 0.7rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mini-btn.approve {
    background: #10b981;
    color: white;
}

.mini-btn.reject {
    background: #ef4444;
    color: white;
}

.mini-btn:hover {
    transform: translateY(-1px);
}

.phone1 {
    position: absolute;
    width: 100px;
    height: 160px;
    background: #1e293b;
    border-radius: 16px;
    top: 0;
    right: 100;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: float 5s ease-in-out infinite 1s;
    border: 1px solid #334155;
}

.phone .screen {
    border-radius: 12px;
}

.mobile-notification {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    background: #1e293b;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #334155;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: notificationSlide 3s ease-in-out infinite;
}

.notification-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    color: white;
    font-weight: bold;
}

.notification-content {
    display: flex;
    flex-direction: column;
}

.notification-content strong {
    font-size: 0.7rem;
    color: #e2e8f0;
}

.notification-content span {
    font-size: 0.6rem;
    color: #94a3b8;
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.15);
    animation: float 8s ease-in-out infinite;
}

.dot-1 {
    width: 10px;
    height: 10px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.dot-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 15%;
    animation-delay: 1s;
}

.dot-3 {
    width: 8px;
    height: 8px;
    top: 30%;
    right: 10%;
    animation-delay: 2s;
}

/* Animations */
@keyframes textReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes notificationSlide {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-content {
        margin-bottom: 3rem;
        max-width: 100%;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-button-container {
        justify-content: center;
    }
    
    .cta-visual {
        width: 100%;
        height: 250px;
    }

        .laptop {
        left: 55%;
        width: 220px;
        height: 140px;
    }
    
    .phone1 {
      left: 30%;
        width: 80px;
        height: 130px;
    }
}

@media (max-width: 576px) {
    .dark-cta {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
    
    .laptop {
        left: 35%;
        width: 220px;
        height: 140px;
    }
    
    .phone1 {
      left: 10%;
        width: 80px;
        height: 130px;
    }

}/* ======================== Footer ======================== */
footer {
  background-color: black;
  color: white;
  padding: 3vw 0 0 0;
}

.footermain {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: row;
}

.FooterLeft {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 40%;
  padding: 0 1vw 0 1vw;
}

.FooterLeft img {
  height: 7vw;
  width: 15vw;
}

.FooterLeft h1 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.6vw;
  font-weight: 500;
  margin: 0.5vw 0 0 0;
}

.FooterRight {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  height: 25vw;
  width: 100%;
}

.SocialMedia {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin: 1vw 0 0 0;
}

.SocialMedia img {
  height: 3vw;
  width: 3vw;
}

.footer-column {
  margin: 0 3vw 0 0;
}

.footer-column ul {
  height: 4vw;
}

.footer-column li {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 2.5vw;
}

.footer-column a {
  text-decoration: none;
  color: white;
  font-size: 1.2vw;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-column h3 {
  font-size: 2vw;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ======================== Media Queries ======================== */

@media (max-width: 600px) {
  .navbar {
    height: 10vw;
  }
  .navbarsinfoLogo img {
    height: 5vw;
    width: 15vw;
    border-radius: 1vw;
  }
  .NavbarPhoneNo a {
    font-size: 2.2vw;
    font-weight: 900;
  }
  .navbar p {
    font-size: 2vw;
    margin: 0.2vw 0 0 0;
  }
  .NavbarBookADemo button {
    font-size: 2vw;
    width: 20vw;
    height: 5vw;
    margin: 0;
    padding: 0.2vw 0;
  }
  .NavbarSearchIcon button {
    height: 2vw;
    width: 3.5vw;
    margin: 0 0 3vw 0;
  }
  .dropdown, .NavbarServices, .NavbarAcademy, .NavbarAboutUs, .NavbarContactUs {
    font-size: 1.8vw;
    display: none;
  }
  .InfiniteSolutions a {
    font-size: 2.5vw;
  }
  .navbar h6 {
    font-size: 2vw;
    margin: 0.8vw 0 0 0;
    text-decoration: none;
  }
  .MenuIcon button {
    display: inline;
    height: 5vw;
  }
  .menubar {
    display: inline;
  }
  
  /* Footer Adjustments */
  .footer-column a {
    font-size: 2vw;
  }
  .footer-column li {
    margin: 0 0 1vw 0;
  }
  .FooterLeft h1 {
    font-size: 2vw;
  }
  .card {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25vw;
    width: 90vw;
    margin: 0vw 0vw 5vw 0vw;
  }
  .cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.card-title {
  font-size: 4.5vw;
}
.card-text {
  font-size: 3.2vw;
}
.btn {
  padding: 2vw;
}
.icon {
  font-size: 5vw;
}
.get-tally-plugin h2 {
  font-size: 6vw;
}
}

@media screen and (min-width: 768px) and (max-width: 1250px) {
  .menubar {
    display: none;
  }
  #Navbar img {
    margin: 0.6vw 2vw 0 2vw;
  }
  #tally-support {
    height: 22vw;
  }
  #tally-support h2 {
    font-size: 3.5vw;
  }
  #tally-support .section-intro {
    font-size: 2vw;
  }
}

@media screen and (min-width: 320px) and (max-width: 768px) {
  .sidenav {
    margin-top: 45px;
    z-index: 20;
  }
  header {
    height: 12vw;
  }
  .InfiniteSolutions img {
    height: 3vw;
    width: 7vw;
  }
  .NavbarPhoneNo {
    display: none;
    padding: 0.5vw 0 1vw 0;
  }
  .NavbarPhoneNo a {
    font-size: 2.2vw;
    font-weight: 900;
  }
  .navbar p {
    font-size: 2vw;
    margin: 0.2vw 0 0 0;
  }
  .menubar {
    display: inline;
  }
}

@media screen and (max-height: 450px) {
  .sidenav {
    padding-top: 15px;
  }
  .sidenav a {
    font-size: 18px;
  }
}
