:root {
    --bg-navy: #1a365d;
    --primary: #006EA6;
    --accent: #f59e0b;
    --teal: #0d9488;
    --bg-teal: #0d9488;
    --bg-light-blue: #DCF2FB;
    --bg-dark-navy: #1a365d;
    --cream: #FFFBE5;
    --text-foreground: #1f2937;
    --text-muted: #6b7280;
}

/* Font Classes */
.display-font {
    font-family: 'Georgia', serif;
}

/* Font Face Definitions */
@font-face {
  font-family: "Roboto Bold";
  src: url("../fonts/roboto/Roboto-Bold.ttf");
}

@font-face {
  font-family: "Roboto Regular";
  src: url("../fonts/roboto/Roboto-Regular.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Roboto Medium";
  src: url("../fonts/roboto/Roboto-Medium.ttf");
  font-weight: normal;
}

@font-face {
  font-family: "Roboto Light";
  src: url("../fonts/roboto/Roboto-Light.ttf");
  font-weight: normal;
}

.roboto-bold {
  font-family: "Roboto Bold" !important;
}

.roboto-regular {
  font-family: "Roboto Regular" !important;
}

.roboto-medium {
  font-family: "Roboto Medium" !important;
}

.roboto-light {
  font-family: "Roboto Light" !important;
}

*:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.btn:active {

color: #fff;
background-color: #006ea6 !important;
border-color: #006ea6 !important;
    }
    .bg-yellow,.bg-yellow:active {
    background-color: #fcaf1b !important;
    border: none!important;
}
.tracking-wide {
    letter-spacing: 0.3em;
}

/* Header Styles */
.bg-navy {
    background-color: var(--bg-navy) !important;
}

.hover-white:hover {
    color: #fff !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5);
}

.text-white-70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white-90 {
    color: rgba(255, 255, 255, 0.9);
}
.eInvoicingTitle{
	font-size: 1.2rem;
}
.bg-tally-blue{
	background-color: #006ea6 !important;
}
/* Button Styles */
.btn-accent {
    background-color: var(--accent);
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #d97706;
    color: #fff;
}

.btn-white {
    background-color: #fff;
    color: var(--primary);
    border: none;
}

.btn-white:hover {
    background-color: #f3f4f6;
    color: var(--primary);
}

.btn-teal {
    background-color: var(--teal);
}

.btn-teal:hover {
    background-color: #0f766e;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(167deg, #006EA6 0%, #5BBCE3 60%, #DCF2FB 100%)
    /*min-height: 100vh;*/
    /*padding-top: 85px !important;*/
}

.hero-background {
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.blob-1 {
    top: 80px;
    left: 40px;
    width: 128px;
    height: 128px;
}

.blob-2 {
    top: 160px;
    right: 80px;
    width: 192px;
    height: 192px;
    background: rgba(220, 242, 251, 0.3);
    filter: blur(60px);
    animation-duration: 4s;
}

.blob-3 {
    bottom: 80px;
    left: 25%;
    width: 96px;
    height: 96px;
    animation-delay: 1s;
    animation-duration: 3s;
}

.hero-dot {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: bounce 3s ease-in-out infinite;
}

.dot-1 {
    top: 128px;
    left: 33.33%;
    width: 16px;
    height: 16px;
    animation-duration: 3s;
}

.dot-2 {
    top: 192px;
    right: 33.33%;
    width: 12px;
    height: 12px;
    animation-delay: 0.5s;
    animation-duration: 2.5s;
    background: rgba(255, 251, 229, 0.6);
}

.dot-3 {
    bottom: 128px;
    right: 25%;
    width: 20px;
    height: 20px;
    animation-delay: 1s;
    animation-duration: 4s;
}

.dot-4 {
    top: 96px;
    right: 50%;
    width: 8px;
    height: 8px;
    animation-delay: 0.3s;
    animation-duration: 3.5s;
    background: rgba(220, 242, 251, 0.8);
}

.hero-shape {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.shape-1 {
    top: 33.33%;
    left: 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    transform: rotate(45deg);
    animation: spin 20s linear infinite;
}

.shape-2 {
    bottom: 25%;
    right: 64px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border-color: rgba(220, 242, 251, 0.3);
    animation: pulse 5s ease-in-out infinite;
}

.hero-gradient {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
}

.gradient-1 {
    top: 50%;
    left: 32px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
}

.gradient-2 {
    bottom: 33.33%;
    right: 32px;
    width: 112px;
    height: 112px;
    background: linear-gradient(225deg, rgba(255, 251, 229, 0.2), transparent);
}

/* Underline Accent */
.accent-underline {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Background Colors */
.bg-cream {
    background-color: var(--cream);
}

.bg-light-blue {
    background-color: var(--bg-light-blue);
}

.bg-dark-navy {
    background-color: var(--bg-dark-navy);
}

.text-primary {
    color: var(--primary) !important;
}

.text-teal {
    color: #0070a8!important;
}

/* Avatar Circles */
.avatar-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--primary);
    margin-left: -8px;
    /*border: 2px solid var(--cream);*/
}

/* Badge Cards */
.badge-card {
    position: relative;
    width: 18rem;
}

.badge-svg {
    position: relative;
}

.badge-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 16px;
}

/* Divider */
/*.divider {
    width: 64px;
    height: 4px;
    background-color: #0070a8;
    border-radius: 2px;
}

.divider-white {
    width: 128px;
    height: 6px;
    background: linear-gradient(to right, #fff, #fff, var(--accent));
    border-radius: 3px;
}*/

/* Feature Items */
.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s;
}
.brush-underline-yellow, .brush-underline-sky, .brush-underline-white{
    position: relative;
}
.brush-underline-sky::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    background-image: url('../images/blue-underline.svg');
    height: 12px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}
.feature-item:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--bg-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img {
    width: 2rem;
}

/* Feature Visual */
.feature-visual {
    width: 400px;
    height: 580px;
}

.visual-bg {
    position: absolute;
    top: 32px;
    right: 0;
    width: 340px;
    height: 520px;
    border-radius: 24px;
    background: linear-gradient(135deg, #e8f4f8, #f0f7f9, #fef9f0);
}

.visual-card {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 20;
}

.card-1 {
    top: 0;
    left: 0;
    width: 160px;
}

.card-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to right, #006EA6, #0088CC);
    border-radius: 12px 12px 0 0;
}

.card-1::after {
    content: 'Peppol Certified';
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.card-1 .card-body {
    padding: 12px;
}

.card-2 {
    top: 140px;
    right: 30px;
    width: 240px;
}

.card-2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to right, #006EA6, #1a8cbe);
    border-radius: 16px 16px 0 0;
}

.card-2::after {
    content: 'E-Invoice';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.visual-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
    z-index: 20;
}

.icon-1 {
    top: 180px;
    left: 50px;
    border-color: var(--bg-light-blue);
}

.icon-2 {
    top: 350px;
    left: 45px;
    border-color: #fbbf24;
}

.icon-3 {
    top: 430px;
    left: 130px;
    border-color: #4ade80;
    animation: circlePop 0.6s ease-out;
}

.visual-icon i {
    font-size: 24px;
}

/* Notification Visual */
.notification-bg {
    background: rgba(220, 242, 251, 0.5);
    border-radius: 16px;
    padding: 24px;
    position: relative;
}

.notification-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light-blue);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-white {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
}

.bg-white-30 {
    background: rgba(255, 255, 255, 0.3);
}

/* Article & Webinar Cards */
.article-image {
    /*height: 160px;*/
    background: linear-gradient(135deg, #DCF2FB, #FFFBE5);
}

.webinar-image {
    height: 160px;
    background: linear-gradient(135deg, rgba(0, 110, 166, 0.2), #FFFBE5);
}

.play-button {
    width: 64px;
    height: 64px;
    background-color: #273a72 !important;
}

.play-button i {
    font-size: 24px;
    margin-left: 4px;
}

.hover-shadow:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
}

/* Accordion */
.accordion-button {
    background: transparent;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    box-shadow: none;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.accordion-button i {
    transition: transform 0.2s;
}
.btn-free-demo,.btn-free-demo:hover {background-color:#006ea6;}
.brush-underline-yellow::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    background-image: url('../images/yellow-underline-img.svg');
    height: 12px;
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes circlePop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkPop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.animate-circle-pop {
    animation: circlePop 0.6s ease-out;
}

.animate-check-pop {
    animation: checkPop 0.6s ease-out;
}
.card h3{
	font-size: 1rem!important;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px !important;
        min-height: auto;
        padding-bottom: 60px !important;
    }
    
    .feature-visual {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 400px;
    }

    
    .badge-card {
        width: 100%;
        max-width: 250px;
    }
    .bannerH1{
        font-size: 2.2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Form Styles */
.form-control:focus {
    border-color: rgba(13, 148, 136, 0.2);
    box-shadow: 0 0 0 0.2rem rgba(13, 148, 136, 0.1);
}

/* Card Body Padding for Visual Cards */
.card-1 .card-body,
.card-2 .card-body {
    padding-top: 40px;
}

.card-2 .card-body {
    padding-top: 56px;
}

/* Visual Card Content */
.card-header-visual {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to right, #006EA6, #0088CC);
    border-radius: 12px 12px 0 0;
}

.card-header-visual::after {
    content: 'Peppol Certified';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-body-visual {
    padding: 12px;
    padding-top: 52px;
}

.card-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 8px;
}

.card-badge {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #10b981;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 30;
    animation: circlePop 0.6s ease-out;
}

.card-badge i {
    font-size: 20px;
    animation: checkPop 0.6s ease-out;
}

.card-header-visual-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: linear-gradient(to right, #006EA6, #1a8cbe);
    border-radius: 16px 16px 0 0;
}

.card-header-visual-large::after {
    content: 'E-Invoice';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.card-badge-icon {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #006EA6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 30;
}

.card-badge-icon i {
    font-size: 20px;
}

.card-body-visual-large {
    padding: 20px;
    padding-top: 76px;
}

.card-line-large {
    height: 10px;
    background: var(--bg-light-blue);
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-line-highlight {
    height: 14px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-line-highlight:first-of-type {
    background: #fde68a;
    margin-top: 12px;
}

.card-line-highlight:last-of-type {
    background: #fdba74;
}

.accordion-button::after{
	margin-left: 0!important;
}
.pointer{
	cursor: pointer;
}
.card .getNotifiedHead{
	font-size: 1.3rem !important;
}
.btn-primary {
    background-color: #fcaf1b !important;
    color: #231f20 !important;
    border: none !important;
}
.btn-secondary{
    background-color: #f1f1f1 !important;
    border: 1.5px solid #FCAF1B !important;
    color: #000;
}
.btn-secondary:hover {
    background-color: #f1f1f1 !important;
    color: #000!important;
}
.articleImg{width: 19rem;height: 10rem;}
.small, small {
    font-size: 1rem;
}
@media (min-width: 280px) {
    .eInvoicingImg{
        width: 20rem;
    }
    .eInvoiceIllustration{
        width: 16rem;
    }
    .einvoiceFlow{width: 22rem;}
}
@media (min-width: 576px) {
    .eInvoiceIllustration {
        width: 20rem;
    }
    .eInvoicingImg {
        width: 23rem;
    }
        .einvoiceFlow {
        width: 32rem;
    }
}
@media (min-width: 768px) {
    .einvoiceFlow {
        width: 43rem;
    }
}
@media (min-width: 1024px) {
    .eInvoicingImg {
        width: 29rem;
    }
        .einvoiceFlow {
        width: 58rem;
    }
}
@media (min-width:1200px){
    .h1, h1 {
        font-size: 3rem;
    }
    .eInvoiceIllustration {
        width: 28rem;
    }
        .eInvoicingImg {
        width: 30rem;
    }
}
