
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');


:root {
  /* User Defined Colors */
  --blue-colour: #124071;
  --green-color: #7daa4c;
  --red-color: #e42642;
  --white-color: #ffffff;
  --black-color: #000000;
  --bg-color: #f4f8f4;

  /* Eve Legal Design Tokens (Mapped) */
  --font-heading: "Google Sans", sans-serif;
  --font-body: "Google Sans", sans-serif;;
  --surface-primary: #ffffff;
  --surface-secondary: #f8f9fc; /* Light blue-gray tint */
  --text-primary: var(--blue-colour); /* Incorporating user's blue as primary text */
  --text-secondary: #5E6D7E;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-pill: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--surface-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.bg-colour-section{
  padding: 70px 0;
  background-color: var(--bg-color);
}
/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 1rem;
}

p {
  font-size: 1.125rem; /* ~18px */
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
ul{
  padding-left: 0 !important;
  list-style: none !important;
}
.section-top-margins{
  margin: 50px 0 0 0;
}
.section-bottom-margins{
  margin: 0 0 50px 0;
}
/* hero section  */
/* --- Component: Navbar --- */
.navbar {
  padding: 20px 0;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.navbar-brand img {
  height: 100%;
  width: auto;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: var(--text-secondary);
  padding: 8px 16px;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--text-primary);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}
.navbar-nav .nav-item {
  margin: 0 20px; /* left-right gap */
}

/* --- Buttons --- */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-blue-colour {
  background-color: var(--blue-colour) !important; /* Using user's blue as the primary dark action */
  border: 1px solid var(--blue-colour) !important;
  color: #fff !important;
}

.btn-blue-colour:hover {
  box-shadow: 0 4px 12px rgba(18, 64, 113, 0.2);
  background-color: #0e335a;
}

.btn-outline-blue-colour {
  border: 1px solid rgba(18, 64, 113, 0.2) !important;
  color: var(--text-primary) !important;
  background: transparent !important;
}

.btn-outline-blue-colour:hover {
  background: #f0f4f8 !important;
  background-color: var(--blue-colour) !important;
  color: var(--white-color) !important;
}

.schedule-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 22px;
  background: var(--blue-colour);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
 background-color: var(--green-color);
}

.schedule-btn .arrow-box {
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-btn svg {
  transition: transform 0.3s ease;
}

.schedule-btn:hover svg {
  transform: translateX(4px);
}

/* --- Component: Hero Section --- */
.hero-section {
  width: 100%;
  /* min-height: 85vh; Taller hero for modern feel */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 190px 0 0 0; /* Account for fixed navbar */
  background: radial-gradient(circle at 50% 50%, rgba(57, 147, 174, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
}

/* The subtle "Blue Glow" vignette effect */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(18, 64, 113, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.hero-section h1 {
  font-size: 48px; /* Responsive fluid typography: 40px to 72px */
  font-weight: 800; /* Extra Bold for that Eve Legal heavy look */
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  /* margin-bottom: 24px; */
  /* max-width: 1080px; */
  margin-left: auto;
  margin-right: auto;
}

.hero-section p {
  font-size: clamp(1.125rem, 2vw, 1.35rem); /* 18px to 22px */
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    min-height: 70vh;
    padding-top: 160px;
  }
  
  /* Stack buttons on mobile menu start */
  .navbar-collapse .d-flex {
    flex-direction: column;
    align-items: stretch !important;
    gap: 10px !important;
    padding-top: 15px;
  }
  .navbar-collapse .btn {
    width: 100%;
    margin: 0;
  }
  /* Stack buttons on mobile menu end */
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 2.5rem; /* Force smaller size on very small screens */
  }
}

/* --- Component: Brand Slider --- */

@keyframes slide{
  from{
    transform:translateX(0) ;
    
  }
  to{
    transform:translateX(-100%) ;
  
  }
}
.logos{
  overflow:hidden;
  padding:0 0 60px 0 ;
  background:white;
  white-space:nowrap;
  position:relative;
}

.logos:before,
.logos:after{
  content:"";
  position:absolute;
  top:0;
  width:220px;
  height:100%;
  z-index:2;
}
.logos:before{
  left:0;
  background:linear-gradient(to left, rgba(255,255,255,0), white);
}
.logos:after{
  right:0;
  background:linear-gradient(to right, rgba(255,255,255,0), white);
}

.logos-slide{
  display:inline-block;
  animation: 15s slide infinite linear;
}
.logos-slide img{
  height:50px;
  margin: 0 40px;
}

/* --- Component: Feature Cards (Swiper) --- */
.swiper {
  padding-bottom: 50px !important; /* Space for pagination/scrollbar if needed */
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: auto; 
  cursor: pointer;
}



.swiper-slide img {
  width: 400px;
  height: 600px;
  object-fit: contain;
  margin-bottom: 24px;
}

.swiper-slide h3 {
  font-size: 30px; 
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.swiper-slide p {
  font-size: 18px; /* 15px */
  font-family: var(--font-body);
  color: var(--text-secondary);
  margin-bottom: 0;
  opacity: 1; /* Reset opacity override */
}

/* Capsule / Pill Badge */
.capsule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: rgba(18, 64, 113, 0.08); /* Hint of primary color */
  border-radius: var(--radius-pill);
  color: var(--blue-colour);
  font-weight: 600;
  font-size: 0.875rem; /* 14px */
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

/* if text is inside <p> */
.capsule p {
  margin: 0;                  /* 🔥 must */
}
/* --- Component: Content Sections --- */
.bg-colour-section .title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem); /* 32px to 48px */
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 16px;
}

.bg-colour-section .subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem; /* 18px */
  color: var(--text-secondary);
  line-height: 1.6;
  opacity: 1; /* Reset opacity */
  max-width: 800px;
  margin: 0 auto;
}

/* --- Component: Forms --- */
.custom-form .form-control {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--blue-colour) !important;
  border-radius: 0px !important;
  padding: 12px 16px;
  min-height: 50px;
  color: var(--text-primary);
  font-size: 24px;
  transition: all 0.2s ease;
}

.custom-form .form-control:focus {
  border-color: var(--blue-colour) !important;
  box-shadow: none !important;
  background: transparent !important;
  outline: none;
}

.custom-form .form-control::placeholder {
  color: var(--blue-colour) !important;
  font-weight: 400;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* --- Component: Footer --- */
footer {
  background: #050505; /* Deep black close to Eve Legal */
  color: #fff;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-title {
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-list li {
  margin-bottom: 12px;
}

.footer-list li a,
.footer-link {
  color: #9aa5b1; /* Muted gray text */
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-list li a:hover,
.footer-link:hover {
  color: #fff;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 50%; /* Circle icons */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-left: 12px;
  font-size: 16px;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

hr.border-secondary {
  border-color: rgba(255,255,255,0.1) !important;
  opacity: 1;
}

/* modal section  */
.modal-title{
  font-weight: 700;
  color: var(--blue-colour);
}
.form-control:focus{
  box-shadow: none !important;
  border-color: none !important;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
  color: var(--blue-colour) !important;
  font-weight: 700;
}
.swiper2 {
      width: 100%;
      height: 100%;
    }

    .swiper-slide2 {
      text-align: center;
      font-size: 18px;
      background: #444;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .swiper-slide2 img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    #partners,
#contact {
  scroll-margin-top: 90px; /* navbar height */
}
