@font-face {
     font-family: 'Comfortaa';
     src: url('assets/fonts/comfortaa/comfortaa-400.woff2') format('woff2');
     font-weight: 400;
     font-style: normal;
     font-display: swap;
 }

 @font-face {
     font-family: 'Comfortaa';
     src: url('assets/fonts/comfortaa/comfortaa-700.woff2') format('woff2');
     font-weight: 700;
     font-style: normal;
     font-display: swap;
 }

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

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
     background: #f4f7fd;
 }

 /* Hero Section */
.hero {
    background-image: url('assets/hero/images/hero-bg-small.jpg');
    color: white;
    min-height: 95vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    background: transparent;
    box-shadow: none;
    padding: 12px 40px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.sticky-header.scrolled {
    background: linear-gradient(135deg, #001e5a, #00134d);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.sticky-header .container-fluid {
    padding: 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.sticky-header .logo-image {
    width: 270px;
    height: auto;
}


@media (min-width: 992px) { 
  .hero-right-section {
    margin-bottom: 8rem !important;
  }
  .hero-logo-image {
    width: 625px !important;
    margin-left: -35px;
  }
}

@media (max-width: 991px) { 
  .hero-logo-image {
    width: 350px !important;
   }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        background-position: top;
    }
}

 .hero-section {
    position: relative;
 }

 .hero-dashboard {
    position: absolute;
    right: -205px;
    bottom: -525px;
    width: 700px;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(30,58,138,0.8);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(37,99,235,0.8);stop-opacity:1" /></linearGradient></defs></svg>');
     opacity: 0.3;
 }

 .hero-subtitle-section {
     display: flex;
     justify-content: space-between;
     align-items: self-end;
     gap: 50px;
     flex-direction: column;
     padding-top: 19%;
 }

 .container {
     max-width: 100%;
     padding: 0 40px;
     position: relative;
     z-index: 1;
 }

 .logo {
     padding-top: 20px;
     text-align: left;
     font-size: 32px;
     font-weight: 700;
     letter-spacing: 2px;
     margin-bottom: 0px;
 }

 .logo-subtitle {
     text-align: right;
     font-size: 12px;
     font-weight: 400;
     letter-spacing: 1px;
 }

 .hero-content {
     display: flex;
     justify-content: space-evenly;
     padding-top: 230px;
     padding-left: 560px;

 }
 .hero-logo-image {
        height: auto;
 }

 .hero-text h1 {
     width: 340;
 }

 .hero-subtitle {
     font-size: 39px;
     font-weight: 400;
     line-height: 1.4;
 }

 .hero-subtitle-img {
     padding-right: 155px;
 }

 @media (max-width: 968px) {
     .hero-subtitle-img {
         padding-right: 8px;
     }
 }

 .hero-text h2 {
     font-size: 42px;
     font-weight: 300;
     line-height: 1.3;
 }

 .hero-image {
     text-align: center;
 }

 .mockup-image {
     max-width: 100%;
     border-radius: 8px;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .tagline {
     font-size: 28px;
     padding: 20px 20px 0px 20px;
     text-align: center;
     background: #f4f7fd;
 }

 /* Features Section */
 .features {
     padding: 40px 20px;
     background: #f4f7fd;
 }

 .features-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 40px;
     margin-top: 60px;
 }

 .feature-card {
     background: white;
     padding: 40px;
     border-radius: 4px;
     text-align: center;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     opacity: 0;
     height: 390px;
     transition: opacity 0.6s ease-in, transform 1.2s ease-out;
 }

 .feature-card.animate {
     opacity: 1;
     transform: translateY(0);
 }



 .feature-card:hover {
     box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     margin: 0 auto 30px;
     background: linear-gradient(135deg, #3b82f6, #2563eb);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 36px;
     color: white;
 }

 .feature-card h3 {
     font-size: 24px;
     margin-top: 20px;
     margin-bottom: 20px;
     color: #1e293b;
 }

 .feature-card p {
     color: #64748b;
     line-height: 1.8;
 }

 /* Security Section */
 .security {
     padding: 40px 20px;
     background: #f4f7fd;
 }

 .section-title {
    padding-top: 10px;
     font-size: 32px;
     text-align: start;
     margin-bottom: 16px;
     color: #1e293b;
 }

 .section-subtitle {
     text-align: start;
     color: #64748b;
     font-size: 18px;
     max-width: 900px;
     line-height: 1.8;
     padding-bottom: 30px;
 }

 .security-content {
     display: flex;
     align-items: center;
     justify-content:space-between;
     margin-top: 60px;
 }

 .security-image img {
     border-radius: 12px;
 }

 .security-image-section {
     display: flex;
     justify-content: flex-start;
 }

 @media (max-width: 968px) {
     .security-image-section {
         justify-content: center;
     }
 }

 .security-column1 {
     display: flex;
     flex-direction: column;
     margin-left: 100px;
     width: 50%;
     gap: 20px;
 }

 .security-column2 {
     display: flex;
     flex-direction: column;
     margin-left: 100px;
     width: 50%;
     gap: 20px;
 }

 .security-features {
     display: flex;
 }

 .security-item {
     display: grid;
     grid-template-columns: 60px 1fr;
     gap: 20px;
 }

 /* initial hidden state */
 .security-image,
 .security-features {
     opacity: 0;
     transition: all 0.3s ease-in-out;
 }

 .security-features {
     transition-delay: 0.2s;
 }

 .security-image {
     transform: translateX(-120px);
 }

 .security-features {
     transform: translateX(120px);
 }

 .security-image.animate,
 .security-features.animate {
     opacity: 1;
     transform: translateX(0);
 }


 .security-item-icon {
     width: 50px;
     height: 50px;
     background: #eff6ff;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2563eb;
     font-size: 24px;
 }

 .security-item h3 {
     font-size: 22px;
     margin-bottom: 10px;
     color: #1e293b;
 }

 .security-item p {
     color: #64748b;
     line-height: 1.7;
 }


 .workflow-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 25px;
 }

 .workflow-item img {
     width: 50px;
     height: 50px;
     margin-right: 20px;
     flex-shrink: 0;
 }

 .workflow-item h3 {
     margin-top: 0;
     font-size: 1.25rem;
 }

 .workflow-image img {
     max-width: 100%;
     height: auto;
     margin-bottom: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 @media (max-width: 991.98px) {
     .row.align-items-center {
         padding-top: 20px;
     }
 }

 .workflows {
     padding: 40px 20px;
     background: #f4f7fd;
 }

 .workflows-content {
     display: flex
 }

 .workflow-items {
     display: grid;
     grid-template-columns: 60px 1fr;
     gap: 20px;
 }

 .workflow-item {
     display: grid;
     grid-template-columns: 60px 1fr;
     gap: 20px;
 }

 .workflow-icon {
     width: 50px;
     height: 50px;
     background: white;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2563eb;
     font-size: 24px;
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
 }

 .workflow-item h3 {
     font-size: 22px;
     margin-bottom: 10px;
     color: #1e293b;
 }

 .workflow-item p {
     color: #64748b;
     line-height: 1.7;
 }

 .workflow-image img {
     max-width: 100%;
     border-radius: 12px;
     padding-left: 8%;
 }

 .workflows-content {
     display: flex;
 }

 /* initial hidden state */
 .workflows-content,
 .workflow-image {
     opacity: 0;
     transition: opacity 0.3s ease-out, transform 0.3s ease-out;
 }

 .workflows-content {
     transform: translateX(-120px);
 }

 /* image from RIGHT */
 .workflow-image {
     transform: translateX(120px);
 }

 /* when visible */
 .workflows-content.animate,
 .workflow-image.animate {
     opacity: 1;
     transform: translateX(0);
 }

 .workflow-image {
     transition-delay: 0.2s;
 }


 /* Collaboration Section */
 .collaboration {
     padding: 40px 20px;
     background: #f4f7fd;
 }

 .collaboration-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
     margin-top: 60px;
 }

 .collab-image img {
     max-width: 100%;
     border-radius: 12px;
 }

 .collab-features {
     display: grid;
     gap: 40px;
 }

 /* Contact Section */
 .contact {
     padding: 80px 20px;
     background: #f4f7fd;
 }

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

 .contact-text h2 {
     font-size: 42px;
     margin-bottom: 30px;
     color: #1e293b;
 }

 .contact-text p {
     font-size: 20px;
     color: #0f1113;
     line-height: 1.8;
 }

 .contact-form {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);

 }

 @media (max-width: 968px) {
    .contact-form {
        padding: 20px;
    }
 }

 .form-title {
     font-size: 24px;
     color: #2162C6;
     margin-bottom: 30px;
 }

 .form-group {
     margin-bottom: 25px;
 }

 .form-group label {
     display: block;
     margin-bottom: 8px;
     color: #475569;
     font-size: 14px;
 }

 .form-group input,
 .form-group textarea {
     width: 100%;
     padding: 14px;
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     font-size: 15px;
     background: #f4f7fd;
     transition: all 0.3s;
 }

 .form-group input:focus,
 .form-group textarea:focus {
     outline: none;
     border-color: #2563eb;
     background: white;
 }

 .form-group textarea {
     min-height: 120px;
     resize: vertical;
 }

 .submit-btn {
     width: 100%;
     padding: 16px;
     background: #2162C6;
     color: white;
     border: none;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: background 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
}

 .submit-btn:hover {
     background: #1e40af;
 }
.submit-btn:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.6;
}

.submit-btn:disabled:hover {
    background: #9ca3af;
}
 .submit-btn:hover {
     background: #1e40af;
 }

 .submit-btn:disabled {
     background: #9ca3af;
     cursor: not-allowed;
     opacity: 0.6;
 }

 .submit-btn:disabled:hover {
     background: #9ca3af;
 }
 .privacy-note {
     margin-top: 15px;
     font-size: 16px;
     color: #94a3b8;
     text-align: center;
 }

/* Header a tag style */
 .header-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 22px;
    padding: 8px 24px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

a:hover {
    color: rgb(206, 206, 206);
}

 /* Footer */
 footer {
     background: linear-gradient(135deg, #2261C6 0%, #1896DA 100%);
     color: white;
     padding: 40px 20px;
     text-align: center;
     /* height: 300px; */
 }

 footer .logo {
     font-size: 28px;
     margin-bottom: 0;
 }


 /* initial hidden state */
 .contact-text,
 .contact-form {
     opacity: 0;
     transition: opacity 0.3s ease-out, transform 0.3s ease-out;
 }

 /* left animation */
 .contact-text {
     transform: translateX(-120px);
 }

 /* right animation */
 .contact-form {
     transform: translateX(120px);
     position: relative
 }

 /* when visible */
 .contact-text.animate,
 .contact-form.animate {
     opacity: 1;
     transform: translateX(0);
 }

 .circle-overlay1 {
    position: absolute;
    top: -15px;
    right: -15px;
 }
 .circle-overlay2 {
    position: absolute;
    left: -30px;
    width: 80px;
 }


 /* Responsive */
 @media (max-width: 968px) {

     .hero-content,
     .security-content,
     .workflows-content,
     .collaboration-content,
     .contact-content {
         grid-template-columns: 1fr;
     }

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

     .hero-text h1 {
         font-size: 36px;
     }

     .hero-text h2 {
         font-size: 32px;
     }

     .workflow-image,
     .collab-image {
         order: -1;
     }
 }

 .linkedin-icon {
    width: 40px;
    height: 40px;
}

.turnstile-div{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: transparent;
  border: 1.5px solid #ffffff;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-button svg {
  fill: currentColor;
  transition: transform 0.3s ease;
}

.contact-button:hover {
  background-color: #ffffff;
  color: #000000;
}

.contact-button:hover svg {
  transform: translateX(3px);
}

@media (min-width: 768px) {
    .mt-md-custom {
        margin-top: 2.0rem !important;
    }
}


@media (max-width: 768px) {
    .mt-4 {
        margin-top: 8.5rem !important;
    }

    .logo-wrapper {
        position: static;
        margin: 20px auto 10px;
        justify-content: center;
    }

    .contact-button {
        position: static;
        display: inline-block;
        margin: 0 10%;
        text-align: center;
    }

    .hero > div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
/* Header Responsive Styles */
@media (max-width: 768px) {
    .sticky-header {
        padding: 12px 20px;
    }
    
    .sticky-header .logo-image {
        width: 140px;
    }
    
    .contact-button {
        padding: 8px 14px;
        font-size: 14px;
        gap: 6px;
    }
    
    .contact-button svg {
        width: 14px;
    }
}

@media (max-width: 480px) {
    .sticky-header {
        padding: 10px 15px;
    }
    
    .sticky-header .logo-image {
        width: 120px;
    }
    
    .contact-button {
        padding: 7px 12px;
        font-size: 13px;
        gap: 5px;
    }
    
    .contact-button svg {
        width: 12px;
    }

    .hero-subtitle {
        font-size: 35px;
    }
    .contact-button {
        margin: 0 4%;
    }
}

@media (max-width: 350px) {
    .hero-subtitle {
        font-size: 25px;
    }
}