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

.navbar { background:#0B1F3A; }
.navbar a { color:white !important; }
.hero-slide {
  height: 90vh;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;   /* keeps quality */
  width: 100%;
  height: 100%;
}
.hero-slide-blog {
  height: 40vh;
  overflow: hidden;
}
.hero-img-blog {
  object-fit: cover;   /* keeps quality */
  width: 100%;
  height: 100%;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 31, 58, 0.65); /* dark overlay */
}

/* Text styling */
.hero-title {
  font-size: 3rem;
  font-weight: 700;
}

.hero-text {
  font-size: 1.2rem;
  margin-bottom: 20px;
}


.card {
border:none;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}
.card:hover { transform:translateY(-10px); }

.icon {
font-size:40px;
color:#D4AF37;
margin-bottom:15px;
}
.client-logo {
  max-height: 70px;   /* 👈 controls size */

  padding: 10px;
  background: #fff;

  border-radius: 8px;

  box-shadow: 0 4px 5px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}

/* Hover effect (premium feel) */
.client-logo:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.cta { background:#0B1F3A; color:white; text-align:center; }
footer { background:#0B1F3A; color:#aaa; text-align:center; padding:20px; }

@media (max-width: 576px) {
  .calendly-inline-widget {
    height: 600px !important;
  }
}

/* footer */
/* Footer Base Styles */
.site-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 80px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 0 20px;
}

/* Column Styling */
.footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #00d4ff; /* Accent color */
}

.footer-column p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #b0b0b0;
}

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

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

/* Newsletter Input */
.footer-form {
  display: flex;
  margin-top: 15px;
}

.footer-form input {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
  width: 100%;
}

.footer-form button {
  padding: 10px 15px;
  background-color: #00d4ff;
  border: none;
  color: #1a1a1a;
  font-weight: bold;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
  transition: opacity 0.3s;
}

.footer-form button:hover {
  opacity: 0.9;
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #666;
  font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-form {
    justify-content: center;
  }
}

/* About page team section */
/* Team Section Styles */
.team-section {
  padding: 100px 20px;
  background-color: #ffffff; /* Contrast against the dark footer */
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header .sub-title {
  color: #c5a059;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  font-size: 0.85rem;
}

.team-header h2 {
  font-size: 2.5rem;
  color: #0a192f;
  margin: 10px 0 20px;
}

.team-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
  line-height: 1.6;
}

/* Grid & Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-card {
  background: #f8f9fa;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  border-bottom: 3px solid #c5a059;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-image {
  overflow: hidden;
  background-color: #dddddd00; /* Placeholder color */
}

.member-image img {
  border-radius: 100px;
  height: 150px;
}

.member-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 25, 47, 0.8); /* Navy overlay */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.3s ease;
}

.team-card:hover .member-overlay {
  opacity: 1;
}

.social-icons a {
  color: #c5a059;
  border: 1px solid #c5a059;
  padding: 8px 15px;
  text-decoration: none;
  font-size: 0.8rem;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #c5a059;
  color: #fff;
}

.member-info {
  padding: 25px;
}

.member-info h3 {
  margin: 0 0 5px;
  color: #0a192f;
  font-size: 1.25rem;
}

.member-info span {
  display: block;
  color: #c5a059;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.member-info p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .team-header h2 {
    font-size: 2rem;
  }
}


/* Professional CTA Button Styling */
.cta-button {
  display: inline-block;
  padding: 14px 32px;
  background-color: #c5a059; /* Your Gold Brand Color */
  color: #0a192f !important; /* Deep Navy text for contrast */
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #c5a059;
  border-radius: 4px; /* Slight roundness for a modern look */
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover State */
.cta-button:hover {
  background-color: transparent;
  color: #c5a059 !important; /* Flips colors on hover */
  transform: translateY(-3px); /* Subtle lift effect */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Active/Click State */
.cta-button:active {
  transform: translateY(-1px);
}
/* BLOG SECTION */
  .blog-card {
    border-radius: 15px;
    transition: all 0.3s ease;
  }

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

  .blog-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 220px;
    object-fit: cover;
  }

  pitch us sectioN
  .contact-section {
  min-height: 100vh;
  background: #ffffff;
}

.main-title {
  font-size: 48px;
  font-weight: 600;
}

.subtitle {
  color: #666;
  font-size: 18px;
}

.contact-box {
  max-width: 500px;
  margin: 0 auto;
}

.contact-box h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-box p {
  color: #777;
  font-size: 16px;
}

.btn {
  border-radius: 30px;
  font-weight: 500;
}