/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
  }
  

/*------------------------------Navbar Styles Starts---------------------------------------*/

  /* Navbar Styles Starts */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(244, 244, 244, 0.9); /* Semi-transparent background */
    padding: 5px 20px; /* Reduced padding to make navbar smaller */
    height: 90px; /* Fixed height for the navbar */
    z-index: 1000; /* Ensure navbar is above the slider */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  }
  
  .logo img {
    height: 90px; /* Smaller logo to match navbar height */
    width: auto;
    margin-top: 10px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: #333; /* Dark text color for contrast */
    font-size: 17px; /* Smaller font size */
    font-weight: 500; /* Medium weight */
    transition: color 0.3s ease;
  }
  
  .nav-links li a:hover {
    color: #3498db; /* Blue hover color */
  }
  
  /* Hamburger Menu Starts */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .bar {
    width: 25px;
    height: 3px;
    background-color: #333; /* Dark color for bars */
    margin: 4px 0;
    transition: 0.4s;
  }

   /* Hamburger Menu Ends */


  
  /* Responsive Navbar Starts */
  @media (max-width: 768px) {
    .nav-links {
      position: absolute;
      top: 60px; /* Adjusted to match navbar height */
      right: 0;
      background-color: rgba(244, 244, 244, 0.9); /* Semi-transparent background */
      flex-direction: column;
      width: 100%;
      text-align: center;
      display: none;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .hamburger.active .bar:nth-child(1) {
      transform: rotate(-45deg) translate(-5px, 6px);
    }
  
    .hamburger.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .hamburger.active .bar:nth-child(3) {
      transform: rotate(45deg) translate(-5px, -6px);
    }
  }
/* Responsive Navbar Ends */

  /* Navbar Styles Ends */

/*---------------------------------Navbar Styles Ends---------------------------------------*/




/*-----------------------------Full Width Slider Styles Starts----------------------------*/
  
  /* Full-Width Slider */
  .slider {
    position: relative;
    width: 100%;
    height: 80vh;;
    /* height: calc(100vh - 60px); Adjust height to start below navbar */
    margin-top: 90px; /* Push slider down by navbar height */
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
  }
  
  .slide {
    min-width: 100%;
    position: relative;
  }
  
.slide.active {
    opacity: 1;
}

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images cover the slider */
    display: block;
  }

  .slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
  
  .caption {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1.5rem;
    text-align: center;
  }
  
  /* Navigation Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    /* border-radius: 50%; */
    font-size: 1.5rem;
    transition: background 0.3s ease;
  }
  
  .arrow:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  .prev {
    left: 20px;
  }
  
  .next {
    right: 20px;
  }
  
  /* Pagination Dots */
  .pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
  }
  
  .pagination .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .pagination .dot.active {
    background: #fff;
  }
  
  /* Responsive Slider */
  @media (max-width: 768px) {
    .caption {
      font-size: 1.2rem;
      bottom: 15%;
    }
  
    .arrow {
      font-size: 1.2rem;
      padding: 8px;
    }
  }

/*-----------------------------Full Width Slider Styles Ends----------------------------*/





/*-------------------------Introduction Section Styles Starts--------------------------*/

.introduction {
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .intro-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
  }
  
  .intro-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  
  .intro-image:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .intro-description {
    flex: 1;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .intro-description:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
  }
  
  .intro-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
  }
  
  .intro-text {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out;
  }
  
  .intro-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .intro-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .intro-container {
      flex-direction: column;
      gap: 20px;
    }
  
    .intro-image, .intro-description {
      flex: 1 1 100%;
      max-width: 100%;
    }
  
    .intro-title {
      font-size: 2rem;
    }
  
    .intro-text {
      font-size: 1rem;
    }
  }

/*-------------------------Introduction Section Styles Ends-------------------------------*/




/*---------------------------Features Section Styles Starts------------------------------*/


.features {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .features-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-in-out;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  
  .feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
  }
  
  .feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, #3498db, #2980b9);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
  }
  
  .feature-card:hover::before {
    opacity: 0.1;
    top: -20%;
    left: -20%;
  }
  
  .feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .feature-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
  
  .feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .feature-card:hover i {
    color: #2980b9;
    transform: scale(1.2);
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .feature-card {
      padding: 25px;
    }
  }

/*---------------------------Features Section Styles Ends------------------------------*/


  
/*---------------------------Projects Showcase Section Styles Starts----------------------*/

.projects-showcase {
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
  
  .project-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .project-media {
    position: relative;
  }
  
  .before-after {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #f9f9f9;
  }
  
  .before-after img {
    width: 48%;
    border-radius: 10px;
  }
  
  .project-video {
    width: 100%;
    display: block;
    margin-top: 10px;
  }
  
  .project-details {
    padding: 20px;
  }
  
  .project-details h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .project-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .tech-specs {
    margin-bottom: 20px;
  }
  
  .tech-specs h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .tech-specs ul {
    list-style: none;
    padding: 0;
  }
  
  .tech-specs li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
  }
  
  .project-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .project-button:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .projects-grid {
      grid-template-columns: 1fr;
    }
  
    .project-card {
      margin-bottom: 30px;
    }
  }

/*---------------------------Projects Showcase Section Styles Ends----------------------*/


/*---------------------------Clients Section Styles Starts--------------------------------*/

.clients {
    padding: 80px 20px;
    background-color: #f9f9f9;
    overflow: hidden; /* Prevent horizontal overflow */
  }
  
  .clients .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
  
  .clients-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }
  
  .scroll-arrow {
    background: #3498db49;
    color: #fff;
    border: none;
    padding: 10px;
    /* border-radius: 50%; */
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease;
  }
  
  .scroll-arrow:hover {
    background: #2980b9;
    transform: translateY(-50%) scale(1.1);
  }
  
  .left-arrow {
    left: -20px;
  }
  
  .right-arrow {
    right: -20px;
  }
  
  .clients-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  }
  
  .clients-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
  }
  
  .client-card {
    flex: 0 0 300px; /* Fixed width for each card */
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .client-name {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .client-details {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }



  /* Responsive Design */
  @media (max-width: 768px) {
    .clients {
      padding: 60px 20px;
    }
  
    .scroll-arrow {
      display: none; /* Hide arrows on smaller screens */
    }
  
    .clients-grid {
      gap: 20px;
      padding: 10px 0;
    }
  
    .client-card {
      flex: 0 0 250px; /* Smaller cards for mobile */
    }
  }

  /*---------------------------Clients Section Styles Ends--------------------------------*/



  
  /*-----------------------------Technology Stack Section Styles Starts--------------------*/


  .technology-stack {
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .technology-stack .container {
    max-width: 1200px;
    margin: 15 auto;
  }
  
  .tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .tech-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .tech-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
  }
  
  .tech-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .tech-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
  }

/* Responsive Design */
  @media (max-width: 768px) {

    .technology-stack {
      padding: 60px 20px;
    }
  
    .tech-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
    }
  
    .tech-card {
      padding: 20px;
    }
  
    .tech-card i {
      font-size: 2rem;
    }
  
    .tech-card h3 {
      font-size: 1.2rem;
    }
  
    .tech-card p {
      font-size: 0.9rem;
    }
  }

  /*-----------------------------Technology Stack Section Styles Ends--------------------*/
  
  





/*-----------------------------Floating Buttons Styles Start-------------------------------*/

.float-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .float-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
  }
  
  .float-button:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  }
  
  .whatsapp {
    background: #25D366;
    color: #fff;
  }
  
  .call {
    background: #3498db;
    color: #fff;
  }
  
  .float-button i {
    font-size: 28px;
  }
  
  /* Pulse Animation */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .float-button:hover i {
    animation: pulse 1s infinite;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .float-buttons {
      bottom: 20px;
      right: 20px;
    }
    
    .float-button {
      width: 50px;
      height: 50px;
    }
    
    .float-button i {
      font-size: 24px;
    }
  }

/*-----------------------------Floating Buttons Styles Ends-------------------------------*/




  /*------------------------Footer Styles Starts------------------------------------*/


.footer {
    background: #3498db;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #34495e;
  }
  
  .footer-company {
    padding-right: 2rem;
  }
  
  .footer-logo {
    width: 230px;
    margin-bottom: 1rem;
  }
  
  .footer-description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #fff;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  
  .social-icon {
    color: #733d3d;
    font-size: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    color: #3498db;
    transform: translateY(-3px);
  }
  
  .footer-contact-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-heading {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .footer-contact p {
    font-size: 0.9rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }
  
  .footer-contact i {
    width: 20px;
  }
  
  .footer-quicklinks ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-quicklinks li {
    margin: 0.5rem 0;
  }
  
  .footer-quicklinks a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
  }
  
  .footer-quicklinks a:hover {
    color: #3498db;
  }
  
  .footer-copyright {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.8rem;
    color: #fff
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-main {
      grid-template-columns: 1fr;
    }
  
    .footer-contact-links {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .footer-company {
      padding-right: 0;
      text-align: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  
    .footer-contact p {
      justify-content: flex-start;
    }
  }
  
/*------------------------Footer Styles Ends------------------------------------*/

/* About Page Styles */
/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-size: 20px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
  }
  
  /* Introduction Section */
  .about-hero {
    padding: 100px 20px;
    background: #f9f9f9;
  }
  
  .about-container {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .about-content {
    flex: 1;
  }
  
  .about-image-container {
    flex: 1;
    perspective: 1000px;
  }
  
  .image-flipper {
    position: relative;
    width: 100%;
    height: 400px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  
  .about-image-container:hover .image-flipper {
    transform: rotateY(180deg);
  }
  
  .image-front,
  .image-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .image-front {
    background: url('images/about1.jpg') center/cover;
    z-index: 2;
  }
  
  .image-back {
    background: url('images/about2.jpg') center/cover;
    transform: rotateY(180deg);
  }
  
  .about-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
  }
  
  .about-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  /* Timeline Section */
.timeline-section {
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
  }
  
  .timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px; /* Align to the left for mobile/tablet */
    width: 2px;
    height: 100%;
    background: #3498db;
  }
  
  .timeline-item {
    padding: 20px;
    padding-left: 50px; /* Add space for the dot */
    position: relative;
  }
  
  .timeline-content {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
  }
  
  .timeline-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #3498db;
    top: 50%;
    left: 10px; /* Align with the vertical line */
    transform: translateY(-50%);
    z-index: 1;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .timeline::before {
      left: 50%; /* Center the vertical line for desktop */
      transform: translateX(-50%);
    }
  
    .timeline-item {
      width: 50%;
      padding: 20px 40px;
    }
  
    .timeline-item:nth-child(odd) {
      left: 0;
      text-align: right;
    }
  
    .timeline-item:nth-child(even) {
      left: 50%;
      text-align: left;
    }
  
    .timeline-item:nth-child(odd)::before {
      right: -10px;
      left: auto;
    }
  
    .timeline-item:nth-child(even)::before {
      left: -10px;
    }
  }
  
  /* Team Section */
  .team-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .team-details {
    padding: 20px;
    text-align: center;
  }
  
  .team-details h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .team-details p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .team-social a {
    color: #3498db;
    font-size: 1.2rem;
    transition: color 0.3s ease;
  }
  
  .team-social a:hover {
    color: #2980b9;
  }
  
  /* Certifications Section */
  .certifications-section {
    padding: 80px 20px;
    background-color: #fff;
  }
  
  .certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .certification-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .certification-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .certification-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }
  
  .certification-card p {
    font-size: 1rem;
    color: #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .about-container {
      flex-direction: column;
    }
  
    .about-content {
      order: 1;
    }
  
    .about-image-container {
      width: 100%;
      max-width: 500px;
    }
  
    .about-content h1 {
      font-size: 2rem;
    }
  
    .timeline::before {
      left: 20px;
    }
  
    .timeline-item {
      width: 100%;
      left: 0 !important;
      padding-left: 70px;
      padding-right: 20px;
      text-align: left !important;
    }
  
    .timeline-item::before {
      left: 10px;
      right: auto;
      top: 50%;
      transform: translateY(-50%);
    }
  
    .team-grid,
    .certifications-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
  }
  
/* Contact Section */
.contact-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .contact-info {
    display: grid;
    gap: 20px;
  }
  
  .info-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  .info-card i {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 15px;
  }
  
  .info-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
  }
  
  .info-card p {
    font-size: 1rem;
    color: #666;
  }
  
  .contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #3498db;
    outline: none;
  }
  
  button[type="submit"] {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
  }
  
  .map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-form {
      padding: 20px;
    }
  }



  /* Product Gallery */
.product-gallery {
    padding: 80px 20px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .product-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  .product-image img {
    width: 100%;
    height: 200px;
    object-fit: fill;
    border-radius: 10px;
  }
  
  .product-btn {
    display: inline-block;
    background: #3498db;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
  }
  
  
  
  /* Product Details Page Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
  }

  .container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
  }

  .product-details {
    padding: 120px 20px 60px;
  }

  .detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .product-images {
    position: relative;
    
  }

  .product-images {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    animation: fadeIn 0.6s ease-in;
  }

  .product-images img {
    width: 100%;
    height: 500px;
    border-radius: 10px;
  }

  .key-features {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: slideUp 0.8s ease-out;
  }

  .product-info {
    background: #fff;
    height: fit-content;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: fadeInUp 0.6s ease-in;
  }

  .product-info h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 25px;
  }

  .description-box {
    margin-bottom: 30px;
  }

  .description-box p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
  }

  .specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
  }

  .spec-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    transition: all 0.3s ease;
  }

  .spec-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .spec-item i {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 15px;
  }

  .spec-item h4 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 8px;
  }

  .spec-item p {
    font-size: 0.95rem;
    color: #666;
  }

  .key-features h2 {
    font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;
  }

  .key-features ul {
    list-style: none;
  }

  .key-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
    color: #444;
  }

  .key-features i {
    color: #3498db;
    font-size: 1.2rem;
  }

  /* Animations */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .product-details {
      padding: 100px 20px 40px;
    }

    .detail-grid {
      grid-template-columns: 1fr;
      gap: 30px;
    }

    .specs {
      grid-template-columns: 1fr;
    }

    .product-info h1 {
      font-size: 1.8rem;
    }

    .key-features h2 {
      font-size: 1.4rem;
    }
  }

  /* Services Page Styles */
  .services-hero {
    padding: 100px 20px;
    background: #f9f9f9;
}

.service-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-content {
    flex: 1;
    /* margin-bottom: 190px; */
}

.service-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

.services-grid {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-tab {
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-tab:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-tab:hover .service-icon {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-container {
        flex-direction: column;
        text-align: center;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
    }

    .service-image {
        max-width: 500px;
    }
}


/* Feature Tabs Styles */
.feature-tabs {
  padding: 40px 20px;
  background: #fff;
}

.tabs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.feature-tab {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.feature-tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-icon {
  width: 50px;
  height: 50px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.tab-icon i {
  color: #fff;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-tab:hover .tab-icon {
  background: #2980b9;
}

.feature-tab:hover .tab-icon i {
  transform: scale(1.2);
}

.tab-content h4 {
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.tab-content p {
  color: #666;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .tabs-container {
    grid-template-columns: 1fr;
  }
  
  .feature-tab {
    flex-direction: column;
    text-align: center;
  }
  
  .tab-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
  




/* Certificates Section Styles */
.certificates-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.certificate-card {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border-left: 4px solid #3498db;
}

.certificate-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.certificate-icon {
  width: 60px;
  height: 60px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.certificate-card:hover .certificate-icon {
  background: #2980b9;
  transform: scale(1.1);
}

.certificate-icon i {
  color: #fff;
  font-size: 1.5rem;
}

.certificate-content {
  flex: 1;
}

.certificate-content h3 {
  color: #2c3e50;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.certificate-content p {
  color: #666;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.certificate-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.download-btn, .preview-btn {
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.download-btn {
  background: #3498db;
  color: #fff;
  border: 2px solid #3498db;
}

.download-btn:hover {
  background: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
}

.preview-btn {
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
}

.preview-btn:hover {
  background: #3498db;
  color: #fff;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .certificates-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .certificate-card {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .certificate-actions {
    justify-content: center;
  }
  
  .download-btn, .preview-btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .certificate-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .download-btn, .preview-btn {
    justify-content: center;
  }
}




/* Product Media Section - Side by Side */
.product-media-section {
  padding: 80px 20px;
  background: #f9f9f9;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.media-item {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.media-item:hover {
  transform: translateY(-5px);
}

.media-item h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.4rem;
}

/* Video Styles */
.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Photo Styles */
.photo-wrapper {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.photo-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.photo-wrapper:hover img {
  transform: scale(1.05);
}

.photo-caption {
  text-align: center;
  color: #666;
  margin-top: 15px;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .product-media-section {
    padding: 60px 20px;
  }
  
  .media-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .media-item {
    padding: 20px;
  }
  
  .media-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .media-grid {
    gap: 20px;
  }
  
  .media-item {
    padding: 15px;
  }
}



/* Video Section Styles */
.video-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.video-content {
  display: flex;
  justify-content: flex-end;
  max-width: 1200px;
  margin: 0 auto;
}

/* Video Container */
.video-container {
  width: 100%;
  max-width: 600px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-section {
    padding: 40px 20px;
  }
  
  .video-content {
    justify-content: center;
  }
  
  .video-container {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 30px 15px;
  }
  
  .video-wrapper {
    border-radius: 10px;
  }
}