 /* style.css */

* {
    font-family: 'Roboto', sans-serif;
}

/* Navbar */
/* 1. Logo Sizing (Replicates Tailwind h-20) */
.nav-logo {
    height: 80px; 
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
}

/* Slightly smaller logo on mobile so the hamburger button fits */
@media (max-width: 991px) {
    .nav-logo {
        height: 60px;
    }
}

/* 2. Nav Links (Replicates text-gray-800 and hover text-[#4A2086]) */
.custom-nav-link {
    color: #1f2937 !important; /* Tailwind gray-800 */
    transition: color 0.3s ease;
}

.custom-nav-link:hover {
    color: #4A2086 !important; /* SVisionTek Purple */
}

.btn-nav-contact {
    color: #4A2086;
    border: 2px solid #4A2086;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem; /* text-sm */
    letter-spacing: 0.05em; /* tracking-wide */
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-nav-contact:hover {
    background-color: #4A2086;
    color: #ffffff;
}


/* 4. Mobile Menu Formatting (Replicates Tailwind's border-bottom separators on mobile) */
@media (max-width: 991px) {
    .navbar-collapse {
        background-color: #ffffff;
        border-top: 1px solid #f3f4f6; /* border-gray-100 */
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
        z-index: 50;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid #f9fafb; /* border-gray-50 */
        padding: 0.5rem 0;
    }
}



/* Hero Section */
.hero-section {
    background-color: #ffffff;
    padding: 60px 0;
    min-height: 620px;
    display: flex;
    align-items: center;
    width: 100%; /* Forces the section to span the full screen */
}

/* Force the carousel to take up the full flex width */
#heroSlider {
    width: 100%;
}

/* Ensure the containers center properly inside the slider */
.hero-section .container {
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 3.1rem;
    font-weight: 700;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.highlight {
    color: #c026d3;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.6;
    margin: 20px 0 35px;
}

.btn-book-call {
    background-color: #6b46c1 !important; /* Force override to prevent Tailwind interference */
    color: white !important;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-book-call:hover {
    background-color: #553c9a !important;
    transform: translateY(-3px);
    color: white !important;
}

/* Slider Image Styling */
.slider-image {
    width: 100%;
    max-width: 500px; /* Limits how wide it can stretch */
    max-height: 480px;
    object-fit: contain;
    border-radius: 16px;
    /* Removed the heavy box-shadow if it's a transparent illustration, adjust if needed */
}

/* Carousel Indicators Fix */
.carousel-inner {
    padding-bottom: 60px; /* Creates physical space for the dots to sit inside */
}

.carousel-indicators {
    bottom: 0px; /* Moves them up into the safe padding area */
    margin-bottom: 15px;
}

/* Using !important on indicators to prevent Bootstrap/Tailwind conflicts */
.carousel-indicators button {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background-color: #d1d5db !important; /* Light gray */
    border: none !important;
    margin: 0 6px !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

.carousel-indicators button.active {
    background-color: #6b46c1 !important; /* Brand purple */
    width: 30px !important; /* Makes the active dot a nice pill shape */
    border-radius: 10px !important;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-section {
        padding: 40px 0;
    }
}

/* Purple Divider CSS */
.purple-divider {
    height: 6px;
    background: linear-gradient(90deg, #6a0dad, #9b59b6, #6a0dad);
    width: 100%;
    margin: 0 auto;
}
/* Purple Divider */
.purple-divider {
    height: 6px;
    background: linear-gradient(90deg, #6a0dad, #9b59b6, #6a0dad);
    width: 100%;
}

/* Trusted Partner Section - Light Background */
.trust-section {
    background-color: #ffffff;           /* White background */
    padding: 80px 0;
}

.section-title {
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.text-primary {
    color: #6a0dad !important;
}

.btn-purple {
    background-color: #6a0dad;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background-color: #4a0b8c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

.hero-image {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-height: 420px;
    object-fit: cover;
    width: 100%;
}

/* Container styling to hold the background image */
.ai-banner {
    width: 100%;
    min-height: 400px; 
    background-image: url('compressed/brain.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 16px;
}

/* Text styling */
.ai-banner-content h1 {
    color: #ffffff;
    font-size: 3.4rem; 
    font-weight: 600;
    font-family: 'Roboto', 'Inter', sans-serif;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    
    text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.6); 
}

/* Tablet Responsiveness */
@media (max-width: 992px) {
    .ai-banner {
        min-height: 350px;
    }
    .ai-banner-content h1 {
        font-size: 2.8rem;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .ai-banner {
        min-height: 250px;
    }
    .ai-banner-content h1 {
        font-size: 2rem;
    }
}

.solutions-section {
  background: #f8f9fa;
  padding: 80px 0;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #000000;
}

.solution-card {
  background: white;
  border: 2px solid #8b5cf6;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  min-height: 265px;           /* Rectangular height */
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(139, 92, 246, 0.15);
  border-color: #6d28d9;
}

.card-icon {
  font-size: 2.6rem;
  color: #8b5cf6;
  margin-bottom: 18px;
  text-align: left;
}

.solution-card h5 {
  font-weight: 700;
  font-size: 1.2rem;
  color: #111827;
  margin-bottom: 12px;
  text-align: left;
}

.solution-card p {
  color: #4b5563;
  line-height: 1.6;
  text-align: left;
  flex-grow: 1;               /* This pushes button to bottom */
  margin-bottom: 18px;
}

.explore-link {
  color: #8b5cf6;
  font-weight: 500;
  text-decoration: none;
  margin-top: auto;           /* Pushes button to bottom */
  display: inline-block;
  text-align: left;
}

.explore-link:hover {
  color: #6d28d9;
}

/* Responsive */
@media (max-width: 768px) {
  .solution-card {
    min-height: 240px;
    padding: 25px 20px;
  }
}
/* WHY US */
.why-us {
  background: #f9f7fc;
}

.why-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 500;
  color: #444;
}

/* PURPLE ROUND ICON */
.why-list .icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(45deg, #6a11cb, #8e44ad);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 14px;
}

.why-img {
  max-width: 85%;
}


/* BUILD TEAM */
.build-team {
  background: #ffffff;
}

.team-img {
  max-width: 85%;
}
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.why-list li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-weight: 500;
  color: #444;
}

/* PURPLE CIRCLE */
.tick {
  width: 26px;
  height: 26px;
  background: linear-gradient(45deg, #6a11cb, #8e44ad);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  margin-right: 12px;
  flex-shrink: 0;
}

/* WHITE TICK */
.tick::after {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
/* ICON STYLE (MATCHES IMAGE 🔥) */
.p-icon {
  width: 40px;
  height: 40px;
  stroke: #7b2cbf;   /* purple outline */
  stroke-width: 2;
  margin-bottom: 10px;
}

/* BOX */
.process-box {
  max-width: 260px;
  margin-bottom: 20px;
}

.process-box h6 {
  font-weight: 600;
  margin-top: 10px;
}

.process-box p {
  font-size: 13px;
  color: #666;
}

/* LINE */
.timeline-line {
  position: relative;
  height: 2px;
  background: #d6c6f3;
  margin: 40px auto;
  width: 80%;
}

.timeline-line span {
  width: 10px;
  height: 10px;
  background: #7b2cbf;
  border-radius: 50%;
  position: absolute;
  top: -4px;
}

/* DOTS POSITION */
.timeline-line span:nth-child(1) { left: 0%; }
.timeline-line span:nth-child(2) { left: 25%; }
.timeline-line span:nth-child(3) { left: 50%; }
.timeline-line span:nth-child(4) { left: 75%; }
.timeline-line span:nth-child(5) { left: 100%; transform: translateX(-100%); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .timeline-line {
    display: none;
  }
}
.cta-section {
  background: linear-gradient(135deg, #503f77, #503f77); 
  /* soft purple → light blue mix like your pic */
  
  min-height: 300px;
  padding: 80px 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

/* TITLE */
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* TEXT */
.cta-text {
  max-width: 650px;
  margin: 0 auto 28px;
  font-size: 14px;
  line-height: 1.6;
  color: #f7f3ff;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  padding: 9px 24px;
  background: #ffffff;
  color: #7b2cbf;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #f2f2f2;
}

.faq-section {
    background: #fff;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #111;
}

.faq-accordion .accordion-item {
    border: 1px solid #d9c7ff;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 24px;
    background: #fff;
    color: #111;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f7f2ff;
    color: #6f42c1;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-accordion .accordion-body {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    padding: 20px 24px;
    background: #fff;
}

/* HERO IMAGE FIX */
.slider-image {
  max-width: 90%;   /* reduce size */
  height: auto;
}

/* PERFECT ALIGNMENT */
@media (min-width: 992px) {
  .slider-image {
    max-width: 85%;  /* slightly smaller on desktop */
  }
}