html {
  scroll-behavior: smooth;
}
/* ----------------- Intro Section ----------------- */
/* ================================================= */

        .hero-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .video-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../vid/capture1.png');
            background-size: cover; /* Ensure the image covers the full screen */
            background-repeat: no-repeat; /* Prevent tiling */
            background-position: center center; /* Center the image */
            background-attachment: fixed; /* Keep the background fixed on scroll */
        }

        .video-container video {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: none;
        }

        .hero-content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75));
            z-index: 2;
        }

        .hero-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: left;
            color: white;
            z-index: 3;
            max-width: 90%;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 60px;
            font-family: 'Manrope', sans-serif;
        }

        .hero-content p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            line-height: 1.6;
            font-family: 'Inter', sans-serif;
        }

        .hero-cta-button {
            display: inline-block;
            background: #2116e6;
            color: white;
            padding: 12px 24px;
            text-decoration: none;
            font-size: 1.3rem;
            border-radius: 8px;
            transition: background 0.3s ease;
            font-family: 'Quicksand', sans-serif;
			 font-weight: bold;
        }

        .hero-cta-button:hover {
            background:  #1108b8;
            color:white;
            text-decoration: none;
            font-weight: bold;
			
        }
        .hero-cta-button:active {
            transform: scale(0.95);
            background: #2116e6;
            color: white;
			font-weight: bold;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-cta-button {
                font-size: 1rem;
                padding: 10px 20px;
            }
        }


/* ----------------- Pricing Style ----------------- */
/* Modern Data Insights Section */
.insights-section {
  padding: 50px 0 80px;
  background-image: url('../img/background.jpg'); /* Path to your background image */
  background-size: cover; /* Ensure the image covers the full screen */
  background-repeat: no-repeat; /* Prevent tiling */
  background-position: center center; /* Center the image */
  background-attachment: fixed; /* Keep the background fixed on scroll */
  position: relative;
  overflow: hidden;
}

.insights-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #f09ff4, #a7cdf1, #aef7fe);
  z-index: 1;
}

.insights-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.insights-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.insights-header h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1b02a8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0 0 1px;
  position: relative;
  display: inline-block;
}

.insights-header p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  max-width: 700px;
  margin: 15px auto 0;
}

/* Modern Grid Layout */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.insight-item {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 10px #026269;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.insight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px #480146;
}

.insight-icon {
  flex: 0 0 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  font-size: 2.5rem;
  background: linear-gradient(135deg,#e2f5f2,#fae8fb);
  border-right: 1px solid rgba(27, 2, 168, 0.08);
  height: 100%;
}

.insight-content {
  flex: 1;
  padding: 25px 30px;
}

.insight-content h3 {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #004D99; /* Cool Deep Blue */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin: 0 0 12px;
  position: relative;
}

.insight-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

/* Visual Accent Elements */
.accent-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(27, 2, 168, 0.05);
  z-index: -1;
}

.accent-circle-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
}

.accent-circle-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
  background: rgba(37, 143, 248, 0.05);
}

/* Responsive Adjustments */
/* Media query for max-width: 1100px */
@media (max-width: 1100px) {
  .insights-grid {
    gap: 30px;
  }
  
  .insight-icon {
    flex: 0 0 80px;
    font-size: 2.2rem;
  }
  
  .insight-content {
    padding: 20px 25px;
  }

  /* Added font sizes */
  .insights-header h2 {
    font-size: 2.3rem;
  }
  .insights-header p {
    font-size: 1.2rem;
  }
  .insight-content h3 {
    font-size: 1.7rem;
  }
  .insight-content p {
    font-size: 1.1rem;
  }
}

/* Media query for 590px to 900px */
@media (min-width: 590px) and (max-width: 900px) {
  .insights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .insight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .insight-icon {
    width: 100%;
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(27, 2, 168, 0.08);
  }
  
  .insight-content {
    padding: 20px;
  }

  /* Added font sizes */
  .insights-header h2 {
    font-size: 2.1rem;
  }
  .insights-header p {
    font-size: 1.1rem;
  }
  .insight-content h3 {
    font-size: 1.6rem;
  }
  .insight-content p {
    font-size: 1rem;
  }
}

/* Media query for below 590px */
@media (max-width: 590px) {
  .insights-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .insight-item {
    flex-direction: column;
    text-align: center;
  }
  
  .insight-icon {
    width: 100%;
    padding: 20px 0;
    border-right: none;
    border-bottom: 1px solid rgba(27, 2, 168, 0.08);
  }
  
  .insight-content {
    padding: 20px;
  }

  /* Added font sizes */
  .insights-header h2 {
    font-size: 1.8rem;
  }
  .insights-header p {
    font-size: 1rem;
  }
  .insight-content h3 {
    font-size: 1.5rem;
  }
  .insight-content p {
    font-size: 0.9rem;
  }
}

/* ------------ Call To Action Section ------------- */
.call-to-action {
    padding: 60px 0;
    background: linear-gradient(45deg, #bf08ed, #18b9f4);
    margin: 0; /* Ensure no extra margin on the section itself */
  }
  
  .call-to-action .container {
    max-width: calc(100% - 350px); /* Maintain 175px gap on both sides */
    margin: 0 auto;               /* Center horizontally */
    text-align: center;
    box-sizing: border-box;       /* Ensure padding is included in width calculations */
    padding: 0;                   /* Remove internal padding */
  }
  
  /* Keep your heading and paragraph styles as-is */
  .call-to-action h3 {
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    margin: 0; /* Ensure no unexpected margins */
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .call-to-action h3::before {
    border-color: #ffffff;
  }
  
  .call-to-action p {
    color: #ffffff;
    margin: 0; /* Ensure no unexpected margins */
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
  }
  
  /* CTA Button Styles */
  .call-to-action .cta-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 8px 28px;
    color: #258ff8;
    font-weight: 500;
    font-size: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #ffffff;
    transition: 0.3s;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
  }
  
  
  .call-to-action .cta-btn:hover {
    color: #ffffff;
    background: #353535;
  }
  
/* Responsive Adjustments */
/* Media Queries for Devices Less Than 1000px */
@media (max-width: 1000px) {
  .call-to-action {
      padding: 40px 20px; /* Original - Reduce padding for smaller screens */
  }

  .call-to-action .container {
      max-width: calc(100% - 40px); /* Original - Adjust the container width for better fit */
      margin: 0 auto;
      text-align: center;
  }

  .call-to-action h3 {
      font-size: 2rem; /* Adjusted based on 480px */
      font-weight: 700; /* Adjusted based on 480px */
  }

  .call-to-action p {
      font-size: 1.1rem; /* Adjusted based on 480px */
      font-weight: 500; /* Unchanged */
  }

  .call-to-action .cta-btn {
      font-size: 16px; /* Adjusted based on 480px */
      padding: 8px 24px; /* Original - Adjust padding for better appearance */
  }
}

/* Media Queries for Devices Less Than 768px */
@media (max-width: 768px) {
  .call-to-action {
      padding: 30px 15px; /* Original - Further reduce padding for smaller screens */
  }

  .call-to-action .container {
      max-width: calc(100% - 30px); /* Original - Adjust container width */
  }

  .call-to-action h3 {
      font-size: 1.8rem; /* Adjusted based on 480px */
      font-weight: 700; /* Adjusted based on 480px */
  }

  .call-to-action p {
      font-size: 1rem; /* Adjusted based on 480px */
      font-weight: 500; /* Unchanged */
  }

  .call-to-action .cta-btn {
      font-size: 15px; /* Adjusted based on 480px */
      padding: 7px 20px; /* Original - Adjust padding */
  }
}

/* Media Queries for Devices Less Than 480px */
@media (max-width: 480px) {
    .call-to-action {
        padding: 20px 10px; /* Original - Minimal padding for very small screens */
    }

    .call-to-action .container {
        max-width: calc(100% - 20px); /* Original - Ensure content fits well */
    }

    .call-to-action h3 {
        font-size: 1.6rem; /* Adjusted */
        font-weight: 700; /* Adjusted */
    }

    .call-to-action p {
        font-size: 0.9rem; /* Adjusted */
        font-weight: 500; /* Adjusted */
    }

    .call-to-action .cta-btn {
        font-size: 14px; /* Adjusted */
        padding: 8px 18px; /* Original - Compact padding */
        margin-top: 16px;
    }
}

  /* ---------------- Modal & Multi-Step Form CSS (Scoped) ---------------- */
  .modal-overlay {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    padding: 20px 30px;
    position: relative;
    transform: translateY(-30px);
    transition: transform 0.3s ease;
  }
  .modal-overlay.active .modal-content {
    transform: translateY(0);
  }
  .close-modal {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .close-modal:hover {
    color: #333;
  }
  .form-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .form-step {
    display: none;
  }
  .form-step.active {
    display: block;
  }
  .form-group {
    margin-bottom: 15px;
  }
  .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
  }
  .form-group input[type="email"],
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group input[type="date"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
  }
  .form-group textarea {
    resize: vertical;
  }
  .time-slots {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 150px;
    overflow-y: auto;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
  }
  .time-slot-option {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-nav {
    margin: 10px 5px 0 0;
    padding: 12px 24px;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  .btn-back {
    background: #ccc;
    color: #333;
  }
  .btn-back:hover {
    background: #bbb;
  }
  .btn-next {
    background: #0066cc;
    color: #fff;
  }
  .btn-next:hover {
    background: #005bb5;
  }
  .btn-submit {
    background: #ff8200;
    color: #fff;
  }
  .btn-submit:hover {
    background: #e67300;
  }
  .button-container {
    display: flex;
    justify-content: flex-end;
  }
 
  /* Media Queries for Devices Less Than 480px */
@media (max-width: 480px) {
  /* General Modal Adjustments */
  .modal-content {
      padding: 15px; /* Reduce padding for smaller screens */
      max-width: calc(100% - 20px); /* Ensure modal fits well */
  }

  /* Form Title */
  .form-title {
      font-size: 1.2rem; /* Slightly reduce the title size */
  }

  /* Input Fields and Labels */
  .form-group {
      margin-bottom: 10px; /* Reduce spacing between fields */
  }

  .form-group label {
      font-size: 0.9rem; /* Reduce label font size */
  }

  .form-group input[type="email"],
  .form-group input[type="text"],
  .form-group input[type="tel"],
  .form-group textarea,
  .form-group select {
      font-size: 0.9rem; /* Reduce input font size */
      padding: 8px; /* Compact padding */
      width: 100%; /* Ensure inputs take full width */
  }

  /* First Step (Email Input) */
  .form-step:first-child .form-group input[type="email"] {
      height: 40px; /* Compact height for email input */
  }

  /* Second Step (User Details) */
  .form-group textarea {
      height: 80px; /* Limit height for better usability */
  }

  /* Character Counter */
  #remainingChars {
      font-size: 0.8rem; /* Reduce character counter font size */
      margin-top: 4px; /* Add slight spacing */
  }

  /* Buttons */
  .btn-nav {
      font-size: 0.9rem; /* Reduce button font size */
      padding: 8px 16px; /* Compact padding */
  }

  /* Button Container */
  .button-container {
      flex-direction: column; /* Stack buttons vertically */
      gap: 8px; /* Add spacing between buttons */
  }
}


/* ----- Phase ------- */
/* Ensure styles only apply to the PHASES section */
.phase-section {
    font-family: Arial, sans-serif;
    padding-top: 4rem;
    padding-bottom: 3rem;
    background-image: url('../img/background.jpg'); /* Path to your background image */
    background-size: cover; /* Ensure the image covers the full screen */
    background-repeat: no-repeat; /* Prevent tiling */
    background-position: center center; /* Center the image */
    background-attachment: fixed; /* Keep the background fixed on scroll */
}

/* Ensures proper spacing between rows */
.phase-row {
    margin-bottom: 4rem;
}

/* Ensures images are styled consistently */
.phase-img {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* Main phase headings (Phase 1, Phase 2, Phase 3) */
.phase-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1b02a8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Subheadings (e.g., "Project Planning & Requirement Analysis") */
.phase-subheading {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #004D99; /* Cool Deep Blue */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-top: 1rem;
}

/* Paragraph text */
.phase-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Ensures bullet points are directly below content with proper spacing */
.phase-list {
    list-style: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    margin-top: 0;
    padding-left: 0;
}

/* Original Media Query for Screens Below 991px */
@media (max-width: 991px) {
  .phase-img {
      margin-bottom: 1rem; /* Original */
  }
  .phase-heading {
      font-size: 2.3rem; /* Adjusted based on 479px */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 1.7rem; /* Adjusted based on 479px */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1.1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1.1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-section {
      padding-top: 3.5rem; /* Scaled from 2.5rem in 479px */
      padding-bottom: 1.5rem; /* Scaled from 0.5rem in 479px */
  }
}

/* Original Media Query for Large Screens (Above 1200px) */
@media (min-width: 1200px) {
  .phase-section .container {
      max-width: calc(100% - 350px); /* Original - 175px gap on left and right */
      margin: 0 auto; /* Original */
  }
  .phase-heading {
      font-size: 2.8rem; /* Adjusted based on 479px */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 2rem; /* Adjusted based on 479px */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1.3rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1.3rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  
}

/* Media Query for Screens Between 992px and 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
  .phase-heading {
      font-size: 2.5rem; /* Adjusted based on 479px */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 1.8rem; /* Adjusted based on 479px */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1.2rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1.2rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-section {
      padding-top: 4.5rem; /* Scaled from 2.5rem in 479px */
      padding-bottom: 2rem; /* Scaled from 0.5rem in 479px */
  }
}

/* Media Query for Screens Between 768px and 991px */
@media (max-width: 991px) and (min-width: 768px) {
  .phase-img {
      margin-bottom: 1rem; /* Original */
  }
  .phase-heading {
      font-size: 2.3rem; /* Adjusted based on 479px */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 1.7rem; /* Adjusted based on 479px */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1.1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1.1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-section {
      padding-top: 3.5rem; /* Scaled from 2.5rem in 479px */
      padding-bottom: 1.5rem; /* Scaled from 0.5rem in 479px */
  }
}

/* Media Query for Screens Between 480px and 767px */
@media (max-width: 767px) and (min-width: 480px) {
  .phase-heading {
      font-size: 2rem; /* Adjusted based on 479px */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 1.6rem; /* Adjusted based on 479px */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1rem; /* Adjusted based on 479px */
      font-weight: 500; /* Unchanged */
  }
  .phase-section {
      padding-top: 3rem; /* Scaled from 2.5rem in 479px */
      padding-bottom: 1rem; /* Scaled from 0.5rem in 479px */
  }
}

/* Media Query for Screens Below 480px */
@media (max-width: 479px) {
  .phase-heading {
      font-size: 1.8rem; /* Original */
      font-weight: 700; /* Unchanged */
  }
  .phase-subheading {
      font-size: 1.5rem; /* Original */
      font-weight: 600; /* Unchanged */
  }
  .phase-text {
      font-size: 1rem; /* Original */
      font-weight: 500; /* Unchanged */
  }
  .phase-list {
      font-size: 1rem; /* Original */
      font-weight: 500; /* Unchanged */
  }
  .phase-section {
      padding-top: 2.5rem; /* Original */
      padding-bottom: 0.5rem; /* Original */
  }
}

/* ---------------- Our Skills Style --------------- */
.skills {
  position: relative;
  padding: 30px 0 60px;
  
}

.skills .container {
  max-width: 95%; /* Expands the content area */
  padding-left: 15px; /* Reduces left padding */
  padding-right: 15px; /* Reduces right padding */
}

.skills .section-header h3 {
  font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
  
}

.skills .section-header p {
  font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
  text-align: center;
}

.skills .row {
  margin-left: 0;
  margin-right: 0;
}

.skills .counters h2 {
  margin: 30px 0 0 0;
  font-size: 60px;
  display: block;
  color: #258ff8;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.skills .counters p {
  padding: 0;
  margin: 0;
  color: #353535;
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

.skills .counters .col-lg-3 {
  padding: 10px; /* Reduces space between counters */
}

/* Responsive Adjustments for Screens Below 768px */
@media (max-width: 768px) {
  .skills .container {
      width: 100%; /* Original - Expands content fully on smaller screens */
      padding-left: 10px; /* Original */
      padding-right: 10px; /* Original */
  }
  .skills .section-header h3 {
      font-size: 2rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .skills .section-header p {
      font-size: 1.2rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .skills .counters h2 {
      font-size: 50px; /* Original - Slightly smaller on smaller screens */
  }
  .skills .counters p {
      font-size: 1rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
}

/* Responsive Adjustments for Screens Between 480px and 767px */
@media (max-width: 767px) and (min-width: 480px) {
  .skills .section-header h3 {
      font-size: 2.2rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .skills .section-header p {
      font-size: 1.2rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .skills .counters h2 {
      font-size: 55px; /* Adjusted */
  }
  .skills .counters p {
      font-size: 1.1rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
}

/* Responsive Adjustments for Screens Below 480px */
@media (max-width: 479px) {
  .skills .section-header h3 {
      font-size: 1.8rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .skills .section-header p {
      font-size: 1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .skills .counters h2 {
      font-size: 45px; /* Adjusted */
  }
  .skills .counters p {
      font-size: 0.9rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
}

/* Responsive Adjustments for Screens Between 992px and 1199px */
@media (max-width: 1199px) and (min-width: 992px) {
  .skills .section-header h3 {
      font-size: 2.4rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .skills .section-header p {
      font-size: 1.4rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .skills .counters h2 {
      font-size: 55px; /* Adjusted */
  }
  .skills .counters p {
      font-size: 1.1rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
}

/* ----------------- Portfolio Style --------------- */
.portfolio {
  position: relative;
  padding: 40px 0 45px 0;
  background-image: url('../img/background.jpg'); /* Path to your background image */
  background-size: cover; /* Ensure the image covers the full screen */
  background-repeat: no-repeat; /* Prevent tiling */
  background-position: center center; /* Center the image */
  background-attachment: fixed; /* Keep the background fixed on scroll */
}

.portfolio .section-header h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1b02a8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
  
}

.portfolio .section-header p {
  
  font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
  text-align: center;
}

/* Base Styles */
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: #276a70;
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: flex-end; /* Default alignment for large screens */
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:nth-child(odd) {
  justify-content: flex-start; /* Alternate alignment for odd items */
}
.timeline-item::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: #007BFF;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.timeline-content {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 12px #026269;
  transition: all 0.3s ease;
  max-width: 45%;
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 12px #480146;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50px; /* Spacing for odd items */
}
.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50px; /* Spacing for even items */
}
.timeline-date {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
  display: block;
  margin-bottom: 10px;
}
.timeline-content h3 {
  font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    color: #004D99; /* Cool Deep Blue */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 10px;
}
.timeline-content p {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #000000;
  line-height: 1.5;
  margin-bottom: 15px;
}
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.read-more:hover {
  color: #0056b3;
}
.read-more .icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}
.read-more.expanded .icon {
  transform: rotate(45deg);
}
.read-more.expanded .text {
  content: 'Read Less';
}
.full-description {
  margin-top: 10px;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

/* Media Queries for Consistent Alignment Below 1280px */
@media (max-width: 1024px) {
  .timeline::before {
    left: 20px; /* Move the timeline line to the left */
  }
  .timeline-item {
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align all items to the left */
  }
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    justify-content: flex-start; /* Reset alternate alignment */
  }
  .timeline-content {
    max-width: 100%; /* Full width for smaller screens */
    margin-left: 0;
    margin-right: 0;
    margin-top: 20px; /* Add spacing between the marker and content */
  }
  .timeline-item::after {
    left: 20px; /* Match the position of the timeline line */
    transform: translateY(-50%); /* Align marker vertically with the line */
  }
  .timeline-item .new
  {
    
    margin-left: 25px;
    
  }
}

/* Responsive Adjustments for Screens Below 768px */
@media (max-width: 768px) {
  .timeline::before {
      left: 15px; /* Original - Further adjust the timeline line */
  }
  .timeline-item {
      padding-left: 30px; /* Original - Add padding for better spacing */
  }
  .timeline-item::after {
      left: 15px; /* Original - Match the position of the timeline line */
      transform: translateY(-50%); /* Original - Align marker vertically with the line */
  }
  .timeline-content {
      padding: 15px; /* Original - Reduce padding for smaller screens */
  }
  .portfolio .section-header h3 {
      font-size: 2rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .portfolio .section-header p {
      font-size: 1.2rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .timeline-date {
      font-size: 1.1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .timeline-content h3 {
      font-size: 1.4rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
  .timeline-content p {
      font-size: 1.1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .read-more {
      font-size: 1.1rem; /* Adjusted */
      font-weight: bold; /* Unchanged */
  }
  .full-description {
      font-size: 1.1rem; /* Adjusted */
  }
}

/* Responsive Adjustments for Screens Below 480px */
@media (max-width: 480px) {
  .timeline::before {
      left: 10px; /* Original - Timeline line closer to the edge */
  }
  .timeline-item {
      padding-left: 20px; /* Original - Reduce padding further */
  }
  .timeline-item::after {
      left: 10px; /* Original - Match the position of the timeline line */
      transform: translateY(-50%); /* Original - Align marker vertically with the line */
  }
  .timeline-content {
      padding: 10px; /* Original - Minimal padding for tight spaces */
  }
  .portfolio .section-header h3 {
      font-size: 1.8rem; /* Adjusted */
      font-weight: 700; /* Unchanged */
  }
  .portfolio .section-header p {
      font-size: 1.1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .timeline-date {
      font-size: 1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .timeline-content h3 {
      font-size: 1.2rem; /* Adjusted */
      font-weight: 600; /* Unchanged */
  }
  .timeline-content p {
      font-size: 1rem; /* Adjusted */
      font-weight: 500; /* Unchanged */
  }
  .read-more {
      font-size: 1rem; /* Adjusted */
      font-weight: bold; /* Unchanged */
  }
  .full-description {
      font-size: 1rem; /* Adjusted */
  }
}
/* --------------- Testimonials Style -------------- */
.testimonials {
    position: relative;
    padding: 30px 0 60px;
  }

  .testimonials .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .testimonials .section-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
    
  }

  .testimonials .section-header p {
    padding-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
  }

 :root {
  --slide-width: 180px;    
  --slide-height: 180px;   
  --slide-gap: 80px;       
  --slides-count: 12;      
}

.clients-slider {
  width: 100%;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-wrapper {
  display: flex;
  gap: var(--slide-gap);
  animation: scroll 30s linear infinite;
}

.swiper-slide {
  flex: 0 0 var(--slide-width);
  height: var(--slide-height);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Hardcoded animation value for testing */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-1550px); }
}


/* Responsive Adjustments for Screens Below 768px */
@media (max-width: 768px) {
  .testimonials .section-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  .testimonials .section-header p {
    padding-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    text-align: center;
  }

  :root {
    --slide-width: 170px;
    --slide-height: 170px;
    --slide-gap: 60px;
  }

}

/* Responsive Adjustments for Screens Below 480px */
@media (max-width: 480px) {
  .testimonials .section-header h3 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  .testimonials .section-header p {
    padding-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    text-align: center;
  }

  :root {
    --slide-width: 160px;
    --slide-height: 160px;
    --slide-gap: 40px;
  }
  
}
/*----- Image Section ------*/
.middle-video {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.middle-video .middle-video-wrap {
  width: 100%;
  height: 100%;
}

.middle-video .middle-video-item {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Image Styling */
.middle-video .middle-video-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the section */
  position: absolute;
  top: 0;
  left: 0;
}

/* Subtle Blur Overlay */
.middle-video .middle-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Dark overlay effect */
  backdrop-filter: blur(2px); /* Minimal blur */
}

/* Centered Content */
.middle-video .middle-video-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 60%;
}

/* Transparent Box */
.middle-video .middle-video-box {
  background: rgba(0, 0, 0, 0.4); /* Dark transparent box */
  padding: 40px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
}

/* Tagline Styling */
.middle-video .middle-video-tagline {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  opacity: 0.9;
}

/* Explore Careers Button */
.middle-video .middle-video-text {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  padding: 10px 30px 12px;
  background: rgba(8, 0, 255, 0.2); /* Light transparent button */
  border-radius: 8px;
  text-decoration: none;
  color: #ffffff;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hover Effect */
.middle-video .middle-video-text:hover {
  background: rgba(255, 255, 255, 0.4);
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .middle-video .middle-video-content {
      width: 70%;
  }
  .middle-video .middle-video-tagline {
      font-size: 1.3rem;
  }
  .middle-video .middle-video-text {
      font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .middle-video .middle-video-content {
      width: 80%;
  }
  .middle-video .middle-video-tagline {
      font-size: 1.2rem;
  }
  .middle-video .middle-video-text {
      font-size: 1.4rem;
      padding: 10px 25px;
  }
  .middle-video {
      height: 80vh; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {
  .middle-video .middle-video-content {
      width: 70%;
  }
  .middle-video .middle-video-tagline {
      font-size: 1rem;
     
  }
  .middle-video .middle-video-text {
      font-size: 1.2rem;
      padding: 8px 14px;
  }
  .middle-video {
      height: 60vh; /* Reduce height for small devices */
  }
  .middle-video .middle-video-box {
    background: rgba(0, 0, 0, 0.4); /* Dark transparent box */
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
  }
}


/* ------------------ Clients Style ---------------- */
.dealers {
    padding: 30px 0 60px;
}

.dealers .section-header h3
{
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: #1b02a8;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-align: center;
   
}
.dealers .section-header p {
    padding-bottom: 35px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
    text-align: center;
    
}



/* Responsive Adjustments for Screens Below 768px */
@media (max-width: 768px) {
  .dealers .section-header h3 {
      font-family: 'Manrope', sans-serif; /* Original */
      font-weight: 700; /* Unchanged */
      font-size: 2rem; /* Adjusted */
      color: #1b02a8; /* Original */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Original */
      text-align: center; /* Original */
  }
  .dealers .section-header p {
      padding-bottom: 35px; /* Original */
      font-family: 'Inter', sans-serif; /* Original */
      font-weight: 500; /* Unchanged */
      font-size: 1.2rem; /* Adjusted */
      text-align: center; /* Original */
  }
}

/* Responsive Adjustments for Screens Below 480px */
@media (max-width: 480px) {
  .dealers .section-header h3 {
      font-family: 'Manrope', sans-serif; /* Original */
      font-weight: 700; /* Unchanged */
      font-size: 1.8rem; /* Adjusted */
      color: #1b02a8; /* Original */
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Original */
      text-align: center; /* Original */
  }
  .dealers .section-header p {
      padding-bottom: 35px; /* Original */
      font-family: 'Inter', sans-serif; /* Original */
      font-weight: 500; /* Unchanged */
      font-size: 1.1rem; /* Adjusted */
      text-align: center; /* Original */
  }
}

/* ----------------- Contact Style ----------------- */
.contact {
  position: relative;
  padding: 60px 0;
  background-image: url('../img/background.jpg'); /* Path to your background image */
  background-size: cover; /* Ensure the image covers the full screen */
  background-repeat: no-repeat; /* Prevent tiling */
  background-position: center center; /* Center the image */
  background-attachment: fixed; /* Keep the background fixed on scroll */
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.contact .container {
    max-width: 900px;
    
}

.contact .contact-info {
    margin-bottom: 30px;
    text-align: center;
}
.contact-info {
    display: flex;
    align-items: stretch; /* Ensures equal height for all columns */
    
}

.contact-info > div {
    display: flex;
    flex-direction: column;
    
   
}

.contact-info > div > div {
    flex-grow: 1; /* Makes all boxes equal height */
    border-radius: 20px;
   
   
}

.contact .contact-address,
.contact .contact-phone,
.contact .contact-email {
    background: white;
    padding: 15px 30px 25px 30px;
    text-align: center;
    color: #353535;
    box-shadow: 0 0 10px #026269;
}

.contact .contact-address:hover,
.contact .contact-phone:hover,
.contact .contact-email:hover {
  box-shadow: 0 0 10px #480146;
}

.contact .contact-info i {
    font-size: 48px;
    display: inline-block;
    color: #0d05fb;
}

.contact .contact-info address,
.contact .contact-info p {
    margin-bottom: 0;
    font-size: 16px;
    color: #1e1d1d;
}

.contact .contact-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #0c1165;
}

.contact .contact-info a {
    color: #353535;
}

.contact .contact-info a:hover {
    color: #258ff8;
}

.contact .map {
    position: relative;
    background: #ffffff;
    box-shadow: 0 0 15px #026269;
}

.contact .map:hover {
  box-shadow: 0 0 10px #480146;
}

.contact .map iframe {
    width: 100%;
    height: 425px;
    margin-bottom: -7px;
}

.contact .form {
    background: #ffffff;
    padding: 30px;
    color: #353535;
    border-radius: 20px;
    box-shadow: 0 0 10px #026269;
}

.contact .form:hover {
  box-shadow: 0 0 10px #480146;
}

.contact .form input,
.contact .form textarea {
    padding: 10px 14px;
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    background: linear-gradient(135deg,#e9f3fa,#fff1f8);
}

.contact .form input:focus,
.contact .form textarea:focus {
    border-color: #4b99e7;
}

.contact .form button[type="submit"] {
    background: #1468f8; 
    border: 0;
    padding: 10px 30px;
    color: #ffffff;
    transition: 0.4s;
    cursor: pointer;
    font-family: 'Quicksand', sans-serif;
    font-size: 1.2rem;
	 font-weight: bold;
}

.contact .form button[type="submit"]:hover {
    background: #353535;
	font-weight: bold;
}

.contact .form h2 {
    margin-bottom: 1rem;     /* Spacing below the heading */
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #1b02a8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);     /* Boldness */
    /* Any other styles you need */
  }
  /* Default layout (Desktop) - No change needed */

/* Responsive adjustments for Tablets (768px and below) */
@media (max-width: 768px) {
    .contact .container {
        max-width: 95%;
        padding: 0 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 20px; /* Adds spacing between the stacked boxes */
    }

    .contact-info > div {
        width: 100%;
        margin-bottom: 15px;
    }

    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 0 15px #026269;
    }

    .contact .map,
    .contact .form {
        width: 100%;
        margin-bottom: 20px;
    }

    .contact .map iframe {
        height: 300px;
    }

    .contact .form {
        padding: 20px;
        border-radius: 15px;
    }

    .contact .form h2 {
        font-size: 1.5rem;
        text-align: center;
    }
}

/* Responsive adjustments for Mobile Phones (480px and below) */
@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
        padding-top: 50px;
    }

    .contact-info > div {
        margin-bottom: 10px;
    }

    .contact .contact-address,
    .contact .contact-phone,
    .contact .contact-email {
        padding: 15px;
        border-radius: 10px;
        box-shadow: 0 0 15px #026269;
    }

    .contact .map iframe {
        height: 250px;
    }

    .contact .form {
        padding: 15px;
        border-radius: 10px;
    }

    .contact .form h2 {
        font-size: 1.3rem;
    }

    .contact .form input,
    .contact .form textarea {
        font-size: 14px;
        padding: 8px 12px;
    }

    .contact .form button[type="submit"] {
        padding: 8px 25px;
        font-size: 14px;
    }
}
