@charset "utf-8";

/* FOOTER LINKS */
a.footlinks {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a.footlinks:hover,
a.footlinks:focus {
  color: #F27C35;
  text-decoration: underline; /* optional */
}


/* PADDING CLASSES */
.padd10 { padding: 10px; }
.padd15 { padding: 15px; }
.padd20 { padding: 20px; }
.padd25 { padding: 25px; }
.padd30 { padding: 30px; }
.padd40 { padding: 40px; }
.padd50 { padding: 50px; }

/* Horizontal / Vertical Padding */
.paddx10 { padding-left: 10px; padding-right: 10px; }
.paddx20 { padding-left: 20px; padding-right: 20px; }
.paddx30 { padding-left: 30px; padding-right: 30px; }
.paddy10 { padding-top: 10px; padding-bottom: 10px; }
.paddy20 { padding-top: 20px; padding-bottom: 20px; }
.paddy30 { padding-top: 30px; padding-bottom: 30px; }

/* Individual Sides Padding */
.paddt10 { padding-top: 10px; }
.paddt20 { padding-top: 20px; }
.paddt30 { padding-top: 30px; }
.paddb10 { padding-bottom: 10px; }
.paddb20 { padding-bottom: 20px; }
.paddb30 { padding-bottom: 30px; }
.paddl10 { padding-left: 10px; }
.paddl20 { padding-left: 20px; }
.paddl30 { padding-left: 30px; }
.paddr10 { padding-right: 10px; }
.paddr20 { padding-right: 20px; }
.paddr30 { padding-right: 30px; }

/* FOOTER BOTTOM ROW */
.two-col-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.two-col-left {
  text-align: left;
}

.two-col-right {
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .two-col-row {
    flex-direction: column;
    text-align: center;
  }

  .two-col-left,
  .two-col-right {
    text-align: center;
    width: 100%;
  }
}
.footer-container {
  max-width: 1200px;        /* adjust as needed */
  margin: 0 auto;           /* centers container */
  padding: 10px 0px;       /* prevents edge hugging */
  background-color: #1F3451;
  font-size: 12px;
  color: #ffffff;
}

.company {
  color: #0B1838;
}

.border-company {
  border: 1px solid #dddddd;
}
.border-top-company    { border-top: 1px solid #dddddd; }
.border-bottom-company { border-bottom: 1px solid #dddddd; }
.border-left-company   { border-left: 1px solid #dddddd; }
.border-right-company  { border-right: 1px solid #dddddd; }



/* ADDS THE OLD SITE STYLE TO THE NEW */
.gradient-text {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(258deg,#f8e231 9%,#f06735);
  -webkit-background-clip: text;
	background-clip: text;}

.text-orange {color:#f27c35}




/* GRADIENT ORANGE BUTTON THROUGHOUT THE SITE */
.gradient-orange-btn {
  color: #FFFFFF;
  background-color: #f27c35;
  border-radius: 17px;
  justify-content: center;
  align-items: center;
  height: 45px;
  width: 155px;
  padding: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  display: flex;

  border: 1px solid transparent;
  box-sizing: border-box;
  overflow: hidden; /* 🔑 fixes gradient bleed */
	
}

.gradient-orange-btn:hover {
  background-image: linear-gradient(78deg, #f27c35 15%, #f8e231);
  background-color: #f27c35; /* keeps base consistent */
}



/* GRADIENT BLUE BUTTON THROUGHOUT THE SITE */
.gradient-blue-btn {
  color: #FFFFFF;
  background-color: #2B3A67; /* Initial background color */
  border-radius: 17px;
  justify-content: center;
  align-items: center;
  height: 45px;
	width: 155px;
  padding: 5px 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none;
  display: flex;
  border: none; /* Optional: Remove border for a cleaner look */
}

.gradient-blue-btn:hover {
  background-image: linear-gradient(78deg, #2B3A67 20%, #f27c35);
  background-color: transparent; /* Optional: Ensure the gradient overrides */
  color: #2B3A67; /* Retain text color or adjust as desired */
}


.front-font {
  max-width: 550px;
  font-style: normal;  
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: 0em;
  text-transform: none;
  font-family: "Montserrat", sans-serif;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;  
  color: rgb(255, 255, 255);	
  vertical-align: bottom;
}






/* Testimonials setup and Layout */

/* Main section styling */
.testimonial-section {
    background-color: #ffffff;
    padding: 60px 30px;
    max-width: 800px;
    width: 90%;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Container for the stacked testimonials */
.testimonial-wrapper {
    position: relative;
    /* A fixed height is needed for CSS-only absolute positioning rotation. 
       Adjust this value if your testimonials are significantly longer. */
    height: 265px; 
    overflow: hidden;
    margin-bottom: 30px;
}

/* Styling for individual testimonial slides */
.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0 20px;
    box-sizing: border-box;
    opacity: 0;
    /* Animation: name | duration | timing-function | iteration-count */
    animation: rotateTestimonials 16s ease-in-out infinite;
}

/* Delay the second slide so it appears after the first one finishes its turn */
.testimonial-slide:nth-child(2) {
    animation-delay: 8s; /* Half of the total duration (16s / 2) */
}

/* Keyframes for the fade-in/fade-out rotation */
@keyframes rotateTestimonials {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Start slightly down */
    }
    5% {
        opacity: 1;
        transform: translateY(0); /* Fade in and move to position */
    }
    45% {
        opacity: 1;
        transform: translateY(0); /* Stay visible */
    }
    50% {
        opacity: 0;
        transform: translateY(-20px); /* Fade out and move up */
    }
    100% {
        opacity: 0;
        transform: translateY(-20px); /* Stay hidden */
    }
}

/* Quote text styling */
blockquote {
    font-size: 1.6rem;
    line-height: 1.5;
    font-style: italic;
    color: #55627e; /* Slightly lighter blue-gray */
    margin: 0 0 25px 0;
}

/* Author section styling */
figcaption {
    font-family: sans-serif;
}

.author-name {
    color: #2b3a55;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.author-location {
    color: #8892a3; /* Light gray */
    font-size: 0.95rem;
}

/* Dots styling */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #f77f00; /* Orange color */
    background-color: transparent;
}

/* Styling for the "active" dot */
.dot.active {
    background-color: #f77f00;
}


/* THE HOW IT WORKS SECTION OF CODE */
.hiw-section {
  padding: 60px 20px;
  background-color: #fff;
}

.hiw-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between; /* Spaces the 3 columns evenly */
  align-items: flex-start;
  gap: 40px; /* Space between the columns */
}

.hiw-col {
  flex: 1; /* Makes each column take up equal width */
  text-align: center;
}

.hiw-icon {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
}

.hiw-icon img, .hiw-icon svg {
  height: 80px; /* Adjust size based on your preference */
  width: auto;
}

.hiw-col h3 {
  color: #2c3e50; /* Deep blue/dark grey */
  font-size: 1.5rem;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 600;
}

.hiw-col p {
  color: #7f8c8d; /* Muted grey for description */
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 280px; /* Prevents text from becoming too wide */
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .hiw-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hiw-col {
    margin-bottom: 40px;
  }
}



