/**
* Template Name: Arsha
* Template URL: https://bootstrapmade.com/arsha-free-bootstrap-html-template-corporate/
* Updated: Feb 22 2025 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Helvetica", sans-serif;
  --heading-font: "Roboto", 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: #F8FAFC;
  /* 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: #37517e;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4;
  /* 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. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;
  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: black;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    text-align: center;
}

.section-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
    background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%);
    padding: 80px 0;
}

.who-we-are .btn {
    color: var(--contrast-color);
  background: #519aff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
}

.who-we-are .btn-primary {
    background-color: #1976d2;
    border-color: #1976d2;
}

.who-we-are .btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #333;
}

.who-we-are .btn:hover {
    color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

/* Client Logos Section */
.client-logos {
    padding: 60px 0;
}

.client-logo {
    padding: 20px;
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.client-logo:hover {
    opacity: 1;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
}

/* What We Do Section */
.what-we-do {
    padding: 80px 0;
}

.nav-pills .nav-link {
    border-radius: 25px;
    padding: 10px 25px;
    margin: 0 5px;
    color: #666;
    background-color: transparent;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.nav-pills .nav-link.active {
    background-color: #519AFF;
    color: white;
    border-color: #519AFF;
}

.nav-pills .nav-link:hover {
    background-color: #f8f9fa;
    color: black;
}

/* Services Grid */
.services-grid {
    background: #519AFF;
    border-radius: 15px;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.service-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

.service-description {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
}

.service-description p {
    color: #666;
    line-height: 1.6;
}

/* Our Vision Section */
.our-vision {
    padding: 80px 0;
}

.vision-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    padding-right: 30px;
}

.vision-image {
    text-align: center;
}

.image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
}

.image-placeholder i {
    font-size: 4rem;
    color: #1976d2;
    z-index: 2;
}

.holographic-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.holographic-overlay i {
    font-size: 1.5rem;
    color: #ffc107;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px;
    border-radius: 50%;
}

/* --- OUR VALUES SECTION IMPROVED --- */
.our-values {
    background-color: #ffc107;
    padding: 80px 0;
}

.our-values .values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 40px;
    justify-content: center;
}

@media (max-width: 991px) {
    .our-values .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.value-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #f9fbfd;
    border-radius: 22px;
    box-shadow: 5px 6px 18px rgba(44,62,80,0.13);
    padding: 36px 38px 32px 38px;
    text-align: left;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 180px;
}

.value-card:hover {
    box-shadow: 0 12px 32px rgba(44,62,80,0.18);
    transform: translateY(-4px);
}

.value-icon {
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;
    background: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 22px;
    margin-top: 4px;
}

.value-icon i {
    font-size: 2rem;
    color: #1976d2;
}

.value-card-content {
    flex: 1;
}

.value-card h4 {
    color: #222;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 8px;
    margin-top: 0;
}

.value-card p {
    color: #3a3a3a;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.our-values .section-title {
    color: #fff;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.our-values .section-text {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Meet Our Team Section */
.meet-team {
    padding: 80px 0;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.team-image {
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image .image-placeholder {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image i {
    font-size: 2.5rem;
    color: #1976d2;
}

.team-info {
    padding: 25px;
}

.team-info h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    color: #666;
    line-height: 1.6;
}

/* What Drives Us Section */
.what-drives-us {
    padding: 80px 0;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: white;
    font-size: 1.2rem;
}

.author-info h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Testimonials Slider Styles */
.testimonials-slider {
  padding: 30px 0;
  position: relative;
  width: 100%;
}

.testimonials-slider .testimonial-item {
  padding: 0 20px;
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials-slider .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e0e0e0;
  margin: 10px 0;
}

.testimonials-slider .testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: #1976d2;
}

.testimonials-slider .testimonial-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.testimonials-slider .testimonial-content p {
  font-style: italic;
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  position: relative;
}

.testimonials-slider .testimonial-content p::before {
  font-size: 3rem;
  color: #1976d2;
  position: absolute;
  top: -10px;
  left: -15px;
  font-family: serif;
  opacity: 0.3;
}

.testimonials-slider .testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
}

.testimonials-slider .author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonials-slider .author-avatar i {
  color: white;
  font-size: 1.2rem;
}

.testimonials-slider .author-info h5 {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.testimonials-slider .author-info span {
  color: #666;
  font-size: 0.9rem;
}

/* Slick Slider Custom Styles */
.testimonials-slider .slick-slide {
  margin: 0 10px;
}

.testimonials-slider .slick-list {
  margin: 0 -10px;
}

.testimonials-slider .slick-dots {
  bottom: -40px;
  list-style: none;
  display: flex !important;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  position: relative;
}

.testimonials-slider .slick-dots li {
  margin: 0 8px;
}

.testimonials-slider .slick-dots li button {
  /* width: 12px; */
  /* height: 12px; */
  /* border-radius: 50%; */
  /* background: #ccc; */
  /* border: 2px solid #e0e0e0; */
  /* font-size: 0; */
  /* padding: 0; */
  cursor: pointer;
  transition: all 0.3s ease;
  /* outline: none; */
}



.testimonials-slider .slick-dots li button:hover {
  /* background: #1976d2; */
  /* border-color: #1976d2; */
  transform: scale(1.1);
}

/* Navigation buttons removed - using only dots for navigation */

/* Responsive adjustments for testimonials slider */
@media (max-width: 768px) {
  .testimonials-slider .testimonial-card {
    padding: 20px;
  }
  
  .testimonials-slider .testimonial-content p {
    font-size: 0.95rem;
  }
  
  .testimonials-slider .testimonial-content p::before {
    font-size: 2.5rem;
    top: -8px;
    left: -12px;
  }
  
  /* Arrow navigation removed - using only dots */
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    padding: 80px 0;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-section .btn {
    border-radius: 25px;
    padding: 15px 40px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
    }
    
    .vision-text {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 250px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .nav-pills .nav-link {
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .who-we-are .btn {
        margin-bottom: 10px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1976d2;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #1565c0;
} 


.clients {
  background-color: white;
  padding: 40px 0;
  min-height: 200px;
  /* or any height you prefer */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.clients-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.clients-description {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-wrapper {
  height: auto;
}

.clients .swiper-slide img {
  transition: 0.3s;
  /* padding: 0 10px; */
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

#scrollCards::-webkit-scrollbar {
  display: none;
}

#scrollCards {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.card-img-top {
  height: 300px;
  object-fit: cover;
}

.get-started-img {
  max-width: 200px;
  height: auto;
}

.get-started-heading {
  font-size: 40px;
  font-weight: bold;
  color: white;
}

.get-started-paragraph {
  max-width: 600px;
  font-size: 16px;
  color: white;
}

.get-started .btn-primary {
  background-color: white;
  border: none;
  color: #519AFF;
}


.btn-get-started {
  color: var(--contrast-color);
  background: #519aff;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-get-started:hover {
  color: var(--contrast-color);
  background: #FFBF00;
}

.btn-learn-more {
  color: var(--contrast-color);
  background: #FFBF00;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 10px;
  transition: 0.5s;
}

.btn-learn-more:hover {
  color: var(--contrast-color);
  background: #519aff;
}