@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900display=swap");

*{
    box-sizing: border-box;
    margin: 0;
    padding:0;
}
html{
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}
body{
    font-family:"inter", sans-serif;
    background-color: black;
    color:white;
}

.container{
    max-width:1440px;
    margin: 0 auto;
    background-color: #1B2A3A;
}
header{
    position:sticky;
    top:0;
    z-index: 1000;
    background-color: black;
    padding:20px 50px;
    transition: padding 0.3s ease;
    margin-bottom: 60px;
}
header.scrolled {
    background: rgba(0, 0, 0, 0.85); /* Matches your #121212 background exactly */
    backdrop-filter: blur(10px);
    padding: 16px 0; 
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);  
    
}
.navbar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo{
    flex: 0 0 auto;
    transition: filter 0.3s ease-in-out;
    
}
.logo:hover{
    filter: invert(.5) sepia(1) saturate(10) hue-rotate(190deg);
}

.logo img{
    display:block;
    height: 150px;
    width:auto;
    transform: scale(1.5);
}
.sticky-cta-btn, .final-cta-btn2{
    flex-shrink:0;
    white-space: nowrap;
    background-color: transparent;
    color: white;
    width: clamp(150px, 30vw, 250px);
    padding: 14px 50px; 
    border: 2px solid #2C75FF;
    border-radius: 10px; 
    cursor: pointer;
    font-size: 16px; 
    font-weight: 600;
    cursor:pointer;
    box-shadow: 4px 4px 4px rgb(91, 91, 224,0.3);
    transition: color 0.3s ease;
    transition: background-color 0.3s ease-in-out;
    transition: border 0.3s ease;
    }
.sticky-cta-btn:hover, .final-cta-btn2:hover{
    background-color: #2C75FF;
    color:#010144;
    border:none;
}
section{
   padding: 80px 50px;
   overflow:hidden;
   opacity: 0;
   transform: translateY(60px);
   transition: opacity 0.6s ease, transform 0.6s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom:80px;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
section:last-of-type{
    border:none;
}
.hero-container{
   display: flex;
   height:auto;
   flex-direction: column;
   gap:60px;
}
.hero-section-top{
    max-width:1340px;
    width:100%;
    display:flex;
    flex-direction: row;
    gap:40px;
}
.hero-content{
    max-width:750px;
    width:100%;
    display:flex;
    flex-direction: column;
    gap:16px;
}
.hero-headline{
   font-size:3rem;
   color: #ffffff;
   font-weight: 700;
   line-height: 1.3;
   margin-bottom: 8px;
   text-transform: capitalize;
}
.hero-subheadline{
   font-size: 20px;
   font-weight: 500;
   color: #EAF7FF;
   text-transform: capitalize;
   line-height:1.5;
}
.supporting-line{
   font-size:18px;
   color:#d1d1d6;
}
.break{
    display:inline-block;
}
.blue{
    color: #00f5e9;
}
.italic{
    font-style: italic;
}
.strong{
    font-weight:600;
}
.hero-visual {
    width: 450px; 
    /* Increase height to accommodate the 400px image + text + padding */
    height: auto; 
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: #0b111a; 
    padding-bottom: 15px; 
    border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle light border to define edges against dark bg */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5); /* Deep shadow for a 3D elevated effect */
    transition: transform 0.3s ease-in-out; /* Prepares for a subtle hover effect */
}

.hero-visual img:hover {
    transform: translateX(20px) scale(1.2); /* Subtle lift when the user hovers */
}

.hero-visual img {
    width: 100%; /* Fills the 450px width */
    height: 400px; /* Keeps your exact image height */
    display: block;
    object-fit: fill; /* Ensures the metrics aren't distorted */
}

.visual-text {
    width: 100%;
    text-align: center;
    margin-top: 15px; /* Creates the gap between image and text */
    font-size: 0.9rem;
    color: #d1d1d6;
    font-style: italic;
    font-weight: 510;
}
p{
    font-size:16px;
    line-height:1.5;
}
.section-heading{
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom:40px;
    text-align: center;
    color:#fafaf7;
    font-weight: 600;
    text-align: center; 
    margin:0 auto;
    text-transform: capitalize;
}
.section-subheading,.card-heading{
    font-size: 24px;
    margin-bottom:32px;
    color:#d1d1d6;
    text-align: center;   
    line-height: 1.8;
}
.primary-cta {
    display: flex;
    justify-content: center;
    gap: 20px; /* Space between the two buttons */
    width: 100%;

}

.primary-cta-btn{
   background-color: #010144;
   color:white;
   display: inline-flex;
   min-width: 250px;
   margin: 0 auto;
   padding: 14px 50px;
   font-size: 1rem; 
   font-weight: 600;
   border-radius:10px;
   justify-content: center;
   align-items: center;
   text-align: center;
   cursor: pointer;
   border:none;
   cursor:pointer;
   box-shadow: 4px 4px 4px rgba(0, 0, 20, 0.8);
   transition: background-color 0.3s ease;
   transition: opacity 0.3s ease-in-out;
}

.primary-cta-btn:hover,.final-cta-btn1:hover {
   background-color: #000;
   opacity: 1.2;
   transform: translateY(-2px);
}
p{
    font-size:16px;
    line-height:1.5;
    color:#bcbcc0;
}

.problem-solution-container{
    display:flex;
    flex-direction: column;
    gap: 60px;
    margin:0 auto;   
    align-items:center; 
}
.problem-solution-card-container{
    display: flex;
    width:100%;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    border: 1px solid #1f1f1f;
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    background: linear-gradient(to left, #000 50%, #2C75FF);
    padding: 32px;   
}

.problem-block, .solution-block{
    background-color: #0e1720;
    color:rgb(238, 173, 149);
    max-width: 550px;
    padding:40px;
    border-radius: 99px;
    border: 2px solid #1d2e41;
    box-shadow: 4px 4px 6px rgba(50, 76, 105,0.5);
    margin: 50px 0;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
    border: 1px solid transparent; /* Prevents layout shifting on hover */
}
.solution-block{
    background-color: #263b52;
    color: rgb(191, 243, 191);
    position:relative;
}
.solution-block .card-bulleted-list{
    list-style-type: none;
}
.solution-block .card-bulleted-list li::before{
    content: "✓";
    position: absolute;
    left:50px;
    color: rgb(191, 243, 191);
    font-weight: bold;
}
.problem-block:hover{
    /* Lifts the card up slightly */
    transform: translateY(-10px); 
    
    /* Adds a deep, soft shadow to simulate height and a subtle outer glow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 
                0 0 15px rgba(66, 133, 244, 0.15); 
}
.solution-block:hover{
    /* Lifts the card up slightly */
    transform: translateY(-10px); 
    
    /* Adds a deep, soft shadow to simulate height and a subtle outer glow */
    box-shadow: 0 20px 40px rgba(29, 29, 29, 0.6), 
                0 0 15px rgba(66, 133, 244, 0.15); 
}
.card-bulleted-list{
    padding-left: 40px;
}
.card-bulleted-list li{
    line-height: 2;
    font-size:16px;
    margin-bottom: 8px;
}
/* Container and Section Styling */
.work-proof-section {
    display:flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Grid Layout for Cards */
.work-proof-parent {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Individual Card Styling */
.work-proof-card {
    background: #121212;
    border-radius: 12px;
    padding: 32px;
    border:1px solid #1f1f1f;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap:32px;
    width: 100%;
}
.card-visual {
    width: 100%;
    background-color: #0d0d0e;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 2px solid rgba(221, 229, 243,0.2);
    border-radius:20px;
    overflow: hidden;
    box-shadow: 0 0 10px 2px rgba(44, 117, 255, 0.1);
    transition: box-shadow 0.3s ease;
}
.work-proof-card:first-of-type:hover{
    border-color: #007bff;
    transform: translateY(-10px);
}
.work-proof-card:first-of-type:hover .card-visual {
    /* Make it "light up" on hover to look premium */
    border-color: #5591FF; /* Lighter blue */
    box-shadow: 0 0 20px 3px rgba(44, 117, 255, 0.6);
    transform: scale(1.02);
}
.card-heading{
    font-size:20px;
}

#work-proof .card-heading{
    line-height: 1.3;
    min-height: 2.6em; 
    /* Ensures the text stays at the top of this reserved space */
    display: flex;
    align-items: flex-start;
}
.card-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: transparent; /* Placeholder color for "Coming Soon" */
   
    
}
.work-proof-card:nth-child(2) .card-visual img,
.work-proof-card:nth-child(3) .card-visual img {
  filter: blur(10px);
}
/* CTA Button Styling */
.work-link-cta-btn, .pricing-cta-btn {
    color:#fff;
    background-color: #2C75FF;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    width:100%;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease-out;
    margin-top: auto; /* Pushes button to the bottom if content varies */
    font-size:16px;
    letter-spacing: 0.05em;
}

.work-link-cta-btn:hover {
    background-color: #010144;
    text-decoration: underline;
}
.btn-disabled {
    background-color: #333333; /* Dark grey background */
    color: #afaeae;            /* Muted grey text */
    padding: 12px 24px;        /* Matches your blue button padding */
    border: none;
    border-radius: 8px;        /* Matches your existing corner radius */
    font-size: 16px;
    font-weight: 600;
    cursor: not-allowed;       /* Shows the 'stop' icon on hover */
    width: 100%;               /* Ensures it fills the same space */
    opacity: 0.7;              /* Optional: makes it look slightly faded */
}

.pricing-main-container {
    max-width: 1200px;
    display:flex;
    flex-direction: column;
    gap:60px;
    margin: 0 auto;
}

/* Flex/Grid Container */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

/* Pricing Card Design */
.pricing-card {
    background-color: #121212;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px 30px;
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
    box-shadow: 4px 4px rgb(18,18,18,0.5);
}

.pricing-card:hover{
    transform: translateY(-10px);
    border-color: #007bff; /* Action Blue highlight */
}


/* List Styling */
#pricing-package .card-bulleted-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    text-align: left;
    flex-grow: 1;
}

#pricing-package .card-bulleted-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    color: #d1d1d6;
    position: relative;
    padding-left: 25px;
}

#pricing-package .card-bulleted-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}
.pricing-cta-btn:hover {
    background-color: #010144;
    text-decoration: underline;
}
/* Unique class name to avoid touching your existing attributes */
.feature-check-list {
    list-style: none;
    padding: 0;
    /* Centering the container itself */
    margin: 0 auto; 
    max-width: fit-content; 
    
    display: flex;
    flex-direction: column;
    gap: 18px; 
    text-align: left; /* Keeps text aligned left while the block is centered */
}

.feature-check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size:  20px;
}

.feature-check-list li::before {
    content: "✓"; 
    color: #2C75FF;
    font-weight: bold;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}
.about-container {
    display:flex;
    flex-direction:column;
    gap:40px;
}
.about-body{
    display:flex;
    flex-direction: column;
    gap: 16px;
    width:70%;
    margin:0 auto;
}
.about-text{
    line-height:1.8;
}
/* Optional: Highlight for the mission/speed aspect */
.about-text:first-of-type {
    font-size: 18px;
    color: #d1d1d6;
    font-weight: 500;
}

.contact-container{
    display:flex;
    flex-direction: column;
    gap:80px;
    margin: 0 auto;
}
.contact-headline-frame{
    display:flex;
    flex-direction: column;
    gap:30px;
    margin-bottom: 30px;
}
#contact .section-subheading{
    text-transform: capitalize;
}

.final-cta-btn1{
   background-color: #010144;
   color:white;
   display: block;
   white-space:nowrap;
   width:fit-content;
   padding: 14px 50px;
   font-size: 1rem; 
   font-weight: 600;
   border-radius:10px;
   border:none;
   cursor:pointer;
   box-shadow: 4px 4px 4px rgba(0, 0, 20, 0.8);
   transition: background-color 0.3s ease;
   transition: opacity 0.3s ease-in-out;
}
.final-cta-container{
    display:flex;
    gap:150px;
    margin: 0 auto;
}

footer {
  background-color: #000;
  padding:80px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-container p {
  color: #A8BDD0;
  font-size: 0.85rem;
  margin: 0;
}

.footer-container a {
  color: #A8BDD0;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-container a:hover {
  color: #2C75FF;
}
.spacer{
    margin-top:16px;
    font-style:italic;
}
@media (max-width: 1024px) {
    header {
        padding: 15px 30px;
    }
    
    .logo img {
        height: 100px; /* Reduced from 150px */
        transform: scale(1.5);
    }

    .sticky-cta-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 20px;
        margin-bottom: 40px;
    }

    .logo img {
        height: 80px;
        transform: scale(1.5);
    }

    .sticky-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


@media (max-width: 360px) {
    header {
        padding: 10px 15px;
        margin-bottom: 30px;
    }

    .logo img {
        height: 80px;
        transform: scale(1.3); /* Reset scale for small screens */
    }

    .sticky-cta-btn {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 6px;
    }
}

/* Tablets - iPad Mini/Air (768px) */
@media (max-width: 1200px) {
    section {
        padding: 60px 30px;
        margin-bottom: 60px;
    }

    .hero-section-top {
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-headline {
        font-size: 2.2rem;
        text-align:center;
    }
    .disp{
       display:inline;
    }
    .hero-subheadline {
        font-size: 18px;
        text-align:center;
    }

    .hero-visual {
        width: 60%;
        order:-1;
        margin: 0 auto;
    }
    .supporting-line{
        text-wrap:balance;
        text-align: center;
    }
    .primary-cta-btn {
        min-width: 200px;
        padding: 12px 30px;
    }
}
@media (max-width: 820px){
    .disp{
        display: block;
    }
    .hero-visual {
        width: 70%;
        order:-1;
        margin: 0 auto;
    }
}
/* Small mobiles (360px) */
@media (max-width: 430px) {
    section {
        padding: 40px 15px;
        margin-bottom: 40px;
    }
    .break{
        display:inline;
    }
    .hero-headline {
        font-size: 1.8rem;
    }

    .hero-subheadline {
        font-size: 14px;
        text-transform: none;
        text-wrap:balance;
    }

    .supporting-line {
        font-size: 13px;
        text-wrap: none;
    }
    
    .hero-visual {
        width: 100%;
    }

    .hero-visual img {
        height: auto;
    }

    .primary-cta-btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
    .problem-solution-card-container {
        flex-direction: column;
        align-items: center;
        padding: 24px;
        background: linear-gradient(to bottom, #2C75FF 40%, #000 60%);
    }

    .problem-block, .solution-block {
        max-width: 100%;
        width: 100%;
        border-radius: 20px;
        margin: 10px 0;
    }
    .solution-block .card-bulleted-list li::before {
        left: 90px;
    }
    .card-bulleted-list{
        width: 90%;
        margin: 0 auto;
    }
}
@media (max-width: 820px){
    .solution-block .card-bulleted-list li::before {
        left: 100px;
    }
    .card-bulleted-list{
        width: 85%;
        margin: 0 auto;
    }
}
/* iPad Mini/Air (768px) */
@media (max-width: 768px) {
    .problem-solution-card-container {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .problem-block, .solution-block {
        max-width: 100%;
        width: 100%;
        border-radius: 20px;
        margin: 10px 0;
        padding: 30px;
    }

    .solution-block .card-bulleted-list li::before {
        left: 85px;
    }
    .card-bulleted-list{
        width: 85%;
        margin: 0 auto;
    }
    .problem-solution-container {
        gap: 40px;
    }
}

/* Small mobiles 430px - 360px */
@media (max-width: 430px) {
    .problem-solution-card-container {
        padding: 15px;
    }

    .problem-block, .solution-block {
        padding: 20px;
        border-radius: 16px;
    }

    .section-subheading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .card-bulleted-list {
        padding-left: 20px;
    }

    .card-bulleted-list li {
        font-size: 13px;
        line-height: 1.8;
    
    }

    .solution-block .card-bulleted-list li::before {
        left: 40px;
    }
    .card-bulleted-list li{
        width: 100%;
        margin: 0 auto;
        margin-bottom:10px;
    }
}

/* iPad Pro (1024px) */

@media (max-width: 1024px) {
    .work-proof-parent {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* iPad Air/Mini (768px) */
@media (max-width: 820px) {
    .work-proof-parent {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px; /* Adjust based on your design */
    }

    .work-proof-card:first-child {
        grid-column: span 2;
        /* This ensures the card doesn't stretch to the full width if you want it smaller */
        justify-self: center; 
        width: 100%; /* Or set a specific max-width like 400px if it looks too wide */
        max-width: 100%;
    }
    .work-proof-card:nth-child(2), .work-proof-card:nth-child(3){
        width:340px;
        margin: 0 auto;
    }
}

/* iPad Air/Mini (768px) */
@media (max-width: 768px) {
    .work-proof-section {
        gap: 40px;
        padding: 40px 16px;
    }
    .work-proof-card:nth-child(2), .work-proof-card:nth-child(3){
        width:320px;
        margin: 0 auto;
    }
}

/* Small mobiles 430px - 360px */
@media (max-width: 540px) {
    .work-proof-parent {
        grid-template-columns: 1fr;
    }
    .work-proof-card {
        padding: 20px;
        gap: 20px;
        width:100%;
    }
     .work-proof-card:first-child {
        grid-column: 1;
        /* This ensures the card doesn't stretch to the full width if you want it smaller */
        width: 100%; /* Or set a specific max-width like 400px if it looks too wide */
        max-width: 100%;
    }
    .work-link-cta-btn, .btn-disabled {
        font-size: 14px;
        padding: 10px 16px;
    }
    .work-proof-card:nth-child(2), .work-proof-card:nth-child(3){
        width:100%;
        margin: 0 auto;
    }
    .card-heading {
        font-size: 17px;
    }
}

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
    .pricing-container {
        flex-wrap: nowrap;
        gap: 20px;
    }

    .pricing-card {
        min-width: unset;
        max-width: unset;
        padding: 30px 20px;
        margin: 0 auto;
    }
    .feature-check-list{
        margin: 0 auto;
        padding-left:100px;
    }
    .feature-check-list li {
        font-size: 17px;
    }
    #pricing-package .card-bulleted-list{
       padding-left:20px;
    }
     #pricing-package .card-bulleted-list li{
       font-size: 13px;
    }
}

/* iPad Mini/Air (768px) */
@media (max-width: 820px) {
    .pricing-container {
        flex-wrap: wrap;
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 600px;
        min-width: unset;
    }
    #pricing-package .card-bulleted-list{  
        padding-left:120px;
    }
    .pricing-main-container {
        gap: 40px;
    }
    .feature-check-list{
        margin: 0 auto;
        padding-left:50px;
    }
    .feature-check-list li {
        font-size: 16px;
    }
}

/* Small mobiles 430px - 360px */
@media (max-width: 430px) {
    .pricing-card {
        padding: 24px 16px;
        max-width: 100%;
        margin: 0 auto;
    }

    #pricing-package .card-bulleted-list {
        padding-left: 40px;
    }

    #pricing-package .card-bulleted-list li {
        font-size: 14px;
    }

    .feature-check-list {
        padding-left: 20px;
        margin-left: 10px;
    }

    .feature-check-list li {
        font-size: 14px;
        line-height: 1.7;
        
    }

    .pricing-main-container {
        gap: 30px;
    }
}

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
    .about-body {
        width: 75%;
        text-align:center;
        text-wrap: balance;;
    }
}
@media (max-width: 820px){
    .about-body{
        width:90%;
    }
}
/* iPad Mini/Air (768px) */
@media (max-width: 768px) {
    .about-body {
        width: 95%;
    }
    .section-heading{
        text-wrap: balance;
    }
}

/* Small mobiles 430px - 360px */
@media (max-width: 430px) {
    .about-body {
        width: 100%;
    }
    .about-text{
        font-size: 15px;
    }
    .about-text:last-child {
        font-size: 13px;
    }
}

/* iPad Pro (1024px) */
@media (max-width: 1024px) {
    .final-cta-container {
        gap: 60px;
    }
}

/* iPad Mini/Air (768px) */
@media (max-width: 768px) {
    .final-cta-container {
        gap: 30px;
    }

    .final-cta-btn1 {
        padding: 12px 30px;
    }
}

/* Small mobiles 430px - 360px */
@media (max-width: 430px) {
    .final-cta-container {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        width: 100%;
    }

    .final-cta-btn1 {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .final-cta-btn2 {
        width: 100%;
        padding: 12px 20px;
    }
}