/* MAIN BODY */

/*-------------BEGIN HOME PAGE-----------------*/

html body { 
    font-family: Arial, sans-serif;
    background-color: #0b1220;
    color: #000000; 
    height: 100%;
    width: 100%;  
}

/* Prevent fixed-top navbar from overlapping page content */
body { 
  padding-top: 104px;  /* try 88–120px depending on your navbar height + margin */
  background: linear-gradient(to bottom, #060b18, #0b1220);
}
/* Hover at top edge to reveal navbar */
.reveal-zone {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 16px;         /* hover area */
  z-index: 1029;        /* just under navbar */
  pointer-events: auto;
}

/*---------------------NAVBAR BASE-START-----------*/
/*---------------------NAVBAR BASE-----------*/
.custom-navbar {
  background: rgba(15, 23, 42, 0.7);          /* glass */
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 1.5rem;
  margin: 1rem auto;                          /* you’re using fixed-top; margin pushes it down */
  max-width: 95%;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);

  /* NEW: smooth hide/show + on-top */
  transition: transform 0.25s ease, background-color 0.2s ease;
  will-change: transform;
  z-index: 1030;                              /* above page content */
}

/* Hide state (applied by JS) */
.custom-navbar.nav-hidden {
  transform: translateY(-150%);
}

/* Subtle darker bg after you start scrolling (applied by JS) */
.custom-navbar.scrolled {
  background-color: rgba(15, 23, 42, 0.9);
}

  
  .navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
  }
  
  .navbar-nav .nav-link {
    color: #fff !important;
    margin-left: 1rem;
    font-weight: 500;
  }
  
  .navbar-nav .nav-link:hover {
    color: #0dcaf0 !important; /* Bootstrap’s info blue */
  }
  
  .btn.btn-primary {
    background-color: #007bff;
    border: none;
  }
  
  .btn.btn-primary:hover {
    background-color: #0056b3;
  }
  

p {
  background-color: transparent;
  color: #000;
  display: block;            /* normal flow */
}

#bootstrap_navbar{
    width: 100vw;
}

/*------------END BASE-NAVBAR-----------*/
.hero-text h2.hero-brand-banner {
    font-size: 4rem;
    letter-spacing: 3px;
    font-weight: bold;
    color: #00f7ff;
    text-shadow: 0 0 10px #00f7ff, 0 0 20px #007a91, 0 0 40px #007a91;
    animation: pulseGlow 2s ease-in-out infinite;
}

.hero-text h2.hero-brand-slogan {
    font-size: 1.75rem;
    color: #ffffff;
    font-weight: 300;
    margin-top: 1rem;
    text-shadow: 0 0 5px #aaa;
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 10px #00f7ff, 0 0 20px #007a91, 0 0 40px #007a91;
    }
    50% {
        text-shadow: 0 0 20px #00f7ff, 0 0 30px #00c3e3, 0 0 60px #00c3e3;
    }
}
/*--------MOVING-IMAGE-----*/
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

#background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    color: cyan;
    text-shadow: 0 0 10px cyan, 0 0 20px cyan;
}

.hero-slogan {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 0 5px black;
}
#background-video {
    background: red;
  }

/*-------------END MOVING PART---------*/

.hero-image {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
    url("/static/business_profiles/images/tentacull_logo_hero_image.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
    position: relative;
}

.parallax-section {
    position: relative;
    background-color: #0f172a; /* or your section background */
    padding: 100px 0;
    z-index: 1;
}

.parallax-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 200px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.6), transparent);
    pointer-events: none;
    z-index: 2;
}

.parallax-content {
    color: #fff;
}

.image-side img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.gradient-transition::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
    width: 100%;
    background: linear-gradient(to bottom, rgba(15,23,42,0.8), #0b1220);
    animation: pulseGradient 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulseGradient {
    0%, 100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

.parallax-content h2,
.parallax-content h5 {
    color: #ffffff;
    transition: text-shadow 0.3s ease-in-out;
}

.parallax-content h2:hover,
.parallax-content h5:hover {
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
}

.btn-primary {
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.btn-primary:hover {
    box-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 30px #0ff;
    transform: scale(1.05);
}

.glow-pulse {
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 10px #0ff;
    }
    50% {
        text-shadow: 0 0 20px #0ff, 0 0 40px #0ff;
    }
}

.button{
    font-size: medium;
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    font-family: Arial, Helvetica, sans-serif;
}
.content h1{
    font-size: 3rem;
}

/*-----------INTRODUCTION-------*/

.parallax-section {
    background-image: url('{% static "business_profiles/images/parallax_background.jpg" %}');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100vw;
    position: relative;
}

.parallax-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 0;
}

.parallax-content {
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #007bff;
    color: white;
}

.parallax-content p {
    color: white !important;
}

.parallax-content h2 {
    color: #007bff;
}


section.parallax-section p {
    color: #ffffff;
}


/* Call to Action */
.contact {
    text-align: center;
    background-color: black;
}

.btn {
    display: inline-block;
    background: #cc0011;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
}

.btn:hover {
    background: #c60f2b;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/*-----CARDS-----*/
.our_services_heading{
    font-size: 5vw;
    justify-content: center;
    color: rgb(60, 167, 216);
}


#Services_Backdrop{
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)),
    color(#ffff),
    url("/static/business_profiles/images/tentacull_tech_bg.svg");
    height: 100%;
    width: 100vw;
}

#card-sections{
    display: flex;
    align-items: center;
}

.service-section {
    background-color: #0f172a; /* dark background */
    color: #fff;
  }
  
  .service-card {
    background-color: #111827;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 transparent;
    color: whitesmoke;
  }
  
  .service-card:hover {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.1);
    transform: translateY(-5px);
  }
  
  .service-icon img {
    filter: brightness(0) invert(1); /* Make SVG white if not already */
  }
  
  .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .service-text {
    font-size: 0.95rem;
    color: #cbd5e1; /* soft light gray */
  }
  .service-card p {
    color: white !important
  }

#call_to_action{
    display: flex;
    align-items: center;
    background-image: url("/static/business_profiles/images/art-2.jpg");
    height: 100vh;
    width: 100vh;
}

.container-full {
  height: 100%;
  width: 100vw;
}


.list_unstyled {
    background-color: red;
}
.cta-banner {
    background-image: url('/static/business_profiles/images/tentacull_logo_hero_image_upside_down.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 450px;
}

.cta-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* dark overlay */
    z-index: 0;
}

.cta-banner .container {
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    color: #007bff;
    font-size: 2rem;
}

.cta-banner p {
    color: white !important;
    font-size: 1.1rem;
}


.cta-banner .btn {
    padding: 10px 20px;
    font-size: 1rem;
}
/*-------------END HOME PAGE-----------------*/


/*/*--------SERVICES PAGE-------*/
/*/* SERVICES PAGE */

/*.services-hero-section {
/*  padding-top: 5rem;
/*  padding-bottom: 5rem;
/*}
/*

/*}
/*

/*}

/*.services-focus ul li {
/*  font-size: 1.1rem;
/*  margin-bottom: 0.5rem;
/*}

/*.btn-outline-light {
/*  border: 2px solid #ffffff;
/*  transition: all 0.3s ease;
/*}

/*.btn-outline-light:hover {
/*  background-color: #0ff;
/*  color: #000;
/*  border-color: #0ff;
/*}
/*
/*.fade-in {
/*    opacity: 0;
/*    transform: translateY(30px);
/*    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
/*}

/*#row1 {
/*    height: 100vh;
/*    width: 100vw;
/*    display: inline-flex;
/*    background-image: url("/static/business_profiles/images/tech-11.jpg");    
/*}

/*#row2 {
/*    height: 100vh;
/*    width: 100vw;
/*    display: inline-flex;
/*    background-image: url("/static/business_profiles/images/tech-11.jpg");    
/*}

/*.service ul {
/*    list-style: none;
/*    padding: 0;
/*}

/*.service ul li {
/*    font-size: 1.1em;
/*}
/*@keyframes fadeIn {
/*    0% {
/*      opacity: 0;
/*    }
/*    100% {
/*      opacity: 1;
/*    }
/*  }
  
/*  .fade-in {
/*    animation: fadeIn 2s ease-in-out forwards; /* Ensure final state is maintained */
/*    position: relative;  /* Ensures proper layout */
/*  }

/*.services-focus-heading {
/*    font-size: 2rem;
/*    font-weight: 600;
/*    color: #2563eb; /* blue for brand pop */
/*}

/*.services-focus {
/*    list-style: none;
/*    padding: 0;
/*}

/*.services-focus li {
/*    font-size: 1.1rem;
/*    margin-bottom: 0.75rem;
/*    line-height: 1.6;
/*}

/*----------END SERVICES PAGE -------*/


/*--------------------SEARCH PAGE------------ */
#Search-Form {
    background-image: url("/static/business_profiles/images/enrichment_background_form.png");
    color: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    height: 100vh;
    width: 100vw;

    display: flex;
    flex-direction: column;
    justify-content: center; /* vertical center */
    align-items: center;     /* horizontal center */

    position: relative;
    z-index: 0;
}
#Search-Form form {
    margin-top: 60px; /* adjust based on navbar height */
}


#Search-Form input[type="text"],
#Search-Form input[type="search"],
#Search-Form select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid #0ff;
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 4px rgba(0, 255, 255, 0.2);
}

#Search-Form input[type="text"]:focus,
#Search-Form input[type="search"]:focus,
#Search-Form select:focus {
    outline: none;
    border-color: #0ff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.6);
    background-color: rgba(255, 255, 255, 0.1);
}

#Search-Form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}
#Search-Form p label {
    color: white !important;
}

/*--------END SEARCH FORM-------*/


/*-----------------ENRICHMENT PAGE-------------------- */
/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), #0f172a),
                url('/static/business_profiles/images/hero_image.jpg') center center no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;  /* Padding for the top to prevent navbar overlap */
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* Form Section */
.form-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Adding shadow to form */
    padding: 40px 20px;
}

.form-section .form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ccc;
}

.form-section .btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.form-section .btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
}

/* Info Section */
.info-section {
    background-color: #f8fafc;
    padding: 60px 0;
}

.info-section h2 {
    font-size: 2rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.info-section ul li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

/*---------------END ENRICHMENT PAGE------------*/



/*-----------BUSINESS_INTELLIGENCE_PAGE----------*/
.bi-hero-section {
    background: url('/static/business_profiles/images/bi_hero_banner.png') center center no-repeat;
    background-size: cover;
    height: 100vh;
    position: relative;
    text-align: center;
    padding-top: 100px;
}

.bi-title {
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}

.bi-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1 !important;
    margin-top: 1rem;
}

.bi-overview-section {
    background: #ffffff;
    color: #1f2937;
}

.bi-heading {
    color: #2563eb;
    font-size: 2rem;
    font-weight: 600;
}

.bi-points {
    list-style: none;
    padding-left: 0;
}

.bi-points li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    color: #374151;
}

.bi-cta-section {
    background-color: #0f172a;
    color: white !important;
}

.bi-cta-section p {
    color: white !important;
}


/* -------- Contact Page Styling -------- */

.contact-hero-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #0f172a),
                url('/static/business_profiles/images/search_banner.png') center center no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;  /* Added padding to make room for the navbar */
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1 !important;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}



.contact-form-section {
    background-color: #ffffff;
}

.contact-form-section label {
    font-weight: 500;
    color: #1f2937;
}

.contact-form-section .form-control {
    border-radius: 5px;
    padding: 10px;
}

.contact-form-section .btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.contact-form-section .btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
}

/*-------------SEARCH INDUSTRY FORM---------*/
.search-form-section {
    background-color: #ffffff;
    border-radius: 8px; /* rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* subtle shadow for the form */
    padding: 40px;
}

.search-form-section .form-control {
    border-radius: 5px;
    padding: 10px;
    border: 1px solid #ddd; /* lighter border color */
}

.search-form-section .btn-primary {
    background-color: #2563eb;
    border-color: #2563eb;
}

.search-form-section .btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
}

.search-hero-section {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), #0f172a),
                url('/static/business_profiles/images/search_banner.png') center center no-repeat;
    background-size: cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px;  /* Added padding to make room for the navbar */
}

.search-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.7);
}

.search-subtitle {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-top: 0.5rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}


/*----------------REGISTRATION FORM---------------->*/
/* Applies only to the register page */
.register-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;  /* Give it breathing room from the navbar */
    padding-bottom: 60px;
}

/* Styles the registration card */
.register-page .card {
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background-color: #ffffff;
}

/* Style the heading inside the card */
.register-page .card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Style form inputs for consistency */
.register-page .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}

/* Style the register button */
.register-page button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    border-radius: 6px;
    transition: background-color 0.2s ease-in-out;
}

.register-page button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Style the bottom link */
.register-page .text-center {
    margin-top: 15px;
    font-size: 0.95rem;
}

/*---------------END REGISTRATION FORM------------*/

/*------------------LOGIN PAGE START--------------*/
.login-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    /*display: flex;
    justify-content: center;
    align-items: center;*/
    padding-top: 60px;
    padding-bottom: 60px;
}

.login-page .card {
    width: 100%;
    max-width: 500px;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    background-color: #ffffff;
}

.login-page .card h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-page .form-group input {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
}

.login-page button[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 12px;
    font-size: 1rem;
    width: 100%;
    border-radius: 6px;
    transition: background-color 0.2s ease-in-out;
}

.login-page button[type="submit"]:hover {
    background-color: #0056b3;
}

.login-page .text-center {
    margin-top: 15px;
    font-size: 0.95rem;
}


/* Override Direct Competitor Assessment width */
.dc-card {
    max-width: 80vw !important;   /* or 75vw */
}

/*---------------LOGIN PAGE END------------*/