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

:root {
  --primary-color: #0066cc;
  --primary-dark: #004d99;
  --secondary-color: #ff6600;
  --dark-color: #333333;
  --medium-color: #666666;
  --light-color: #f8f9fa;
  --white-color: #ffffff;
  --border-color: #e9ecef;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --font-heading: 'Jost', sans-serif;
  
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--dark-color);
  line-height: 1.6;
  background-color: var(--white-color);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-color);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: var(--transition);
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white-color);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1.1rem;
}

.section-title {
  text-align: center;
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: var(--primary-color);
  margin: 15px auto;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--medium-color);
}

.section-bg {
  background-color: var(--light-color);
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* =============================================
   HEADER & NAVIGATION
   ============================================= */

.header {
      font-family: 'Open Sans', sans-serif;
      background: #ffffff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 15px 0;
      transition: all 0.3s ease;
    }
    .header .logo h1 {
      font-size: 28px;
      font-weight: 800;
      color: #0a6de5;
      margin: 0;
      letter-spacing: 1px;
    }
    .header .navmenu ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .header .navmenu ul li {
      display: inline-block;
      margin: 0 15px;
    }
    .header .navmenu ul li a {
      color: #0a6de5;
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.2s ease;
    }
    .header .navmenu ul li a:hover, .header .navmenu ul li a.active {
      color: #0171e3;
      transform: scale(1.05);
    }

/* Mobile Navigation */
.mobile-nav-toggle {
  color: var(--dark-color);
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: var(--transition);
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  
  .navmenu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: var(--white-color);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    overflow-y: auto;
    padding: 20px;
  }
  
  .navmenu ul {
    display: block;
  }
  
  .navmenu li {
    padding: 10px 0;
  }
  
  .navmenu a {
    padding: 10px 0;
    display: block;
  }
  
  .navmenu.active {
    right: 0;
  }
}

/* =============================================
   HERO SECTIONS
   ============================================= */

.hero {
  width: 100%;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/3184291/pexels-photo-3184291.jpeg') center center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  color: var(--white-color);
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color);
}

.hero .hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero .btn {
  margin-right: 15px;
}

.hero-img {
  text-align: right;
}

.hero-img img {
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

@media (max-width: 991px) {
  .hero {
    height: auto;
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-img {
    text-align: center;
    margin-top: 40px;
  }
}

/* Page-specific hero sections */
.about-hero,
.services-hero,
.clients-hero,
.testimonials-hero,
.contact-hero {
  width: 100%;
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.pexels.com/photos/3184296/pexels-photo-3184296.jpeg') center center;
  background-size: cover;
  position: relative;
  padding: 120px 0;
  display: flex;
  align-items: center;
  color: var(--white-color);
  text-align: center;
}

.about-hero h1,
.services-hero h1,
.clients-hero h1,
.testimonials-hero h1,
.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white-color);
}

.about-hero p,
.services-hero p,
.clients-hero p,
.testimonials-hero p,
.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
}

@media (max-width: 991px) {
  .about-hero,
  .services-hero,
  .clients-hero,
  .testimonials-hero,
  .contact-hero {
    height: auto;
    padding: 100px 0 60px;
  }
  
  .about-hero h1,
  .services-hero h1,
  .clients-hero h1,
  .testimonials-hero h1,
  .contact-hero h1 {
    font-size: 2.5rem;
  }
}

/* =============================================
   STATS SECTION
   ============================================= */

.stats {
  padding: 60px 0;
  background-color: var(--primary-color);
  color: var(--white-color);
}

.stats-item {
  text-align: center;
  padding: 20px;
}

.stats-item span {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
  color: var(--white-color);
}

.stats-item p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */

.about-content {
  padding: 80px 0;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
}

.about-content ul {
  margin-bottom: 30px;
}

.about-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
}

.about-content ul li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--primary-color);
}

.mission-vision {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.mission-vision .box {
  flex: 1;
  padding: 20px;
  background-color: var(--light-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.mission-vision h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.values {
  padding: 80px 0;
}

.value-box {
  text-align: center;
  padding: 30px 20px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.value-box:hover {
  transform: translateY(-10px);
}

.value-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.value-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.team {
  padding: 80px 0;
}

.team-member {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.member-info {
  padding: 20px;
  background: var(--white-color);
}

.member-info h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-info span {
  display: block;
  font-size: 0.9rem;
  color: var(--medium-color);
  margin-bottom: 10px;
}

.member-info p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-color);
  color: var(--dark-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social a:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* =============================================
   SERVICES PAGE STYLES
   ============================================= */

.services-list {
  padding: 80px 0;
}

.service-details {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.service-details .icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-details h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.service-features {
  margin: 25px 0;
}

.service-features h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.service-features ul {
  margin-left: 20px;
}

.service-features ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.service-features ul li i {
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--primary-color);
}

.tech-resources {
  padding: 80px 0;
}

.tech-resources h2 {
  text-align: center;
  margin-bottom: 40px;
}

.tech-resources h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.skills-list {
  margin-top: 30px;
}

.skill-item {
  margin-bottom: 20px;
}

.skill-item h4 {
  margin-bottom: 10px;
}

.skill-level {
  height: 10px;
  background: var(--light-color);
  border-radius: 5px;
  overflow: hidden;
}

.level-bar {
  height: 100%;
  background: var(--primary-color);
  border-radius: 5px;
}

.tech-benefits .benefit-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.tech-benefits .benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-top: 3px;
}

.process {
  padding: 80px 0;
  background-color: var(--light-color);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
}

/* =============================================
   CLIENTS PAGE STYLES
   ============================================= */

.clients-showcase {
  padding: 80px 0;
}

.client-categories {
  margin-top: 40px;
}

.category {
  margin-bottom: 40px;
}

.category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category h3 i {
  color: var(--primary-color);
}

.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
}

.client-logos img {
  height: 60px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.client-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.success-stories {
  padding: 80px 0;
}

.story-card {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
}

.story-header {
  padding: 20px;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.story-header img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.story-header h3 {
  color: var(--white-color);
  margin: 0;
}

.story-content {
  padding: 20px;
}

.story-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 15px 0 10px;
}

.story-content ul {
  margin-left: 20px;
}

.story-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.story-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.industries {
  padding: 80px 0;
}

.industry-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

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

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* =============================================
   TESTIMONIALS PAGE STYLES
   ============================================= */

.video-testimonials {
  padding: 80px 0;
}

.video-card {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: var(--transition);
}

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

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: var(--transition);
}

.video-card:hover .play-btn {
  background: var(--primary-color);
  color: var(--white-color);
}

.video-info {
  padding: 20px;
}

.video-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.video-info p {
  color: var(--medium-color);
  font-size: 0.9rem;
}

.written-testimonials {
  padding: 80px 0;
}

.testimonial-item {
  text-align: center;
  padding: 30px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
}

.testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 5px solid var(--light-color);
}

.testimonial-item h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.testimonial-item h4 {
  font-size: 1rem;
  color: var(--medium-color);
  margin-bottom: 15px;
}

.stars {
  color: var(--warning-color);
  margin-bottom: 15px;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--primary-color);
  font-size: 1.5rem;
  opacity: 0.5;
}

.quote-icon-left {
  margin-right: 10px;
}

.quote-icon-right {
  margin-left: 10px;
}

.case-studies {
  padding: 80px 0;
}

.case-study {
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  overflow: hidden;
  height: 100%;
}

.case-header {
  padding: 20px;
  background: var(--primary-color);
  color: var(--white-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-header h3 {
  color: var(--white-color);
  margin: 0;
}

.industry-tag {
  background: var(--white-color);
  color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.case-content {
  padding: 20px;
}

.case-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin: 15px 0 10px;
}

.case-content ul {
  margin-left: 20px;
}

.case-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
}

.case-content ul li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* =============================================
   CONTACT PAGE STYLES
   ============================================= */

.contact-info {
  padding: 80px 0;
}

.info-box {
  text-align: center;
  padding: 30px;
  background: var(--white-color);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.info-box i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.info-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.info-box p {
  margin-bottom: 20px;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-color);
  font-weight: 600;
}

.btn-link:hover {
  color: var(--primary-dark);
}

.contact-form {
  padding: 80px 0;
}

.php-email-form {
  width: 100%;
}

.php-email-form .form-control {
  height: 50px;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  transition: var(--transition);
}

.php-email-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
}

.php-email-form textarea.form-control {
  height: auto;
  padding: 15px;
}

.php-email-form .form-select {
  height: 50px;
  padding: 10px 15px;
  font-size: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 4px;
}

.php-email-form .form-label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

.php-email-form button[type="submit"] {
  background: var(--primary-color);
  border: 0;
  padding: 12px 40px;
  color: var(--white-color);
  transition: var(--transition);
  border-radius: 4px;
  font-weight: 600;
}

.php-email-form button[type="submit"]:hover {
  background: var(--primary-dark);
}

.php-email-form .loading {
  display: none;
  background: var(--white-color);
  text-align: center;
  padding: 15px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--primary-color);
  border-top-color: var(--white-color);
  animation: animate-loading 1s linear infinite;
}

.php-email-form .error-message {
  display: none;
  color: var(--white-color);
  background: var(--danger-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

.php-email-form .sent-message {
  display: none;
  color: var(--white-color);
  background: var(--success-color);
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.office-hours {
  padding: 80px 0;
}

.hours-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.hours-box h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.hours-table {
  margin-bottom: 20px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hour-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 600;
}

.time {
  color: var(--primary-color);
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: var(--medium-color);
  font-style: italic;
}

.faq-box {
  background: var(--white-color);
  padding: 30px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.faq-box h3 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: var(--primary-color);
}

.accordion-button {
  font-weight: 600;
  color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0, 102, 204, 0.1);
  color: var(--primary-color);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--border-color);
}

.map {
  padding: 0;
}

.map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */

.cta {
  padding: 60px 0;
  background: var(--primary-color);
  color: var(--white-color);
}

.cta h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  font-size: 0.9rem;
  color: var(--medium-color);
  background-color: var(--dark-color);
  padding-top: 0;
}

.footer-newsletter {
  padding: 60px 0;
  background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter h4 {
  font-size: 1.5rem;
  color: var(--white-color);
  margin-bottom: 15px;
}

.footer-newsletter p {
  margin-bottom: 20px;
  opacity: 0.8;
}

.newsletter-form {
  margin-top: 30px;
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.newsletter-form button {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 600;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-dark);
}

.footer-top {
  padding: 60px 0 30px;
}

.footer-about {
  margin-bottom: 30px;
}

.footer-about .logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 20px;
}

.footer-about .logo .sitename {
  color: var(--primary-color);
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact strong {
  color: var(--white-color);
}

.footer-contact span {
  opacity: 0.8;
}

.footer-links h4 {
  font-size: 1.2rem;
  color: var(--white-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--medium-color);
  transition: var(--transition);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.8rem;
  margin-right: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--white-color);
}

.footer-bottom a {
  color: var(--primary-color);
}

.footer-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* =============================================
   SCROLL TOP BUTTON
   ============================================= */

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-dark);
  color: var(--white-color);
}

/* =============================================
   RESPONSIVE ADJUSTMENTS
   ============================================= */

@media (max-width: 1199px) {
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 991px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .mission-vision {
    flex-direction: column;
  }
  
  .client-logos {
    justify-content: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  .newsletter-form button {
    border-radius: 4px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .cta .row {
    text-align: center;
  }
  
  .cta .text-lg-end {
    text-align: center !important;
    margin-top: 20px;
  }
}
/* Testimonial Cards Alignment Fix */
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card .profile {
  margin-top: auto; /* Pushes the profile to the bottom */
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-card .profile-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-card .profile div {
  flex: 1;
}

.testimonial-card p {
  margin-bottom: 20px;
}