/* ActiveLogica Website Styles */

/* Global Styles */
:root {
  --primary-color: #00b3b3; /* Teal/turquoise from logo */
  --secondary-color: #0099cc; /* Lighter blue from logo */
  --dark-color: #333333;
  --light-color: #ffffff;
  --gray-color: #f4f4f4;
  --border-color: #dddddd;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background-color: var(--light-color);
}

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

a:hover {
  color: var(--secondary-color);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--primary-color);
  color: var(--light-color);
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.btn:hover {
  background: var(--secondary-color);
  color: var(--light-color);
}

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

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

.section {
  padding: 60px 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.section-title p {
  color: #777;
  max-width: 700px;
  margin: 0 auto;
}

/* Header Styles */
.header {
  background-color: var(--light-color);
  box-shadow: var(--box-shadow);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 25px;
}

.nav-menu a {
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: var(--primary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  bottom: -5px;
  left: 0;
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--light-color);
  padding: 150px 0 100px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* Project Sections */
.project-section {
  padding: 50px 0;
}

.project-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.project-card {
  flex: 1 1 300px;
  background: var(--light-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.project-img {
  height: 200px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .project-img img {
  transform: scale(1.1);
}

.project-content {
  padding: 20px;
}

.project-content h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.project-content p {
  margin-bottom: 15px;
  color: #777;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--gray-color);
}

.testimonial-wrapper {
  position: relative;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  overflow: hidden;
}

.testimonial-card {
  flex: 1 1 300px;
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  position: relative;
  transition: transform 0.3s ease;
}

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

.testimonial-text {
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.nav-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}

.nav-btn svg {
  width: 20px;
  height: 20px;
}

.author-info h4 {
  margin-bottom: 5px;
}

.author-info h4 a {
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.author-info h4 a:hover {
  color: var(--primary-color);
}

.author-info p {
  color: #777;
  font-size: 0.9rem;
}

/* Partners Section */
.partners {
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partner-logo {
  flex: 0 0 150px;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* Footer Styles */
.footer {
  background: var(--primary-color);
  color: var(--light-color);
  padding: 70px 0 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h3 {
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-column p {
  margin-bottom: 15px;
}

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

.footer-links a {
  color: var(--light-color);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
}

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

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

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* WhatsApp Chat Button (Contact Page) */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: var(--light-color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow);
  z-index: 999;
  transition: var(--transition);
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Contact Forms */
.contact-forms {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-form {
  flex: 1 1 300px;
  background: var(--light-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background: var(--light-color);
    width: 100%;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 15px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .section {
    padding: 40px 0;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }
}


/* Responsiveness for Larger Screens */

/* Laptops and Desktops (Default styles usually cover this, but we can refine) */
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

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

/* Extra Large Desktops */
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
  /* Optional: Slightly larger base font size for very large screens */
  /* html {
    font-size: 17px; 
  } */
}

/* Very Large Screens (e.g., > 1920px) */
@media (min-width: 1920px) {
  .container {
    max-width: 1600px; /* Adjust as needed */
  }
  /* Optional: Further increase font size if necessary */
  /* html {
    font-size: 18px; 
  } */
}

/* Ensuring header/nav scales reasonably */
@media (min-width: 1200px) {
  .navbar .nav-menu li a {
    padding: 15px 20px;
  }
}

/* Adjust grid layouts for larger screens if needed */
/* Example: If using a 3-column grid, maybe make it 4 columns on very large screens */
/* @media (min-width: 1600px) {
  .some-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
} */



/* Project Section Image Fixes */
.project-img {
    overflow: hidden; /* Ensure image doesn't overflow container */
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* Default 16:9 Aspect Ratio */
    height: 0;
}

.project-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    object-position: center; /* Center the image */
}

/* Adjustments for specific devices */

/* Mobile (approx 6.5 inch ~ 360px-414px width) */
@media (max-width: 767px) {
    .project-img {
        padding-top: 75%; /* Increased height for mobile to show full image */
    }
}

/* Laptop (approx 14 inch ~ 1366px width) */
@media (min-width: 1200px) and (max-width: 1440px) {
    .project-img {
        padding-top: 50%; /* Adjust aspect ratio for laptop if needed, e.g., 2:1 */
    }
}

/* Monitor (approx 24 inch ~ 1920px width) */
@media (min-width: 1800px) {
    .project-img {
        padding-top: 45%; /* Adjust aspect ratio for large monitors */
    }
}




/* Team Section Enhancements */
.team-member .member-image {
    width: 400px; /* User requested size */
    height: 400px; /* User requested size */
    border-radius: 50%; /* Round corners */
    overflow: hidden; /* Ensure image stays within bounds */
    margin: 0 auto 20px; /* Center image and add bottom margin */
    position: relative;
}

.team-member .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
    display: block;
    transition: transform 0.3s ease; /* Smooth transition for hover */
}

.team-member .member-image:hover img {
    transform: scale(0.95); /* Slight zoom-out effect on hover */
}

.team-member .member-info h3 {
    display: flex; /* Align icon and name */
    align-items: center; /* Vertically center icon and name */
    justify-content: center; /* Center align */
    gap: 8px; /* Space between icon and name */
}

.team-member .member-info h3 a {
    color: inherit; /* Inherit text color */
    text-decoration: none; /* Remove underline */
    display: flex; /* Align icon and name within link */
    align-items: center;
    gap: 8px;
}

.team-member .member-info h3 a:hover {
    color: var(--primary-color); /* Change color on hover */
}

.linkedin-icon {
    width: 16px; /* Small icon size */
    height: 16px;
    vertical-align: middle; /* Align icon nicely with text */
}




/* Team Section Horizontal Layout */
.team-container {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: space-around; /* Distribute space */
    gap: 30px; /* Space between team members */
}

.team-member {
    flex: 1 1 300px; /* Flex properties for responsiveness */
    max-width: 350px; /* Max width for each member card */
    text-align: center; /* Center align text below image */
    display: flex;
    flex-direction: column; /* Stack image and info vertically */
    align-items: center; /* Center items horizontally */
}

/* Ensure image styles are applied correctly */
.team-member .member-image {
    width: 300px; /* Adjusted size for layout */
    height: 300px; /* Adjusted size for layout */
    border-radius: 50%; /* Round corners */
    overflow: hidden; /* Ensure image stays within bounds */
    margin-bottom: 20px; /* Space between image and info */
    position: relative;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.team-member .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the area without distortion */
    display: block;
    transition: transform 0.3s ease; /* Smooth transition for hover */
}

.team-member .member-image:hover img {
    transform: scale(0.95); /* Slight zoom-out effect on hover */
}

.team-member .member-info {
    /* No specific flex needed here as it's block layout */
}

.team-member .member-info h3 {
    display: flex; /* Align icon and name */
    align-items: center; /* Vertically center icon and name */
    justify-content: center; /* Center align */
    gap: 8px; /* Space between icon and name */
    margin-bottom: 10px; /* Space below name */
}

.team-member .member-info h3 a {
    color: inherit; /* Inherit text color */
    text-decoration: none; /* Remove underline */
    display: flex; /* Align icon and name within link */
    align-items: center;
    gap: 8px;
}

.team-member .member-info h3 a:hover {
    color: var(--primary-color); /* Change color on hover */
}

.linkedin-icon {
    width: 16px; /* Small icon size */
    height: 16px;
    vertical-align: middle; /* Align icon nicely with text */
}

.team-member .member-position {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member .member-bio {
    font-size: 0.9rem;
    color: #777;
}

/* Responsive adjustments for team layout */
@media (max-width: 992px) {
    .team-member {
        flex-basis: calc(50% - 15px); /* Two columns on medium screens */
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .team-container {
        flex-direction: column; /* Stack vertically on small screens */
        align-items: center; /* Center items when stacked */
    }
    .team-member {
        flex-basis: 100%; /* Full width on small screens */
        max-width: 400px; /* Limit width on small screens */
    }
    .team-member .member-image {
        width: 300px; /* Slightly smaller image on mobile */
        height: 300px;
    }
}




/* Partners Section Enhancements */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    gap: 40px;
}

.partner-item {
    flex: 0 0 150px; /* Base size for each partner item */
    text-align: center; /* Center the name below the logo */
    display: flex;
    flex-direction: column; /* Stack logo and name vertically */
    align-items: center; /* Center items horizontally */
}

.partner-item a {
    display: block; /* Make the link container block-level */
    margin-bottom: 10px; /* Space between logo and name */
    transition: var(--transition);
}

.partner-item img {
    max-width: 100%; /* Ensure logo fits within the container */
    height: 60px; /* Fixed height for logos */
    object-fit: contain; /* Maintain aspect ratio */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-item a:hover img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.05); /* Slight zoom on hover */
}

.partner-name {
    font-size: 0.9rem;
    color: #777;
    font-weight: 500;
}

/* Dark mode adjustments for partner names */
[data-theme="dark"] .partner-name {
    color: var(--text-color); /* Use dark mode text color */
    opacity: 0.8;
}




/* Specific adjustments for partner logo sizes */
.partner-item img[alt="Startup India Logo"] {
    height: 80px; /* Increase height for Startup India */
    /* Adjust width if needed, but height + contain should work */
}

.partner-item img[alt="KSIDC Logo"] {
    height: 75px; /* Increase height for KSIDC */
    /* Adjust width if needed */
}




/* Styling for embedded full article */
.article-full-content {
    margin-top: 20px; /* Add space above the full article */
    text-align: left; /* Ensure text is left-aligned */
    line-height: 1.7;
    color: #555; /* Slightly lighter text color for article body */
}

.article-full-content h4 {
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--dark-color);
    font-weight: 700;
}

.article-full-content blockquote {
    margin: 20px 0;
    padding: 15px 20px;
    background-color: var(--gray-color);
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #666;
}

.article-reference {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: #777;
    text-align: left;
}

.article-reference a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-reference a:hover {
    color: var(--secondary-color);
}

/* Dark mode adjustments */
[data-theme="dark"] .article-full-content {
    color: #ccc;
}

[data-theme="dark"] .article-full-content h4 {
    color: var(--light-color);
}

[data-theme="dark"] .article-full-content blockquote {
    background-color: rgba(255, 255, 255, 0.05);
    color: #bbb;
    border-left-color: var(--secondary-color);
}

[data-theme="dark"] .article-reference {
    color: #aaa;
    border-top-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .article-reference a {
    color: var(--secondary-color);
}




/* Styling for source logo link */
.source-logo-link {
    display: inline-block; /* Allows setting width/height and margins */
    margin-top: 10px; /* Space above the logo */
    margin-bottom: 15px; /* Space below the logo */
    line-height: 0; /* Prevent extra space below image */
}

.source-logo {
    height: 25px; /* Adjust height as needed */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align nicely if there's text nearby */
    transition: opacity 0.3s ease;
}

.source-logo-link:hover .source-logo {
    opacity: 0.8; /* Slight fade on hover */
}

/* Remove the old text reference style */
.article-reference {
    display: none; /* Hide the old text reference */
}



/* Industry Sectors Section - Intellectsoft Style */
.industry-sectors {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.industry-sectors .container {
    position: relative;
    z-index: 1;
}

.industry-sectors .section-title {
    color: var(--light-color);
    margin-bottom: 60px;
}

.industry-sectors .section-title h2 {
    color: var(--light-color);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industry-sectors .section-title p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.sector-card {
    background: linear-gradient(135deg, var(--sector-color) 0%, var(--sector-color-dark) 100%);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sector-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.sector-card:hover::before {
    opacity: 1;
}

.sector-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.sector-card:hover .sector-icon {
    background-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.sector-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--light-color);
    fill: none;
    stroke-width: 2;
}

.sector-card h3 {
    color: var(--light-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Sector card colors */
.sector-fintech {
    --sector-color: #e74c3c;
    --sector-color-dark: #c0392b;
}

.sector-healthcare {
    --sector-color: #3498db;
    --sector-color-dark: #2980b9;
}

.sector-construction {
    --sector-color: #f39c12;
    --sector-color-dark: #e67e22;
}

.sector-logistics {
    --sector-color: #27ae60;
    --sector-color-dark: #229954;
}

.sector-automotive {
    --sector-color: #9b59b6;
    --sector-color-dark: #8e44ad;
}

.sector-travel {
    --sector-color: #f1c40f;
    --sector-color-dark: #f39c12;
}

.sector-edtech {
    --sector-color: #e67e22;
    --sector-color-dark: #d35400;
}

.sector-insurance {
    --sector-color: #1abc9c;
    --sector-color-dark: #16a085;
}

/* Technology Expertise Section - Intellectsoft Style */
.tech-expertise {
    padding: 80px 0;
    background-color: var(--gray-color);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.tech-card {
    background-color: var(--light-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(0, 179, 179, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    background: linear-gradient(135deg, rgba(0, 179, 179, 0.2), rgba(0, 153, 204, 0.2));
    transform: scale(1.1) rotate(5deg);
}

.tech-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon img {
    transform: scale(1.1);
}

.tech-card h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.tech-card:hover h3 {
    color: var(--primary-color);
}

.tech-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Dark mode adjustments */
[data-theme="dark"] .tech-expertise {
    background-color: var(--bg-color);
}

[data-theme="dark"] .tech-card {
    background-color: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .tech-card h3 {
    color: var(--text-color);
}

[data-theme="dark"] .tech-card:hover h3 {
    color: var(--primary-color);
}

[data-theme="dark"] .tech-card p {
    color: var(--text-color);
    opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .sectors-grid, .tech-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .sectors-grid, .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sector-card, .tech-card {
        padding: 20px 15px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .sectors-grid, .tech-grid {
        grid-template-columns: 1fr;
    }
}

/* Hide browser scrollbars that might appear as duplicate arrows */
.testimonial-container::-webkit-scrollbar {
  display: none;
}

.testimonial-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Ensure no browser-generated navigation appears */
.testimonial-wrapper {
  overflow: visible;
}

.testimonial-wrapper * {
  overflow: visible;
}


/* Hide duplicate slider buttons that appear as unwanted arrows */
.slider-btn {
  display: none !important;
}


/* Mission & Vision Section - Inspired by Digisailor */
.mission-vision-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a7a7a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.mission-vision-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.mission-vision-section .container {
  position: relative;
  z-index: 2;
}

.mission-vision-section .section-title h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.mission-vision-section .section-title p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

.mission-vision-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

.mission-card,
.vision-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before,
.vision-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.15);
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.card-icon img {
  width: 50px;
  height: 50px;
}

.mission-card:hover .card-icon,
.vision-card:hover .card-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-content h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.card-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Dark mode adjustments */
.dark-mode .mission-vision-section {
  background: linear-gradient(135deg, #1a4a4a 0%, #0d3333 100%);
}

.dark-mode .mission-card,
.dark-mode .vision-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-mode .mission-card:hover,
.dark-mode .vision-card:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive design */
@media (max-width: 768px) {
  .mission-vision-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-vision-section .section-title h2 {
    font-size: 2rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 2rem;
  }
  
  .card-content h3 {
    font-size: 1.5rem;
  }
  
  .card-icon {
    width: 70px;
    height: 70px;
  }
  
  .card-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .mission-vision-section .section-title h2 {
    font-size: 1.8rem;
  }
  
  .mission-card,
  .vision-card {
    padding: 1.5rem;
  }
  
  .card-content h3 {
    font-size: 1.3rem;
  }
  
  .card-content p {
    font-size: 0.9rem;
  }
}

