/* === Page-specific styles (for enterprise-ai, cloud-infrastructure, data-security) === */
body { 
  font-family: 'Segoe UI', sans-serif; 
  color: #333;
  padding-top: 110px; /* Account for fixed navbar */
}

section { 
  padding: 80px 0; 
}

.bg-lightgray { 
  background-color: #f8f9fa; 
}

.bg-darkblue { 
  background-color: #0a0a23; 
  color: #fff;
  padding: 180px 0 80px 0;
  min-height: 50vh;
}

.section-title { 
  font-size: 2.2rem; 
  font-weight: 700; 
  margin-bottom: 20px; 
}

.section-subtitle { 
  font-size: 1.25rem; 
  margin-bottom: 40px; 
}

.btn-primary, .btn-outline-light { 
  border-radius: 50px; 
  padding: 12px 24px;
  
}

.btn-primary:hover { 
  background-color: #084298; 
}

.card-icon { 
  font-size: 2.5rem; 
  color: #0d6efd; 
}



/* ===== Navigation ===== */
.custom-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  z-index: 1000;
}


.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand img {
  height: 90px;
}

.menu-toggle {
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Offcanvas ===== */
.offcanvas-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -6px 0 20px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
  z-index: 2000;
}

.offcanvas-menu.active {
  right: 0;
}

.offcanvas-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.1rem;
  border-bottom: 1px solid #eee;
}

.close-menu {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.offcanvas-links {
  list-style: none;
  padding: 20px;
}

.offcanvas-links li {
  margin: 18px 0;
}

.offcanvas-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.offcanvas-links a:hover {
  color: #0d6efd;
}

.cta-link {
  font-weight: 600;
  color: #0d6efd;
}


/* Nav CSS   */
.navbar-brand {
  font-weight: 700;
}

.logo-img {
  height: 40px;
  width: auto;
  image-rendering: -webkit-optimize-contrast; /* sharpens image in some browsers */
}

.nav-link {
  font-weight: 500;
  color: #333 !important;
}

/* Prevent navbar overlap */
body {
  margin: 0;
  padding: 0;
}

/* ===============================
   Partners - scrolling
================================ */

.partner-scroll {
  overflow: hidden;
  padding: 20px 0;
}

.partner-track {
  display: flex;
  gap: 60px;
  animation: scroll 20s linear infinite;
}

.partner-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.partner-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===============================
   HERO VIDEO FULLSCREEN
================================ */

.hero-video {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;  
}

/* Optional: Delete or keep this completely transparent */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 2;	
}

.hero-section {
  padding-top: 120px;
  padding-bottom: 60px;
 }

.hero-content {
  position: relative;
  z-index: 4;
  color: #ffffff;
  max-width: 900px;
  padding-top: 300px; 
  text-align: center;
 }


.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 20px;
	/* Added shadow behind hero text: */
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-size: 1.25rem;
  white-space: nowrap;
  margin-bottom: 35px;
  line-height: 1.6;
	/* Added shadow behind hero text: */
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons .btn {
  margin: 0 10px;
  min-width: 240px; /* Optional: Ensures equal button width */
}

/* Reduce bottom spacing */
.hero-section .hero-buttons {
  margin-top: 30px;
  margin-bottom: 0;
}

/* ===== Hero for mobile ===== */

@media (max-width: 768px) {
  .hero-content {
    margin-top: 200px;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* darker on smaller screens */
  }
}

/* ===== Card titles ===== */

.card-title {
  font-size: 1.25rem;
  color: #0a0a23;
}

.card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* ===== Flipping card content ===== */

/* Equal height enforcement for flip cards */
.flip-card,
.flip-card-inner,
.flip-card-front,
.flip-card-back {
  height: 100%;
  min-height: 300px; /* You can adjust this height as needed */
}

.flip-card {
  background-color: transparent;
  width: 300px;
  height: 250px;
  perspective: 1000px;
  margin: 10px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px;
  backface-visibility: hidden;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
  transform: rotateY(180deg);
}


.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #6c757d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
}

.card-icon i {
  transition: all 0.3s ease;
}

.card:hover .card-icon i {
  transform: scale(1.1);
  color: #003d82;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 8px 16px;
  background-color: #0d6efd;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* ===== End flipping card content ===== */

#solutions {
  background-color: #f8f9fa;
}

/*------------------------------
   Use case selection
--------------------------------*/
.card-img-top {
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #ddd;
}

#use-cases .card:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}


.bg-soft-blue {
  background-color: #f4f7fb;
}

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

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
}

.btn-outline-dark {
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-dark:hover {
  background-color: #000;
  color: #fff;
  border-color: #000;
}




/*------------------------------
   Resources selection
--------------------------------*/

#resources .btn-outline-primary {
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
}

#resources .btn-outline-primary:hover {
  background-color: #0d6efd;
  color: #fff;
}


/* =============================================
   RESOURCES PAGE STYLES
   ============================================= */

/* Featured banner */
.featured-resource {
  background: linear-gradient(135deg, #0a0a23 0%, #0d3a7a 100%);
  border-radius: 12px;
  padding: 44px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 36px;
}
.featured-resource .feat-icon { font-size: 60px; flex-shrink: 0; opacity: 0.85; }
.featured-resource .feat-badge {
  background: rgba(255,255,255,0.15);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 12px; border-radius: 50px;
  display: inline-block; margin-bottom: 10px;
}
.featured-resource h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 8px; }
.featured-resource p  { font-size: 15px; opacity: 0.85; margin-bottom: 22px; max-width: 560px; }
.btn-featured {
  background: #fff; color: #0a0a23;
  font-weight: 700; font-size: 14px;
  padding: 12px 28px; border-radius: 50px;
  border: none; text-decoration: none; display: inline-block;
  transition: background 0.2s;
}
.btn-featured:hover { background: #e0e8ff; color: #0a0a23; }

/* Filter tabs */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-tabs button {
  background: #fff; border: 1.5px solid #ced4da; border-radius: 50px;
  padding: 8px 22px; font-size: 13px; font-weight: 600; color: #495057;
  cursor: pointer; transition: all 0.2s;
}
.filter-tabs button.active,
.filter-tabs button:hover { background: #0a0a23; border-color: #0a0a23; color: #fff; }

/* Resource cards */
.resource-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s;
  height: 100%; display: flex; flex-direction: column;
}
.resource-card:hover { transform: translateY(-5px); box-shadow: 0 0 15px rgba(0,0,0,0.1); }

.card-tag {
  display: inline-block; font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 12px; border-radius: 50px; margin-bottom: 14px;
}
.tag-whitepaper { background: #e8f0fe; color: #1a56db; }
.tag-guide      { background: #ecfdf5; color: #047857; }
.tag-casestudy  { background: #fff7ed; color: #c2410c; }
.tag-webinar    { background: #f5f3ff; color: #6d28d9; }
.tag-checklist  { background: #fff1f2; color: #be123c; }

.resource-card h5 { font-size: 16px; font-weight: 700; color: #0a0a23; margin-bottom: 10px; }
.resource-card p  { font-size: 14px; color: #666; flex: 1; margin-bottom: 20px; }
.resource-card .btn { align-self: flex-start; font-size: 13px; }

/* Newsletter strip */
.newsletter-strip {
  background: #f8f9fa; border: 1px solid #dee2e6;
  border-radius: 12px; padding: 44px 40px; text-align: center;
}
.newsletter-strip h4 { font-size: 1.5rem; font-weight: 700; color: #0a0a23; margin-bottom: 10px; }
.newsletter-strip p  { color: #666; font-size: 15px; margin-bottom: 24px; }
.newsletter-strip .input-group { max-width: 480px; margin: 0 auto; }

/* Filter hide */
.resource-item.hidden { display: none; }

@media (max-width: 767px) {
  .featured-resource { flex-direction: column; padding: 32px 24px; gap: 20px; }
  .featured-resource .feat-icon { font-size: 40px; }
}

/*------------------------------
   White Papers custom selection
--------------------------------*/

#white-papers .btn {
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
}

/* -----------------------------------
   Custom Section: Industries We Serve
----------------------------------- */
.industry-card {
  background-color: #ffffff; /* Solid white background */
  border: 1px solid #ddd;
  border-radius: 10px;
  color: #333; /* Darker text */
  transition: transform 0.3s ease;
  height: 100%;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Page Theming */
.bg-lightgray {
  background-color: #f8f9fa;
}

.bg-darkblue {
  background-color: #0a0a23;
  color: #fff;
  padding: 180px 0 80px 0;
  min-height: 50vh;
}

/* Section Padding */
section {
  padding: 80px 0;
}

/* Headings */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.25rem;
  margin-bottom: 40px;
}

/* Buttons */
.btn-primary,
.btn-outline-light {
  border-radius: 50px;
  padding: 12px 24px;
}

.btn-primary:hover {
  background-color: #084298;
}

/* Icons in cards
.card-icon {
  font-size: 2.5rem;
  color: #d06efd;
}     */

/* === CONTACT PAGE STYLES === */
.contact-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  height: 100%;
}

.contact-icon {
  font-size: 2.5rem;
  color: #0056b3;
  margin-bottom: 15px;
}

.form-control, .form-select {
  border-radius: 8px;
  padding: 12px;
}

.form-control:focus, .form-select:focus {
  border-color: #0056b3;
  box-shadow: 0 0 0 0.2rem rgba(0,86,179,0.25);
}

/* === BLOG PAGE STYLES === */
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

.blog-meta {
  font-size: 0.85rem;
  color: #666;
}

.blog-category {
  display: inline-block;
  background-color: #0056b3;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

/* -----------------------------------
  Social media icons
----------------------------------- */

.social-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid #0d6efd;
  border-radius: 50%;
  color: #0d6efd;
  transition: all 0.3s ease;
}

.social-circle i {
  font-size: 16px;
}

.social-circle:hover {
  background-color: #0d6efd;
  color: white;
}


/* -----------------------------------
   Page body image sections
----------------------------------- */

.section-image {
    max-height: auto;
    width: 100%;
	max-width: 450px;
    height: auto;
}


/* -----------------------------------
   Footer section
----------------------------------- */
.footer {
  font-size: 0.9rem;
  background-color: #0a0a23; /* dark background */
  color: #ffffff;
  padding: 40px 0 20px 0;
}

/* Footer logo with white background */
.footer-logo {
  height: 60px;
  background-color: #ffffff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* All footer text should be white */
.footer p,
.footer h6,
.footer .small {
  color: #ffffff !important;
}

/* All footer links - pure white */
.footer a {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Footer links on hover - blue */
.footer a:hover {
  color: #0d6efd !important;
  text-decoration: none;
}

/* Footer link list styling */
.footer .list-unstyled {
  padding: 0;
  margin: 0;
}

.footer .list-unstyled li {
  margin-bottom: 10px;
}

/* Social media icons - white */
.footer .social-circle,
.footer i {
  color: #ffffff !important;
}

.footer .social-circle:hover {
  color: #0d6efd !important;
}


html {
  scroll-behavior: smooth;
}


