/* Navigation */
.navbar {
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1020;
}

.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
    color: #0c0c0c8f;
}

.nav-link:hover, .nav-link.active {
    color: #000 !important;
}

.btn-nav {
    background-color: #123c78;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 500;
    height: 100%;
    text-align: center;
    text-decoration: none !important;
    display: inline-block;
}

.btn-nav:hover {
    background-color: #123c78;
    color: white;
}

/* Footer - UPDATED */
  /* Fix for footer positioning */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        body {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            position: relative;
        }

        #app {
            flex: 1 0 auto;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .main-content-wrapper {
            flex: 1 0 auto;
            width: 100%;
        }

        /* Force footer to bottom */
        .homefooter {
            flex-shrink: 0;
            margin-top: auto !important;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        /* Ensure no padding/margin issues */
        body, html, div, footer {
            box-sizing: border-box;
        }
    .homefooter { 
      background: var(--accent); 
      color: #fff; 
      padding: 60px 0 30px; 
    }
    
    .footer-column h3 { 
      margin-bottom: 20px; 
      color: #353333; 
      position: relative;
      padding-bottom: 10px;
      font-size: 1.2rem;
    }
    
    .footer-column h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: #123c78;
    }
    
    .footer-column p, 
    .footer-column li {
      opacity: 0.8;
      margin-bottom: 10px;
      font-size: 0.95rem;
      color: #000000;
    }
    
    .footer-column ul { 
      list-style: none; 
      padding: 0; 
    }
    
    .footer-column ul li { 
      margin-bottom: 10px; 
    }
    
    .footer-column ul li a { 
      color: #1b1a1a; 
      opacity: 0.8;
      transition: var(--transition);
      display: flex;
      text-decoration: none;
      align-items: center;
    }
    
    .footer-column ul li a:hover { 
      color: #0b0b0b;
      opacity: 1;
      padding-left: 5px;
    }
    
    /* Updated social icons */
    .social-icons { 
      display: flex; 
      gap: 12px; 
      margin-top: 20px;
    }
    
    .social-icons a { 
      color: #123c78; 
      width: 40px;
      height: 40px;
      border-radius: 50%; /* Round shape */
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.1);
      transition: var(--transition);
    }
    
    .social-icons a:hover { 
      background: #123c78;
      color: #fff;
      transform: translateY(-3px);
    }
    
    .contact-info {
      list-style: none;
      padding: 0;
      color: #0b0b0b;
    }
    
    .contact-info li {
      display: flex;
      align-items: flex-start;
      color: #000000;
      gap: 12px;
      margin-bottom: 18px; /* Increased spacing */
    }
    
    .contact-info i {
      color: #123c78;
      width: 20px;
      margin-top: 4px;
    }
    
    .contact-info p {
      margin: 0;
      line-height: 1.5;
      color: #0b0b0b;
    }
    
    .copyright { 
      text-align: center; 
      padding-top: 20px;
      border-top: 2px solid #123c78;
      font-size: .9rem; 
      opacity: 0.7;
      color: #000000;
    }
    
    .footer-logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 15px;
      display: inline-block;
    }
    
    .footer-links p {
      display: flex;
      align-items: center;
      margin-bottom: 15px; /* Increased spacing */
      gap: 12px;
    }
    
    /* Back to top button */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--primary);
      color: #ffffff;
      border-radius: 50%;
      border-color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: var(--shadow-lg);
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      z-index: 999;
    }
    
    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      border-color: #fff;
    }
    
    .back-to-top:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
    }
    /* Updated Footer */
    .homefooter { 
        background: #dfdfdab3; 
        color: #fff; 
        padding: 60px 0 30px; 
        margin-top: auto;
        width: 100%;
    }

    /* Rest of your footer styles... */
    .footer-column h3 { 
        margin-bottom: 20px; 
        color: #323131; 
        position: relative;
        padding-bottom: 10px;
        font-size: 1.2rem;
    }
    /* Dropdown styling fixes */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border-radius: 6px;
            margin-top: 10px;
            margin-bottom: 10px;
        }

        .dropdown-item {
            padding: 10px 20px;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover {
            background-color: #123c78;
            color: #fefefe;
            border-radius: 10px;
        }

        /* contact page css  */

.btn-contact {
    background-color: #123c78;
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 30px;
    font-weight: 500;
    height: 100%;
    width: 100%;
    text-align: center;
    text-decoration: none !important;
}
.btn-contact:hover {
    background-color: #123c78;
    color: white;
}

.main-container {
    display: flex;
    min-height: 100vh;
    background-color: #e8e8e8;
}

.left-section {
    color: rgb(0, 0, 0);
    padding: 60px 40px;
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.left-section h1 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.feature-item::before {
    content: "✓";
    background-color: #4a4a6a;
    color: rgb(255, 255, 255);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
    flex-shrink: 0;
}

.support-text {
    margin-top: 60px;
    font-size: 1rem;
    color: #a0a0a0;
    line-height: 1.5;
}

.support-link {
    color: rgb(0, 0, 0);
    text-decoration: underline;
}

.support-link:hover {
    color: #000000;
}

.right-section {
    flex: 1;
    padding: 60px 50px;
}

.form-container {
    max-width: 500px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control {
    border: 2px solid #999;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #333;
}

.form-control:focus {
    border-color: #666;
    box-shadow: none;
    background-color: transparent;
}

.form-select {
    border: 2px solid #999;
    border-radius: 4px;
    padding: 12px 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #333;
}

.form-select:focus {
    border-color: #666;
    box-shadow: none;
    background-color: transparent;
}

.goals-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
}

.goals-textarea {
    border: 2px solid #999;
    border-radius: 4px;
    padding: 16px;
    font-size: 1rem;
    background-color: transparent;
    color: #333;
    min-height: 120px;
    resize: vertical;
}

.goals-textarea:focus {
    border-color: #666;
    box-shadow: none;
    background-color: transparent;
    outline: none;
}

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

    .left-section {
        flex: none;
        padding: 40px 30px;
    }

    .left-section h1 {
        font-size: 2.5rem;
    }

    .right-section {
        padding: 40px 30px;
    }
}

/* leadership Page */

.leadership-section {
    background-color: white;
    padding: 6rem 0;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.section-title {
    font-family: "Lausanne", sans-serif;
    font-size: 3.75rem;
    font-weight: 400;
    margin: 1.5rem 0;
    line-height: 0.9em;
}

.section-title { 
    text-align: center; 
    margin-bottom: 40px;
}

.section-title h2 { 
    font-size: 2.2rem; 
    margin-bottom: 12px; 
    color: #000;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.section-title p { 
    color: var(--text-light);
    font-size: 1.2rem; 
}

.founder-card {
    text-align: center;
    margin-bottom: 2rem;
}

.founder-image {
    width: 280px;
    height: 350px;
    background-color: #e9e9e9;
    border-radius: 8px;
    margin: 0 auto 1.5rem;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
}

.founder-name {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.founder-title {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.founder-bio {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: left;
}

/* news section */

.news-section {
    background-color: var(--bg-light-gray);
    padding: 6rem 0;
}

.section-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
}

.news-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 4rem;
    color: var(--text-dark);
}

.news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 250px;
    background-color: #e9e9e9;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 2rem;
}

.news-source {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.news-headline {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-dark);
}

.media-resources {
    background: linear-gradient(135deg, #6b46c1 0%, #dc2626 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.media-text {
    font-size: 1.2rem;
    font-weight: 300;
}

.media-btn {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.media-btn:hover {
    background-color: rgba(0, 0, 0, 1);
    color: white;
}

@media (max-width: 768px) {

    .section-title {
        font-size: 2rem;
    }

    .section-title,
    .news-title {
        font-size: 2.5rem;
    }

     .founder-image {
        width: 200px;
        height: 250px;
    }

    .media-resources {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
        
    }
}

/* career section */

.careers-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.careers-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.main-heading {
    font-size: 4.5rem;
    font-weight: 400;
    color: #212529;
    margin-bottom: 2.5rem;
    line-height: 1.1;
}

.description {
    font-size: 1.25rem;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.7;
    max-width: 600px;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .careers-section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2.5rem;
    }  
}

/* our opening */

.openings-section {
    padding: 10px 0;
}

.openings-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #1a1e22;
    margin-bottom: 0;
    padding-bottom: 70px;
    line-height: 1.1;
}

@media (max-width: 768px) {
    
    .openings-section {
        padding: 60px 0;
    }
    .openings-title {
        padding-bottom: 60px;
    }
    
    .openings-title {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1.1rem;
    }

    .main-heading {
        font-size: 3rem;
    }

    .careers-section {
        padding: 40px 0;
    }


    .job-listings {
        padding-left: 0;
        margin-top: 2rem;
    }

     .cta-text-column {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .main-heading {
        font-size: 2.5rem;
    }

    .job-title {
        font-size: 1.25rem;
    }

    .openings-title {
        font-size: 2rem;
    }
}

.job-listings {
    padding-left: 2rem;
}

.category-section {
    margin-bottom: 4rem;
}

.category-section:last-of-type .job-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 2rem;
}

.category-section:last-of-type .job-item:last-child {
    border-bottom: none;
}

.job-item {
    margin-bottom: 2.5rem;
}

.job-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.2s ease;
}

.job-link:hover {
    color: #007bff;
    text-decoration: none;
}

.job-link:hover .job-title {
    color: #007bff;
}

.job-title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #212529;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.job-location {
    font-size: 1rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* our locations */

.carousel-image {
    height: 500px !important;
    width: 100% !important;
    object-fit: fill !important;
}

.our_location {

    height: 500px !important;
    width: 90% !important;
    object-fit: fill !important;
    
}

/* CTA Section */
.private-ai-cta-section {
    position: relative;
    min-height: 100vh;
    display: flex;

    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0b0b0b 100%);
}
.private-ai-cta-section {
    height: 60vh; /* Reduced height */
    width: 100%;
    overflow: hidden;
    display: flex;
   
    justify-content: center;
    align-items: center;
}

.cta-content-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding: 0 2rem;
}

.cta-text-column {
    max-width: 66.666%;
}

.cta-main-heading-company {
    font-size: clamp(3rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Glow Effect */
.animated-background-glow {
    position: absolute;
    width: 80rem;
    height: 80rem;
    background: radial-gradient(
        circle,
        rgba(237, 91, 45, 0.5) 0%,
        rgba(237, 91, 45, 0.2) 40%,
        transparent 0%
    );
    border-radius: 50%;
    filter: blur(40px);
    top: 80%;
    left: 90%;
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* vision page Css */ 

.webai-vision .vision-section {
    padding: 60px 20px;
}

.webai-vision .highlight {
    color: #007bff;
}

.webai-vision .icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.webai-vision .hero-subtitle{
	text-align: justify !important;
    margin-top: 50px !important;
  }

  .webai-vision .section-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 30px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background: #000000;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
        sans-serif;
    overflow: hidden;
}

.hero-section .container {
    max-width: 1200px;
    z-index: 2;
    margin: 150px auto auto auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        min-height: 100vh;
    }
    .hero-section .hero-image {
        position: absolute;
        bottom: -65%;
        left: 50%;
        transform: translateX(-50%);
        width: 105%;
        height: 100%;
    }

    .hero-section .hero-background {
        position: absolute;
        bottom: -70%;
        left: 50%;
        transform: translateX(-50%);
        width: 110%;
        height: 100%;
    }

    .hero-section .hero-sphere {
        position: absolute;
        bottom: -75%;
        left: 50%;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 576px) {
    
    .hero-section {
        min-height: 140vh;
    }

    .hero-section .hero-image {
        position: absolute;
        bottom: -37%;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 500px;
    }

    .hero-section .hero-background {
        position: absolute;
        bottom: -40%;
        left: 50%;
        /* transform: translateX(-50%); */
        width: 500px;
        height: 500px;
    }

    .hero-section .hero-sphere {
        position: absolute;
        bottom: -45%;
        left: 50%;
        width: 500px;
        height: 500px;
    }
}

.hero-section-download {
    background-color: #f8f9fa;
    padding: 4rem 0;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e9ecef;
}

.hero-content {
    text-align: center;
    max-width: 900px;
}

.vision-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 72px;
    font-weight: 600;
    margin-top: 32px;
    line-height: 1;
    color: #dfdfda;
}

.hero-subtitle {
    color: #828282;
    font-family: "Courier New", Courier, monospace;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

/* end user licence css */

.privacy-header {
    background-color: #000000;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.privacy-header h1 {
    font-size: 64px;
}
.privacy-header p {
    font-size: 18px;
}

.privacy-section-title {
    margin-top: 2rem;
    font-size: 2rem;
    color: #000000;
}

.privacy-header h3,
    h3,
    .privacy-section-title {
        font-size: 24px;
    }
.privacy-h2 {
    font-size: 48px;
    margin-top: 2rem;
    font-weight: bold;
    color: #000000;
}

.privacy-section-title .privacy-h2 .privacy-header h2,
    h2 {
        font-size: 32px;
    }

@media (max-width: 768px) {
    
    .privacy-header h1 {
        font-size: 40px;
    }
    .privacy-section-title .privacy-h2 .privacy-header h2,
    h2 {
        font-size: 32px;
    }
    .privacy-header h3,
    h3,
    .privacy-section-title {
        font-size: 24px;
    }
    .privacy-header p,
    p {
        font-size: 14px;
    }
  
}