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

body {
    font-family: sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Helvetica", sans-serif;
}

h2 {
    font-size: 2.3rem;
}

.navbar {
    background: white;
    padding: 0.2rem 4rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.2rem 1rem;
    }

    .tally-features {
        padding: 2rem 1rem;
    }

    .tally-pricing {
        padding: 2rem 0;
    }

    .tally-intro {
        padding: 2rem 1rem;
    }

    .additional-features {
        padding: 2rem 1rem;
    }

    .final-cta {
        padding: 2rem 1rem;
    }

    .tally-hero, .tally-cloud-hero, .hr-hero, .offline-hero, .online-hero, .contact-hero, .about-hero {
        padding: 2rem 0;
        min-height: 180px;
    }

    h2 {
        font-size: 1.6rem;
    }

    .contact-hero h1 {
        font-size: 1.8rem;
    }
}

.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
.logo img {
    height: 80px;
    width: auto;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: .5rem 0;
        width: 90%;
        text-align: center;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 5px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}



.nav-menu {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    position: relative;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
}

.nav-menu a i {
    font-size: 0.7rem;
}

.dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 0;
    background: white;
    min-width: 180px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.nav-menu li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    width: 100%;
    list-style: none;
}

.dropdown a {
    padding: 10px 15px;
    border-bottom: 1px solid #f0f0f0;
    color: #333;
    display: block;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #4dbbc2;
}

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

.hero {
    padding: 4rem 0;
    text-align: center;
    background: #4dbbc2;
}

.services {
    padding: 2rem 0;
}

.service-cards {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.card {
    padding: 1rem;
    border: 1px solid #ccc;
    width: 200px;
}

.page-content {
    padding: 2rem;
}

footer {
    background: #1a1a1a;
    color: #fff;
    padding: 4rem 0 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4dbbc2, #0082a8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-brand p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 2px solid #4dbbc2;
    color: #4dbbc2;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    width: fit-content;
    font-weight: 500;
}

.discover-btn:hover {
    background: #4dbbc2;
    color: white;
}

.discover-btn i {
    margin-left: 0.5rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #4dbbc2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.contact-item i {
    color: #4dbbc2;
    margin-top: 0.2rem;
    width: 16px;
}

.contact-item span {
    color: #ccc;
    line-height: 1.4;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #4dbbc2;
    color: white;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.scroll-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #4dbbc2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(77, 187, 194, 0.3);
    z-index: 1000;
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: scale(1.1);
    background: #0082a8;
}

/* TallyPrime Page Styles */
.tally-hero, .tally-cloud-hero, .hr-hero, .offline-hero, .online-hero, .contact-hero, .about-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.tally-hero {
    background-image: url("../images/tally-prime.png");
}

.tally-cloud-hero {
    background-image: url("../images/tally-cloud.png");
}

.hr-hero {
    background-image: url("../images/hr_banner.png");
}

.offline-hero {
    background-image: url("../images/offline-training.jpg");
}

.online-hero {
    background-image: url("../images/e-learning.jpg");
}

.contact-hero {
    background-image: url("../images/contact-us.jpg");
}

.about-hero {
    background-image: url("../images/About-Us.jpeg");
}

.contact-hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
}

.contact-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.contact-hero p {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.tally-hero::before, .tally-cloud-hero::before, .hr-hero::before, .offline-hero::before, .online-hero::before, .about-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(30 33 33 / 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10rem;
    margin: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-text {
    color: white;
}

.hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.tally-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.2);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: bold;
}

.business-illustration {
    display: flex;
    gap: 2rem;
    font-size: 4rem;
    opacity: 0.3;
}

.tally-intro {
    padding: 2rem 0.7rem;
    background: #f8f9fa;
}

.intro-layout {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intro-image {
    flex: 0 0 45%;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.tally-intro h2 {
    color: #4dbbc2;
    margin-bottom: 1.5rem;
}

.tally-intro p {
    color: #666;
    line-height: 1.6;
}

.tally-features {
    padding: 4rem 0;
    background: rgb(42 97 101);;
    color: white;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.feature-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-item.reverse .feature-content {
    order: 2;
}

.feature-item.reverse .feature-icon {
    order: 1;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-content p {
    line-height: 1.6;
}

.feature-icon, .feature-img  {
    font-size: 4rem;
    opacity: 0.8;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.feature-img {
    width: 250px;
    height: 250px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tally-pricing {
    padding: 4rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .tally-pricing {
        padding: 2rem 0;
    }
}

.tally-pricing h2 {
    text-align: center;
    color: #4dbbc2;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid #e0e0e0;
}

.tally-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
}

.tally-logo span {
    color: #4285f4;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
}

.edition {
    color: #999;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.description {
    color: #999;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.price {
    margin: 2rem 0;
}

.currency {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    display: block;
    margin: 0.5rem 0;
}

.gst {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-btn {
    background: #4dbbc2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.contact-btn:hover {
    background: #0082a8;
    color: white;
}

.additional-features {
    background: #f8f9fa;
}

.additional-features h2 {
    text-align: center;
    color: #4dbbc2;
    margin-bottom: 3rem;
}

.additional-features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.additional-features .feature-img {
    width: 350px;
    height: 350px;
    opacity: 1;
    background: none;
}

.additional-feature-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.additional-feature-card:nth-child(even) .feature-text {
    order: 2;
}

.additional-feature-card:nth-child(even) .feature-icon {
    order: 1;
}

.additional-feature-card .feature-text h3 {
    color: #4dbbc2;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.hr-service-section {
    padding: 2rem 0;
    text-align: center;
}

.hr-service-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hr-image img {
    transition: all 0.3s ease;
    cursor: pointer;
}

.hr-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.additional-feature-card .feature-text p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.additional-feature-card .feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    color: #4dbbc2;
    background: none;
}

.server-rental-section {
    margin-top: 4rem;
}

.server-item,
.rental-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.rental-item {
    grid-template-columns: 1fr 1fr;
}

.rental-item .rental-content {
    order: 2;
}

.rental-item .rental-image {
    order: 1;
}

.server-content h3,
.rental-content h3 {
    color: #4dbbc2;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.server-content p,
.rental-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.server-image,
.rental-image {
    display: flex;
    gap: 1rem;
    font-size: 3rem;
    color: #4dbbc2;
    justify-content: center;
    align-items: center;
}

.feature-text h3 {
    color: #0082a8;
    margin-bottom: 1rem;
}

.feature-text ul {
    margin-top: 1rem;
    padding-left: 1rem;
}

.feature-text li {
    margin-bottom: 0.5rem;
    color: #666;
}

.final-cta {
    padding: 4rem 0;
    background: #a19e9e;
    color: white;
    text-align: center;
}

.final-cta h2 {
    margin-bottom: 1rem;
}

.final-cta p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        margin: 1rem;
        justify-content: center;
    }
    
    .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 1.5rem;
    }

    .feature-item.reverse .feature-content {
        order: 1 !important;
    }

    .feature-item.reverse .feature-icon {
        order: 2 !important;
    }

    .feature-img {
        width: 100% !important;
        height: auto !important;
        max-width: 280px;
        margin: 0 auto;
    }

    .feature-icon img {
        width: 100%;
        height: auto;
    }

    .intro-layout {
        flex-direction: column;
        gap: 1.5rem;
    }

    .intro-image {
        flex: none;
        width: 100%;
    }

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

    .pricing-section h3 {
        font-size: 1.4rem;
    }

    .tally-pricing h2 {
        font-size: 1.8rem;
    }
    
    .feature-box,
    .feature-box:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

.carousel {
    position: relative;
    height: 500px;
    background: #4dbbc2;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carousel {
        height: 260px;
    }

    .slide-content {
        width: 90%;
        padding: 1rem;
    }

    .slide-content h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .slide-content p {
        font-size: 0.9rem;
    }
}

.carousel-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    background: rgb(7 79 84 / 70%);
    padding: 2rem;
    border-radius: 10px;
}

.slide.active {
    opacity: 1;
}

.slide-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.2rem;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4dbbc2;
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.service-cards-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .service-cards-section {
        padding: 2rem 0;
    }
}

.service-cards-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tally Cloud page specific - 3 columns layout */
body:has(.tally-cloud-hero) .cards-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Tally Cloud page specific - remove Final CTA background */
body:has(.tally-cloud-hero) .final-cta {
    background: transparent;
    color: #1a1a1a;
}

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

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

.service-card {
    background: transparent;
    width: 100%;
    height: 300px;
    perspective: 1000px;
}

@media (max-width: 768px) {
    .service-card {
        height: auto;
        min-height: 250px;
    }
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.service-card:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .card-front,
    .card-back {
        padding: 1.5rem;
        position: relative;
        height: auto;
        min-height: 250px;
    }
    
    .service-card:hover .card-inner {
        transform: none;
    }
    
    .card-back {
        display: none;
    }
}

.card-back {
    background: linear-gradient(135deg, #4dbbc2, #0082a8);
    color: white;
    transform: rotateY(180deg);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #4dbbc2;
}

@media (max-width: 768px) {
    .card-icon {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }
}

.card-front h3,
.card-back h3 {
    color: #0082a8;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .card-front h3,
    .card-back h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
        text-align: center;
    }
}

.card-back h3 {
    color: white;
}

.card-front p,
.card-back p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .card-front p,
    .card-back p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: center;
    }
}

.card-back p {
    color: white;
}

.read-more-btn {
    display: inline-block;
    background: white;
    color: #0082a8;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: bold;
}

.service-cards-section h2,
.tally-section h2,
.why-tokko-section h2, .faqs-section h2 {
    text-align: center;
    color: #0082a8;
    margin-bottom: 2rem;
}

.about-section {
    padding: 4rem 0;
    background: white;
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    color: #0082a8;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.cta-button {
    display: inline-block;
    background: #4dbbc2;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #0082a8;
    color: white;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
}

.tally-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tally-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.intro-content h2 {
    font-size: 1.5rem;
}

.tally-intro p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.tally-features {
    display: flex;
    justify-content: center;
}

.feature {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.feature i {
    font-size: 4rem;
    color: #4dbbc2;
    margin-bottom: 1.5rem;
    display: block;
}

.feature h3 {
    color: #0082a8;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.feature p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

.tally-cta {
    text-align: center;
    margin-top: 2rem;
}

.why-tokko-section {
    padding: 4rem 0;
    background: white;
}

@media (max-width: 768px) {
    .why-tokko-section {
        padding: 2rem 0;
    }
}

.why-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.why-intro p {
    font-size: 1.1rem;
    color: #999;
    line-height: 1.6;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.why-feature {
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 7%;
}

.feature-icon {
    background: #f0f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #4dbbc2;
}

.why-feature h3 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.why-feature p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.why-feature ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.why-feature li {
    color: #666;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.why-feature li:before {
    content: "✓";
    color: #4dbbc2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
.why-feature {
  transition: all 0.3s ease;
  padding: 2rem;
  border-radius: 15px;
}

.why-feature:hover {
  background: #4dbbc2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-feature:hover h3 {
  color: white;
}

.why-feature:hover li {
  color: white;
}

.why-feature:hover p {
  color: white;
}

.why-feature:hover li:before {
  color: white;
}

.why-feature:hover .feature-icon {
  background: white;
}

.why-feature:hover .feature-icon i {
  color: #4dbbc2;
}
.stats-section {
  padding: 4rem 0;
  background: #4dbbc2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
}

.faqs-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

@media (max-width: 768px) {
  .faqs-section {
    padding: 2rem 0;
  }

  .faq-question h3 {
    font-size: 0.95rem;
  }
}

.faqs-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h3 {
  margin: 0;
  color: #333;
  font-size: 1.1rem;
}

.faq-question i {
  color: #4dbbc2;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: none;
}

.faq-answer p {
  margin: 0;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form-container h2 {
    color: #0082a8;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #757575;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4dbbc2;
}

.submit-btn {
    background: #4dbbc2;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0082a8;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.contact-details h2 {
    color: #0082a8;
    margin-bottom: 2rem;
}

.contact-details .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-details .contact-item i {
    color: #4dbbc2;
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-details .contact-item h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-details .contact-item p {
    color: #666;
    margin: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.social-media {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.social-media h3 {
    color: #0082a8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    transition: all 0.3s;
}

.social-link:hover {
    background: #4dbbc2;
    color: white;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
            padding: 0 1rem;
    }
    
    .contact-form-container,
    .contact-details {
        padding: 1.5rem;
    }
    
    .contact-form-container h2,
    .contact-details h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-details .contact-item {
        margin-bottom: 1.2rem;
    }
    
    .contact-details .contact-item h4 {
        font-size: 1rem;
    }
    
    .contact-details .contact-item p {
        font-size: 0.9rem;
    }
    
    .social-media {
        padding: 1.5rem;
    }
    
    .social-media h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .map-container iframe {
        height: 250px;
    }
}
.nav-menu a {
  position: relative;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #4dbbc2;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: #4dbbc2;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after {
  width: 100%;
}
.nav-menu a.active {
  color: #4dbbc2;
}

/* Pricing Table Styles */
.pricing-table-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .pricing-table-section {
        padding: 2rem 0;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 0.6rem 0.5rem;
        font-size: 0.85rem;
    }
}

.pricing-table-section h2 {
    text-align: center;
    color: #4dbbc2;
    margin-bottom: 3rem;
}

.table-responsive {
    overflow-x: auto;
    margin: 0 3%;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.pricing-table th {
    background: #4dbbc2;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.pricing-table td {
    padding: 0.8rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-section {
    margin-bottom: 3rem;
}

.pricing-section h3 {
    text-align: center;
    color: #0082a8;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

/* HR Page Styles */
.hr-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.hr-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hr-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

@media (max-width: 768px) {
    .hr-section {
        padding: 2rem 0;
    }

    .section-tag {
        font-size: 0.95rem;
    }

    .hr-text p {
        font-size: 1rem;
    }
}

.hr-section:nth-child(even) {
    background: white;
}

.hr-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hr-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.hr-content.reverse .hr-text {
    order: 2;
}

.hr-content.reverse .hr-image {
    order: 1;
}

.section-tag {
    background: rgba(77, 187, 194, 0.1);
    color: #0082a8;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.hr-text p {
    color: #666;
    line-height: 1.7;
    margin: 1rem 0rem;
    font-size: 1.1rem;
}

.hr-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tally-features {
    display: flex;
    /* flex-direction: column; */
    gap: 1rem;
}

.tally-features img {
    width: 100%;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hr-content,
    .hr-content.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hr-content.reverse .hr-text,
    .hr-content.reverse .hr-image {
        order: unset;
    }
}
/* Training List Styles */
.training-list {
    list-style: none;
    padding-left: 0;
}

.training-list li {
    margin-bottom: 8px;
}

.training-list li i {
    color: #4dbbc2;
    margin-right: 10px;
}
/* Training Image Section */
.training-image-section {
    text-align: center;
    padding: 40px 0;
}

.training-image-section img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}
/* Footer Logo Size */
.footer-logo img {
    max-width: 120px;
    height: auto;
}
/* Vision Mission Cards */
.vision-mission-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    margin: 0px 20px;
}

.vision-mission-section .row {
    display: flex;
    align-items: stretch;
    gap: 2rem;
}

@media (max-width: 768px) {
    .vision-mission-section .row {
        flex-direction: column;
    }

    .vision-mission-section {
        margin: 0 10px;
        padding: 30px 0;
    }
}

.vision-card-align {
    text-align: center;
}

.vision-card, .mission-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    text-align: justify;
    margin-bottom: 30px;
}

.vision-card .card-icon, .mission-card .card-icon {
    font-size: 48px;
    color: #4dbbc2;
    margin-bottom: 20px;
}

.vision-card h3, .mission-card h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 24px;
}

.vision-card p, .mission-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.mission-card .training-list {
    text-align: left;
    margin-top: 20px;
}
/* Mobile responsive for Additional Features - separate rows */
@media (max-width: 768px) {
    .additional-features .feature-item {
        grid-template-columns: 1fr !important;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .additional-features .feature-item.reverse {
        grid-template-columns: 1fr !important;
    }

    .additional-features .feature-item.reverse .feature-content {
        order: 1 !important;
    }

    .additional-features .feature-item.reverse .feature-icon {
        order: 2 !important;
    }
    
    .additional-features .feature-img {
        width: 100% !important;
        height: auto !important;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .additional-features .feature-content {
        width: 100%;
    }

    .additional-features h2 {
        font-size: 1.6rem;
        padding: 0 1rem;
    }

    .feature-content h3 {
        font-size: 1.4rem;
    }
}