/*   
Theme Name: Bowdoin Group
Theme URI: https://www.bowdoingroup.com/
Description: Custom WordPress theme for Bowdoin Group
Author: Yelling Mule
Author URI: https://www.yellingmule.com
Version: 1.0
*/

@CHARSET "UTF-8";

/* =WordPress Core from http://codex.wordpress.org/CSS#WordPress_Generated_Classes
-------------------------------------------------------------- */

/*Required Styles*/

.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 13px;
    line-height: 17px;
    margin: 0;
    padding: 0.5rem 0;
}
.no_padding_top {
  padding-top: 0 !important;
}
.no_padding_bottom {
  padding-bottom: 0 !important;
}

/*CUSTOM SCSS
-------------------------------------------------------------- */
:root {
  /* Colors */
  --primary: #1f6fb2;
  --primary-hover: #185a91;
  --primary-dark: #0c3a5b;
  --gradient-start: #000000;
  --gradient-end: #0d3b66;

  --text-dark: #111111;
  --text-body: #5f6368;
  --text-light: #d1d5db;

  --bg-light: #f3f4f6;
  --bg-card: #eeeeee;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-main: "poppins", sans-serif;
  --font-paragraph: "aptos", sans-serif;;

  /* Spacing (8pt grid) */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 100px;

  /* Layout */
  --container-max: 1140px;
  --radius: 6px;
}

/* =========================
   GLOBAL
========================= */
body {
  font-family: var(--font-paragraph);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 15px;
}

section {
  padding: var(--space-7) 0;
}

.container {
  max-width: var(--container-max);
}

/* =========================
   TYPOGRAPHY
========================= */
h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

h2 {
  font-family: var(--font-main);
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-family: var(--font-main);
  font-size: 34px;
  font-weight: 400;
}

h3.bottom-80 {
  margin-bottom: 80px;
}

h4 {
  font-size: 30px;
  font-weight: 600;
}

h6 {
  font-family: var(--font-paragraph);
  color: #333;
  font-size: 20px;
  font-weight: 200;
  margin-bottom: 20px;
}

p {
  font-family: var(--font-paragraph);
  color: var(--text-body);
  margin-bottom: var(--space-2);
  font-size: 18px;
}

a {
  color: #0077C8;
}

.section-left h4 {
  font-weight: 700;
  font-style: normal;
}

.section-left p {
  font-family: var(--font-paragraph);
  font-size: 18px;
  color: black;
}

.section-center {
  font-family: var(--font-paragraph);
  font-size: 18px;
  color: white;
}

/* DROPDOWN BASE */
.dropdown-menu {
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  margin-top: 0px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* DROPDOWN ITEMS */
.dropdown-item {
  font-size: 16px;
  padding: 10px 20px;
  color: #111;
}

.dropdown-item:hover {
  background: #f3f4f6;
  color: #000;
}

/* HOVER TRIGGER (DESKTOP ONLY) */
@media (min-width: 992px) {
  .dropdown-hover:hover .dropdown-menu {
    display: block;
  }

  .dropdown-hover .dropdown-toggle::after {
    margin-left: 6px;
  }
}

/* =========================
   BUTTONS
========================= */
.btn {
  font-size: 14px;
  padding: 12px 22px;
  border-radius: var(--radius);
}

.btn-primary {
  background: var(--primary);
  border: none;
  font-size: 18px;
  padding: 15px 30px;
  border: 2px solid var(--primary);
}
.btn-primary.btn-border {
  background: transparent;
}

.btn-primary:hover {
  background: var(--primary-hover);
}
.btn-sm {
  padding: 10px 30px;
  font-size: 16px;
}
.btn-outline-light {
  border: 1px solid #fff;
  color: #fff;
}

.white-link {
  color: white;
  font-size: 18px;
}
.white-link:hover {
  text-decoration: none;
}

.white-link::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  content: "\f138";
  padding-left: 10px;
  color: var(--primary);
}

.section-link {
  font-family: var(--font-paragraph);
  font-size: 18px;
  color: #0075C9;
}
.section-link:hover {
  text-decoration: none;
  color: black;
}

.section-link.white {
  color: white;
}

.section-link::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  content: "\f138";
  padding-left: 10px;
}
.section-link.icon::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  content: "";
  padding-left: 10px;
}

.circle-image img {
  transition: transform 0.3s ease;
}

.circle-image img:hover {
  transform: scale(1.05);
}

.circle-image h5 {
  margin-top: 20px;
  color: white;
  font-size: 20px;
}
.circle-img a:hover {
  text-decoration: none;
}

.circle-image h5::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  content: "\f138";
  padding-left: 10px;
}
.team-photo-radius {
  border-radius: 15% !important;
}

.gif {
    position: relative;
}

/* =========================
   NAVBAR
========================= */
.main-navbar {
  background: transparent;
  padding: var(--space-2) 0;
}
.navbar-brand {
  padding-left: 20px;
}
.main-navbar .nav-link {
  color: #fff;
  font-size: 18px;
  margin-left: var(--space-3);
}

.main-navbar .btn {
  margin-left: var(--space-3);
}
.navbar-brand img {
  height: 65px;
}
.main-navbar.scrolled {
  background: black !important;
  background-color: black;
}
.navbar-collapse {
  padding-right: 20px;
}

/* =========================
   HERO
========================= */
.hero {
  height: 750px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
    url('img/hero-1.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero h1 {
  margin-bottom: 20px;
  font-family: var(--font-main);
}

.hero p {
  max-width: 420px;
  color: white;
  font-family: var(--font-paragraph);
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
}

.hero .btn {
  margin-right: var(--space-2);
  margin-top: var(--space-2);
}

.hero-interior {
  height: 500px;
  background: radial-gradient(65.28% 126.58% at 16.56% 0%, rgba(0, 2, 43, 1.00) 0%, #000000 100%), #000000;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-interior.short {
  height: 400px;
}

.hero-interior.short h1 {
  margin-top: 80px;
}

.hero-interior .pill {
  background-color: none;
  border: 2px solid var(--primary);
  color: white;
  padding: 7px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  margin-top: 130px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 25px;
  font-size: 16px;
  font-family: var(--font-paragraph);
}
.hero-interior h1 {
  margin-bottom: 20px;
  font-family: var(--font-main);
  font-size: 32px;
}

.hero-interior p {
  color: white;
  font-family: var(--font-paragraph);
  font-weight: 200;
  font-style: normal;
  font-size: 20px;
  line-height: 30px;
}

.hero-interior .btn {
  margin-right: var(--space-2);
  margin-top: var(--space-2);
}

/* =========================
   INTRO
========================= */
.bg-light {
  background: var(--bg-light) !important;
}

.intro h3 {
  margin-bottom: var(--space-6);
  text-align: center;
}

.intro h4 {
  margin-bottom: var(--space-2);
}

.intro p {
  max-width: 520px;
}
 
/* =========================
   SERVICES
========================= */
.services {

  background: radial-gradient(65.28% 126.58% at 16.56% 0%, rgba(0, 2, 43, 1.00) 0%, #000000 100%), #000000;

  color: #fff;
  text-align: center;
  padding: var(--space-8) 0;
}

.services p {
  max-width: 900px;
  margin: 0 auto var(--space-6);
  color: white;
}
.services.processs {
  text-align: left;
}
.services.process b {
  font-weight: 600;
}
.services.white_bg {
  background: white;
}
.services.grey_bg {
  background: #efefef;
}

.services.white_bg .white-card{
  background: #efefef !important;
}
.services.white_bg p {
  color: black !important;
}
.services.white_bg h3 {
  color: black !important;
}

.service-card img {
  width: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: var(--space-3);
}

.service-card h5 {
  font-size: 16px;
  font-weight: 600;
}

.white-card {
  background: white;
  padding: 30px 30px;
  border-radius: 15px;
  height: stretch;
  margin-bottom: 30px;
}
.white-card.process {
  background: #efefef !important;
  text-align: left !important;
}
.white-card.process p {
  max-width: 100% !important;
}

.white-card.auto-height {
  height: auto;
  min-height: auto;
}

.white-card h4 {
  font-family: var(--font-main);
  font-size: 24px;
  /*color: var(--primary);*/
  color: black;
}

.white-card p {
  margin: 0 auto;
  color: black;
  font-family: var(--font-paragraph);
  font-weight: 200;
  font-size: 18px;
  font-style: normal;
}

.accordion .card-header {
  /*background: #918F90;*/
  background: black;
}

.accordion .btn {
  font-family: var(--font-main);
  font-size: 24px;
  color: white;
}

.accordion .card-body {
  font-family: var(--font-paragraph);
  font-weight: 200;
  font-size: 18px;
  font-style: normal;
}

.timeline {
  position: relative;
  height: 100%;
}

.timeline p {
  font-family: var(--font-paragraph);
  font-weight: 200;
  font-size: 18px;
  font-style: normal;
}

.timeline::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  border-left: 2px dotted var(--primary);
}

.team-grid h4 {
  margin-top: ;
}

.slick-next {
  right: -30px;
  top: 40%;
}
.slick-prev {
  left: -30px;
  top: 40%;
}
.testimonials .slick-slide img {
  display: inline;
}

/* =========================
   TRUSTED
========================= */
.trusted img {
  width: 240px;
  height: 240px;
  object-fit: cover;
}

.logos img {
  max-height: 40px;
  opacity: 0.7;
  margin: 0 var(--space-3);
  transition: 0.3s;
}

.logos img:hover {
  opacity: 1;
}

/* =========================
   TESTIMONIALS
========================= */
.logo-slider {
  padding: var(--space-3);
}
.logo-slider .autoplay .div {
  text-align: center;
}
.testimonial {
  background: var(--bg-card);
  border-radius: 10px;
  padding: var(--space-3);
  font-size: 14px;
}

.testimonial p {
  color: #333;
  font-size: 16px;
  font-family: var(--font-paragraph);
}

.testimonial img {
  width: 140px;
  height: 140px;
}

.testimonial-name {
  font-weight: 700;
  font-style: normal;
}

/* =========================
   STATS
========================= */
.stats {
  background: #000;
  color: #fff;
  text-align: center;
  padding: var(--space-6) 0;
}

.stats .number {
  font-family: var(--font-main);
  font-size: 75px;
  font-weight: 700;
  margin-bottom: var(--space-1);

}

.stats p {
  color: white;
  font-family: var(--font-paragraph);
  font-size: 18px;
  font-weight: 200;
}

/* =========================
   CTA
========================= */
.cta {
  background: linear-gradient(180deg, #00022B 0%, #000000 73.56%);
  color: #fff;
  text-align: center;
  padding: var(--space-6) 0;
}
.cta .container {
  width: 65%;
}
.cta h3 {
  font-family: var(--font-main);
}
.cta p {
  color: #fff;
  font-size: 18px;
  font-family: var(--font-paragraph);
}

.cta .btn {
  margin-top: var(--space-3);
}

.cta.full .container {
  width: 100%;
}

/* =========================
   BLOG
========================= */
.blog_post h2 {
  font-size: 24px !important;
  margin-top: 30px;
}
.blog_post h3 {
  font-size: 26px !important;
  margin-top: 30px;
}
.blog_post ul li {
  font-family: var(--font-paragraph);
  color: var(--text-body);
  margin-bottom: var(--space-2);
  font-size: 18px;
}
.blog_post .wp-block-list {
  margin-block-start: 0 !important;
  padding-inline-start: 20px !important;
}
.blog_categories {
  list-style: none;
  padding-left: 0;
  font-size: 16px;
}
.blog_categories li {
  margin-left: 0;
  padding: 3px 0px;
}
.blog_post .categories strong {
  color: black !important;
}
.case_study_card {
  width:100%; 
  height:200px; 
  background:#000; 
  display: flex;
  align-items: center;
  justify-content: center; 
  border-radius:15px;
  margin-bottom: 30px;
}
.case_study_card img {
  width: 80%;
}

/* pagination */
.pagination {
  width: 100%;
}
.pagination .prev,
.pagination .next {
  display: none !important;
}
.pagination .nav-links {
  width: 100%;
}

.pagination .current {
  display: inline-block;
  background: #0077C8;
  border-radius: 50%;
  height: 30px;
  align-content: center;
  width: 30px;
  text-align: center;
  color: white;
  font-size: 16px;
}
.pagination .page-numbers {
  display: inline-block;
  border: 1px solid #0077C8;
  border-radius: 50%;
  height: 30px;
  align-content: center;
  width: 30px;
  text-align: center;
  font-size: 16px;
}
.blog_photo {
  margin-top: 30px;
  z-index: 1;
  width: 100%;
  position: relative;
}
.blog_photo img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center; 
}
.blog_title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 600;
  margin-top: 20px;
  color: black;
}
select {
  -webkit-appearance: none; /* Chrome, Safari, Edge */
  -moz-appearance: none;    /* Firefox */
  appearance: none;         /* Standard */
  width: 100%;
  padding: 10px;
}
.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%; 
}
.select-wrapper::after {
  content: "\f0d7"; /* Font Awesome Unicode for 'caret-down' */
  font-family: "Font Awesome 7 Free"; /* Ensure this matches your version */
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none; /* Allows clicks to pass through to the select */
}
#searchform input {
  width: 100%;
  padding: 9px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #000;
  color: #fff;
  padding-top: var(--space-6);
}

.footer p {
  color: #fff;
  font-size: 16px;
  font-weight: 200;
  font-family: var(--font-paragraph);
}

.footer h6 {
  color: #0077C8;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-paragraph);
  margin-bottom: var(--space-2);
}

.footer a {
  color: #fff;
  font-size: 16px;
  display: inline-block;
  margin-bottom: 6px;
}

.footer a:hover {
  color: #fff;
  text-decoration: none;
}

.footer i {
  font-size: 25px;
  display: inline-block;
  margin-right: 10px;
}

.footer .bottom {
  border-top: 1px solid #222;
  margin-top: var(--space-4);
  padding: var(--space-2) 0;
}

.footer .bottom p {
  font-size: 14px;
}
