
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #556270; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #d9232d; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* CTA Section Enhancements */
#cta h2 {
  color: #1d3557;
  font-size: 2rem;
}

#cta ul li {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.custom-input {
  border-radius: 0.75rem;
  border: 1px solid #ccc;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: 0.3s ease;
}

.custom-input:focus {
  border-color: #457b9d;
  box-shadow: 0 0 0 0.1rem rgba(69, 123, 157, 0.25);
}

.custom-btn {
  background-color: #1d3557;
  border-radius: 30px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  transition: 0.3s ease-in-out;
}

.custom-btn:hover {
  background-color: #457b9d;
}
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

/*.about .icon-box {*/
/*  background-color: var(--surface-color);*/
/*  padding: 50px 40px;*/
/*  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);*/
/*  border-radius: 10px;*/
/*  transition: all 0.3s ease-out 0s;*/
/*}*/

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}
#Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px 10px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}


 .hero-banner {
      background: url('https://images.unsplash.com/photo-1519337265831-281ec6cc8514?auto=format&fit=crop&w=1350&q=80') center center/cover no-repeat;
      color: #fff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .hero-banner h1 {
      font-weight: 700;
      font-size: 2.8rem;
    }

    .hero-banner p {
      font-size: 1.2rem;
      margin: 20px 0;
    }

    .btn-primary, .btn-danger {
      padding: 12px 25px;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .books-stack {
      position: absolute;
      bottom: 0;
      left: 30px;
      width: 150px;
    }

    .books-cover {
      position: absolute;
      bottom: 0;
      right: 30px;
      width: 200px;
    }

    @media (max-width: 768px) {
      .hero-banner {
        text-align: center;
        padding: 70px 20px;
      }

      .books-stack, .books-cover {
        display: none;
      }
    }
#cta h2 {
  color: #1d3557;
  font-size: 2rem;
}

#cta p, #cta li {
  font-size: 0.95rem;
  color: #555;
}

#cta .form-control {
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

#cta .card {
  border-radius: 1rem;
}

#cta .btn-primary {
  background-color: #1d3557;
  border: none;
  font-weight: 600;
  transition: 0.3s ease-in-out;
}

#cta .btn-primary:hover {
  background-color: #457b9d;
}
 
 /* Fixed height for navbar */
.navbar {
  height: 130px; /* You can adjust this height */
  background-color: #1D3557;
  transition: all 0.4s ease-in-out;
  padding: 0; /* Remove extra padding */
}

/* Align items vertically */
.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img {
  max-height: 10s0px; 
  height: auto;
  width: 242px;
  object-fit: contain;
}
@media (max-width: 576px) {
  .logo-img {
    max-height: auto;
    width: 130px;
    object-fit: contain;
  }
  .navbar .container {
  height: 90px%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
}

 /* Navbar base styling */
    .navbar {
      background-color: #1D3557;
      transition: all 0.4s ease-in-out;
      padding: 20px 0;
    }

    .navbar-brand {
      font-size: 1.5rem;
      font-weight: 700;
      color: #ffffff;
    }

    .navbar-brand:hover {
      color: #A8DADC;
    }

    .nav-link {
      color: #ffffff !important;
      margin-left: 20px;
      position: relative;
      font-weight: 500;
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background-color: #E63946;
      left: 0;
      bottom: -5px;
      transition: width 0.3s ease-in-out;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover {
      color: #A8DADC !important;
    }

    .navbar.scroll-shrink {
      padding: 10px 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 991px) {
      .nav-link {
        margin-left: 0;
        padding: 10px 15px;
      }

      .navbar-collapse {
        background: #1D3557;
        border-radius: 8px;
        padding: 10px;
      }
    }

    .navbar-toggler {
      border: none;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }
    .logo-img {
  height: 40px;       /* Adjust based on your design */
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-img {
  transform: scale(1.05);
}

    .vertical-tab-section {
    background-color: #F8F9FA;
    padding: 80px 0;
  }

  .tab-wrapper {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
  }

  .tab-buttons {
    flex: 1 1 250px;
    background: #1D3557;
    display: flex;
    flex-direction: column;
  }

  .tab-buttons button {
    background: none;
    border: none;
    color: #ffffff;
    text-align: left;
    padding: 20px;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .tab-buttons button:hover,
  .tab-buttons button.active {
    background-color: #E63946;
    color: #fff;
  }

  .tab-buttons i {
    font-size: 18px;
  }

  .tab-content-area {
    flex: 2 1 500px;
    padding: 40px;
    animation: fadeIn 0.4s ease-in-out;
  }

  .tab-pane-custom {
    display: none;
  }

  .tab-pane-custom.active {
    display: block;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 768px) {
    .tab-wrapper {
      flex-direction: column;
    }
    .tab-buttons {
      flex-direction: row;
      overflow-x: auto;
    }
    .tab-buttons button {
      flex: 1;
      white-space: nowrap;
      justify-content: center;
      font-size: 14px;
      padding: 12px;
    }
    .tab-content-area {
      padding: 20px;
    }
  }
  /* Footer Styles */
  footer {
    background: #1D3557;
    color: #fff;
    padding: 60px 0;
    font-size: 15px;
    margin-top: 100px;
  }

  .footer-logo h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .footer-links a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s;
  }

  .footer-links a:hover {
    color: #fff;
    padding-left: 5px;
  }

  .footer-contact i {
    margin-right: 10px;
  }

  .footer-bottom {
    border-top: 1px solid #ccc;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #bbb;
  }
  html {
  scroll-behavior: smooth;
}
.clients-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: #1e293b;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

.logo-item {
  flex: 0 0 auto;
  margin: 0 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-item img {
  height: clamp(2.5rem, 5vw, 4rem);
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%) contrast(0.8);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0%) contrast(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Gradient fade effects on sides */
.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(90deg, #f1f5f9 0%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #f1f5f9 100%);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-item {
    margin: 0 1.5rem;
  }
  
  .marquee-container::before,
  .marquee-container::after {
    width: 50px;
  }
}
.chronicle-testimonials-static {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-subtitle {
  display: block;
  font-size: 1.1rem;
  color: #E63946;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1D3557;
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-grid-static {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card-static {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(29, 53, 87, 0.1);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.testimonial-card-static:hover {
  transform: translateY(-5px);
}

.card-inner {
  position: relative;
  height: 100%;
}

.quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  opacity: 0.1;
  z-index: 0;
}

.testimonial-text {
  font-size: clamp(1rem, 1.1vw, 1.2rem);
  line-height: 1.6;
  color: #1D3557;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}

.author-image {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  border: 3px solid #A8DADC;
  flex-shrink: 0;
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.2rem;
  color: #1D3557;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.author-title {
  font-size: 0.95rem;
  color: #457B9D;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.author-title em {
  font-style: normal;
}

.book-rating {
  color: #E63946;
  font-size: 1rem;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .chronicle-testimonials-static {
    padding: 4rem 0;
  }
  
  .testimonials-grid-static {
    grid-template-columns: 1fr;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
  }
}

/* Decorative elements */
.testimonial-card-static::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23E63946" opacity="0.05"><path d="M50 0 L100 50 L50 100 L0 50 Z"/></svg>');
  background-size: contain;
  transform: translate(30%, 30%);
}

.testimonial-card-static:nth-child(2)::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231D3557" opacity="0.05"><circle cx="50" cy="50" r="50"/></svg>');
}

.testimonial-card-static:nth-child(3)::before {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23457B9D" opacity="0.05"><rect width="100" height="100"/></svg>');
}
#Features Section
--------------------------------------------------------------*/
.features {
  overflow: hidden;
}

.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  border-right: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  font-weight: 600;
  font-size: 15px;
}

.features .nav-link:hover {
  color: var(--accent-color);
}

.features .nav-link.active {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: var(--background-color);
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-link {
    border: 0;
    padding: 15px;
  }

  .features .nav-link.active {
    color: var(--accent-color);
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
/* Remove underline from service item titles */
.service-item .title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.service-item .title a:hover {
  color: #E63946;
}

/* Button hover style */
.btn-primary:hover {
  background-color: #c72537;
  color: #fff;
}

/* Optional: Add hover shadow on cards */
.service-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Responsive spacing */
@media (max-width: 767px) {
  .services.section {
    padding: 60px 0;
  }
}

