/*
Theme Name: Brightside Theme
Text Domain: brightside
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --primary: #0f3b63;
  --accent: #1aa6a6;
  --light: #f5f7fb;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #2c3e50;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* HEADER */
header {
  display: inherit;
  justify-content: space-between;
  align-items: center;
  /*padding: 15px 20px;*/
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 999;
  /*box-shadow: 0 2px 10px rgba(0,0,0,0.05);*/
}


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

.logo span {
  color: var(--accent);
}


/* Header base */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #eee;
    /*padding: 15px 0;*/
}



/* Logo */
.logo img {
    height: 40px;
}

/* Navigation wrapper */
.main-navigation {
    margin-left: auto;
}

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

/* Menu links */
.main-navigation a {
    text-decoration: none;
    color: #1f2d3d;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hover effect */
.main-navigation a:hover {
    color: #0ea5a4;
}

/* Right button nav */
.navbar nav:last-child {
    margin-left: 25px;
}

/* Button style */
.btn.primary {
  font-family: 'Poppins', sans-serif;
  background: #0ea5a4;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* Button hover */
.btn.primary:hover {
    background: #0c8f8e;
}





/* BUTTONS */
.btn {
  padding: 12px 22px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.primary {
  background: var(--accent);
  color: #fff;
  border: none;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.outline {
  border: 2px solid var(--primary);
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
}

.hero h1 {
  font-size: 42px;
  color: #1e3a5f;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  margin-right: 10px;
}

.btn-primary {
  background: #2bb3a3;
  color: #fff;
}

.btn-outline {
  border: 2px solid #1e3a5f;
  color: #1e3a5f;
}
.cta-nav a {
    color: #fff;
    text-decoration: none;
}





.hero-slider {
  width: 100%;
  /*height: 350px;*/
  overflow: hidden;
  position: relative;
}

/* TRACK */
.slider-track {
  display: flex;
  width: 300%; /* 3 slides */
  height: 100%;
  transition: transform 0.8s ease-in-out;
}

/* SLIDES */
.slide {
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
}

/* IMAGE */
.slide img {
  width: 100vw;
  height: 100%;
  object-fit: fill;
}
.slide img {
  width: 100vw;
  height: 100%;
  object-fit: fill;

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-slider {
    height: 47vh;
  }
  }.slide img {
    height: 275px;
    object-fit: cover;
  }
}




/* STATS */
/* Section spacing */
.stats {
    display: flex;
    gap: 25px;
    margin: 20px auto;
}

/* Individual card */
.stat {
    flex: 1;
    background: #183a63; /* dark blue */
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

/* Hover (optional subtle effect) */
.stat:hover {
    transform: translateY(-5px);
}

/* Big number */
.stat h2 {
    font-size: 36px;
    font-weight: 700;
    /*color: #1f3b5b;*/
    margin: 0;

}
/* Label text */
.stat p {
    font-size: 20px;
    margin: 0;
    opacity: 0.9;
}

/* SERVICES */
.services{
  background: #f5f7fb;
  padding: 20px 0;
}
.services h2 {
  font-size: 32px;
  color: #1e3a5f;
  text-align: center;
  width: 100%;
  margin: 0;
}

.services .grid {
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
  background: #ffffff;
}

.card:hover {
  transform: translateY(-5px);
}

.services .grid h3{
  font-size: 18px;
  color: #1e3a5f;
  text-align: center;
}
.services .grid p{
  text-align: center;

}

/* Process */

/* Section */
.process {
    background: #ffffff;
    padding: 30px 0;
    text-align: center;
}


/* Wrapper */
.process-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 20px;
    width: 100%;
}

/* Connecting line */
.process-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 5%;
    width: 90%;
    height: 6px;
    background: #5fb3c1;
    z-index: 0;
    transform: translateY(-50%);
}

/* Each step */
.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
}
.process-step:hover {
    transform: translateY(-5px);
}

/* Number circle */
.step-number {
    position: absolute;
    top: -18px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: #2f5c8a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 3px solid #fff;
}

/* Card base */
.step-card {
    padding: 22px 20px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Dark cards */
.step-card.dark {
    background: #1f3b5b;
}

/* Gradient cards (1 & 4) */
.step-card.gradient {
    background: linear-gradient(135deg, #1f6f8b, #1abc9c);
}

/* Icon */
.icon {
    font-size: 20px;
}

/* Text */
.step-card p {
    margin: 0;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 768px) {
    .process-wrapper {
        flex-direction: column;
    }

    .process-wrapper::before {
        display: none;
    }

    .process-step {
        width: 100%;
    }
}




/* SECTION */
.why-choose {
  background: #f5f7fb;
  padding: 20px 0px;
}

/* TITLE */
.section-title {
  width: 100%;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0px;
  color: #1e3a5f;
}

/* WRAPPER */
.why-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT SIDE */
.why-left {
  width: 40%;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 0;
  border-bottom: 1px solid #e2e6ef;
}

.check {
  color: #00a6a6;
  font-size: 22px;
  border: 1px solid gray;
  font-weight: bold;
  border: 1px solid gray;
  width: 35px;
  height: 35px;
}

span.check img {
  position: relative;
  top: -8px;
  height: 40px !important;
  width: 40px !important;
}

.why-item p {
  font-size: 18px;
  color: #2d3a5a;
  font-weight: 600;
  margin: 0;
}

/* RIGHT SIDE FAQ */
.why-right {
  width: 60%;
}

/* FAQ CARD */
.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
}

/* QUESTION */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
}

.faq-q {
  font-size: 15px;
  font-weight: 600;
  color: #2d3a5a;
  margin: 0;
}

/* ARROW */
.arrow {
  font-size: 22px;
  color: #7a859f;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 14px;
  color: #555;
  transition: all 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-a {
  max-height: 200px;
  padding: 10px 20px 20px;
}

.faq-item.active .faq-a p {
    margin: 0;
}

.faq-item.active .arrow {
  transform: rotate(90deg);
}

/* HOVER */
.faq-item:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
  }

  .why-left,
  .why-right {
    width: 100%;
  }
}

/* CONTACT */
/* SECTION */
.contact-section {
  background: #ffffff;
  padding: 20px 0px;
}

.contact-title {
  text-align: left;
  font-size: 32px;
  font-weight: 600;
  color: #1e2b4a;
  margin-bottom: 50px;
}

/* WRAPPER */
.contact-wrapper {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

/* LEFT FORM BOX */
.contact-form-box {
  width: 50%;
  background: #e9edf5;
  padding: 30px;
  border-radius: 10px;
}

/* CF7 FORM STYLING */
.contact-form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
  width: 95%;
  padding: 14px 15px;
  border-radius: 6px;
  border: 1px solid #d6dbe6;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

/* TEXTAREA */
.contact-form-box textarea {
  height: 120px;
  resize: none;
}

/* PLACEHOLDER STYLE */
.contact-form-box input::placeholder,
.contact-form-box textarea::placeholder {
  color: #8a94a6;
}

/* BUTTON */
.contact-form-box input[type="submit"] {
  background: #00a6a6;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
  width: 150px;
}

.contact-form-box input[type="submit"]:hover {
  background: #008c8c;
}

/* RIGHT IMAGE */
.contact-image {
  width: 50%;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

  .contact-form-box{
    width: 80%;
  }
  
  .contact-image {
    width: 100%;
  }

  .contact-image img {
    height: 300px;
  }

  .contact-title{
    margin: 0;
  }
  .contact-form-box input, .contact-form-box textarea{
    width: 87%;
  }

}


/* MOBILE */
@media(max-width:768px){
  .hero, .stats, .services .grid, .contact {
    flex-direction: column;
  }
}




/* Footer */

/* FOOTER BASE */
.site-footer {
  font-family: 'Poppins', sans-serif;
}

/* TOP BAR */
.footer-top {
  background: linear-gradient(90deg, #0f2a4d, #1e3f6b);
  color: #fff;
  padding: 15px 0;
  font-size: 14px;
}

.footer-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ITEMS */
.footer-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

.footer-item .icon {
  font-size: 14px;
}

/* BOTTOM BAR */
.footer-bottom {
  background: #0c2442;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

/* LINKS */
.footer-bottom a {
  color: #cfd7e6;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

/* DIVIDER LINE */
.footer-bottom a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.2);
}

/* HOVER */
.footer-bottom a:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-inner {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
  }

  .footer-bottom a:not(:last-child)::after {
    display: none;
  }
}


/* Base styles */
.menu-toggle {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hide menu by default (mobile) */
.main-navigation {
  /*display: none;*/
  width: 100%;
  background: #fff;
}
#mobile-menu {
  display: none;
}

#mobile-menu.active {
  display: block;
}

/* Active (open) */
.main-navigation.active {
  display: block;
}

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

  #desktop-menu{
    display: none;
  }

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

  #primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #primary-menu li {
    padding: 15px;
    border-bottom: 1px solid #eee;
  }
}

/* Desktop: always show menu normally */
@media (min-width: 769px) {
  .menu-toggle, #mobile-menu {
    display: none;
  }


  .main-navigation, #desktop-menu {
    display: block !important;
  }

}




@media (max-width: 767px){


  .stat{
    width: 90%;
  }
  .navbar nav:last-child{
    margin-left: 0;
  }
  .main-navigation ul{
    display: block;
  }
  nav.cta-nav .btn.primary {
    padding: 12px 8px;
    font-size: 13px;
    margin: 0;
  }
  .contact-wrapper {
    flex-direction: column;
  }



}


@media (min-width: 768px) and (max-width: 991px) {

  .navbar nav:last-child{
    margin-left: 0;
  }
  .main-navigation ul{
    display: block;
  }
  .stat{
    width: 65%;
  }

  .contact-wrapper {
    flex-direction: row;
  }



}

