/*
Theme Name: Webfosys Ventures
Author: Rudra Jaiswal
Description: Webfosys Ventures is a modern, responsive, and SEO-optimized custom WordPress theme designed for startups, investment firms, digital agencies, and corporate businesses. The theme features a professional hero slider, service showcase sections, portfolio display, team profiles, and a clean footer layout. Built using Bootstrap for full responsiveness, it ensures fast loading, mobile-friendly design, and easy customization. Suitable for business websites, funding platforms, consulting firms, and company portfolios.
Version: 1.0
*/

body {
  font-family: 'Segoe UI', sans-serif;
}

.h-98 {
  height: 100vh;
}

.main-header {
  width: 100%;
  padding: 5px 0;
  background: #0d6efd40;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

/* Sticky version */
.main-header.sticky {
  position: fixed;
  background: #ffffff;
	z-index:999;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

/* Flex Layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo-img {
  height: 90px;
  width: auto;
}

/* Menu */
.menu-list {
  display: flex;
  align-items: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-list li a {
  position: relative;
  color: #354f6a;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: 600;
  transition: 0.3s;
	display: inline-block;
}

/* Hover underline animation */
.menu-list li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #354f6a;
  left: 0;
  bottom: -6px;
  transition: 0.3s;
}

.menu-list li a:hover::after {
  width: 100%;
}

/* Active menu */
.menu-list .current_page_item a {
  color: #354f6a;
}

.menu-list .current_page_item a::after {
  width: 100%;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  font-size: 26px;
  color: #354f6a;
  cursor: pointer;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* CTA BUTTON */
.header-cta {
  background: #4da6d6;
  color: #ffffff;
  padding: 10px 18px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: #2e8fbe;
  color: #ffffff;
}

/* ==========================
   DROPDOWN MENU STYLE
========================== */

/* Parent LI */
.menu-list li {
  position: relative;
}

/* Submenu Base */
.menu-list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  list-style: none;
  padding: 15px 0;
  min-width: 240px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 999;
}

/* Show on hover (desktop) */
.menu-list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu items */
.menu-list li ul li {
  padding: 0;
}

.menu-list li ul li a {
  display: block;
  padding: 10px 20px;
  color: #0c2340;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: none;
  transition: 0.3s;
}

.menu-list li ul li a:hover {
  background: #f4f6f9;
  color: #4da6d6;
}
/* HERO */
.carousel-item img {
  height: 85vh;
  object-fit: cover;
}

.carousel-item::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(40, 55, 90, 0.65);
  top: 0;
  left: 0;
}

.hero-center {
  top: 42%;
  transform: translateY(-50%);
}

.main-title {
  font-size: 90px;
  font-weight: 300;
  letter-spacing: 6px;
}

/* BUTTON */
.hero-btn {
  border: 1px solid white;
  padding: 10px 25px;
  color: white;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
}

.hero-btn:hover{
  background: #4da6d6;
}

/* SECTION BG */
.approach-section {
  padding: 100px 0;
}

/* IMAGE */
.approach-image img {
  width: 100%;
  height: 80vh;
  border-radius: 10px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* TEXT */
.approach-label {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 2px;
  color: #4da6d6;
  font-weight: 600;
  margin-bottom: 12px;
}

.approach-text {
  font-size: 20px;
  line-height: 1.6;
  color: #0c2340;
  font-weight: 500;
  max-width: 560px;
  margin-bottom: 30px;
}

/* Bold first line */
.approach-text strong {
  display: block;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0c2340;
}

/* Highlighted keywords */
.approach-text .highlight {
  color: #4da6d6;
  font-weight: 600;
  position: relative;
}

.approach-text .highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: rgba(77, 166, 214, 0.25);
}

/* ================================
   APPROACH – BUTTON STYLES
================================ */

.approach-actions a {
  text-decoration: none;
  letter-spacing: 1.5px;
  font-size: 13px;
  font-weight: 600;
  padding: 14px 28px;
  display: inline-block;
  transition: 0.3s ease;
}

/* Primary CTA */
.approach-actions .btn-primary {
  background: #4da6d6;
  color: #ffffff;
  border-radius: 4px;
}

.approach-actions .btn-primary:hover {
  background: #2e8fbe;
}

/* Secondary CTA */
.approach-actions .btn-outline {
  border: 2px solid #4da6d6;
  color: #4da6d6;
  border-radius: 4px;
}

.approach-actions .btn-outline:hover {
  background:#e5e6e8;
  color: #ffffff;
}

/* SECTION */
.quote-section {
  background: #f4f6f9;
  padding: 20px 0px;
}

/* IMAGE SIDE */
.quote-img img {
  width: 100%;
  height: 30rem;
  object-fit: contain;
  filter: brightness(90%);
}

/* RIGHT CONTENT */
.quote-content {
  padding: 60px 70px;
}

.quote-text {
  font-size: 18px;
  color: #4da6d6;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.quote-author {
  display: block;
  font-size: 12px;
  letter-spacing: 2px;
  color: #0c2340;
  margin-bottom: 15px;
}

.quote-title {
  font-size: 60px;
  letter-spacing: 6px;
  color: #4da6d6;
  font-weight: 400;
}

.portfolio-section {
  padding: 50px 0;
}

/* Titles */
.section-subtitle {
  font-size: 16px;
  letter-spacing: 2px;
  color: #4da6d6;
  display: block;
  font-weight: 600;
}

.section-title {
  font-size: 40px;
  color: #0c2340;
  margin-bottom: 10px;
}

/* Logo Box */
.logo-box {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Logo Image */
.logo-box img {
  max-width: 200px;
  max-height: fit-content;
}

/* Button */
.portfolio-btn {
  margin-top: 40px;
}

.invest-btn {
  background: #4da6d6;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 12px;
  display: inline-block;
}

.invest-btn:hover {
  background: #2e8fbe;
}


.team-section {
  background: #e5e6e8;
  padding: 100px 0;
}

/* Headings */
.team-subtitle {
  display: block;
  font-size: 14px;
  letter-spacing: 3px;
  color: #4da6d6;
  font-weight: 600;
  margin-bottom: 10px;
}

.team-title {
  font-size: 42px;
  color: #0c2340;
  margin-bottom: 70px;
}

/* Card */
.team-card {
  background: transparent;
  text-align: center;
  padding: 20px;
  border: 1px solid #4da6d6;
  transition: 0.3s ease;
}

/* IMAGE */
.team-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

/* HOVER EFFECT */
.team-card:hover .team-img {
  transform: scale(1.08);
}

/* NAME */
.team-name {
  font-size: 20px;
  color: #0c2340;
  margin-bottom: 6px;
  font-weight: 600;
}

/* ROLE */
.team-role {
  font-size: 12px;
  letter-spacing: 2px;
  color: #4da6d6;
  display: block;
  margin-bottom: 15px;
}

/* SOCIAL */
.team-social a {
  display: inline-block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  background: #4da6d6;
  color: #fff;
  margin: 0 5px;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.team-social a:hover {
  background: #2e8fbe;
}

/* FOOTER */

.main-footer {
  background: #0b1b3a;
  color: #b7c3d7;
  padding-top: 40px;
  padding-bottom: 20px;
}

.main-footer h5 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.main-footer p {
  font-size: 14px;
  line-height: 1.8;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Hover Animation */
.social-link:hover {
    transform: translateY(-4px);
}

/* Brand Hover Colors */
.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.twitter:hover {
    background: #000000;
}

.social-link.linkedin:hover {
    background: #0a66c2;
}

.main-footer ul {
  list-style: none;
  padding: 0;
}

.main-footer ul li {
  margin-bottom: 10px;
}

.main-footer ul li a {
  color: #4da6d6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.main-footer ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: #9fb0c9;
}

.team-card {
    text-align: center !important;
}



@media (max-width: 992px) {
	
	.main-header{
	position: fixed;
    background: #ffffff;
    z-index: 999;
	}
	
	.menu-wrap {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    padding: 20px 0;
  }

 
  .menu-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .menu-list li a {
    color: #0c2340;
  }
	
	.menu-list li::after {
    display: none;
  }
  .main-heading {
    font-size: 34px;
  }

  .main-title {
    font-size: 55px;
  }
	
	

  .mobile-toggle {
    display: block;
  }

  .menu-wrap.show-menu {
    display: block;
  }
	
	.menu-list li ul {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0;
    display: none;
  }

  .menu-list li.open > ul {
    display: block;
  }
	
	.hero-center {
  top: 52%;
}
	
.approach-section {
    padding: 70px 0;
  }

  .approach-text {
    font-size: 18px;
  }

  .approach-text strong {
    font-size: 22px;
  }

  .quote-content {
    padding: 40px;
  }

  .quote-title {
    font-size: 40px;
  }
	
	.logo-box img {
    max-width: 9rem;
    max-height: fit-content;
}

  .section-title {
    font-size: 30px;
  }

  .team-title {
    font-size: 30px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .logo-img {
    height: 70px;
    width: 70px
  }

  .main-title {
    font-size: 34px;
    letter-spacing: 2px;
  }
	
	.approach-section {
    text-align: center;
  }

  .approach-text {
    margin-left: auto;
    margin-right: auto;
  }

  .approach-actions {
    align-items: center;
  }

  .approach-actions a {
    width: 100%;
    max-width: 320px;
  }

  .quote-img img {		
    height: 260px;
  }

  .quote-content {
    padding: 30px 20px;
    text-align: center;
  }

  .quote-title {
    font-size: 32px;
  }

  .quote-text {
    font-size: 16px;
  }
	
	.logo-box img {
    max-width: 7rem;
    max-height: fit-content;
}

  .team-title {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .team-img {
    width: 170px;
    height: 170px;
  }

  .main-footer {
    text-align: center;
  }

  .main-footer .col-md-6 {
    margin-bottom: 30px;
  }
	
	.page-hero {
    background: #0b1b3a;
    padding: 40px 0 80px;
}
	.social-icons {
	justify-content: center;	
	}
}

/* MOBILE */
@media (max-width: 576px) {
  .main-heading {
    font-size: 26px;
  }

  .sub-text {
    font-size: 14px;
  }

  .section-title {
    font-size: 24px;
  }

  .logo-box {
    padding: 30px 15px;
  }
	
	.approach-text {
    font-size: 17px;
  }

  .approach-text strong {
    font-size: 20px;
  }

  .team-title {
    font-size: 24px;
  }

  .team-img {
    width: 170px;
    height: 170px;
  }
}