/* ================= DEFAULT ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

:root {
  --primary-color: #264A8B;
  --secondary-color: #B0C8F7;
  --white-color: #fff;
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
  --hover-color: #0856e7;
  --whitesmoke-color: whitesmoke;
  --black-color: #000;
  --heading-font: clamp(2rem, 2.5vw, 3rem);
  --lead-font: clamp(1rem, 1.2vw, 2rem);
  --lead-color: #555;
}

/* Smooth scrolling for all anchor links */
html {
  scroll-behavior: smooth;
}

/* =================================================================================
                                      NAVBAR 
 ==================================================================================== */

/* ================================= Top Bar  ============================= */

.top-bar {
  background-color: var(--whitesmoke-color);
  font-size: 14px;
  transition: top 0.3s ease-in-out;
  height: 5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1000;
  color: var(--primary-color);
}

#topBar i {
  color: var(--primary-color);
  font-size: clamp(1rem, 1.3vw, 1.5rem);
}

.top-bar .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 15px;
  font-size: 1.07rem;
  font-size: clamp(1rem, 1.1vw, 1.4rem);
}

#top-email-info {
  margin-left: 4rem;
}

.top-bar.hide {
  top: -50px;
}

@media (min-width:1200px) {
  #top-email-info {
    margin-left: 10rem;
  }
}

@media (max-width:768px) {
  #top-email-info {
    margin-left: 5rem;
  }
}

/* ========================== TOP NAVBAR ENDS ================================ */

header {
  background-color: var(--primary-color);
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-navbar .navbar-nav .nav-link {
  color: var(--white-color);
}

.main-navbar .navbar-brand {
  color: var(--white-color);
  font-weight: bold;
}

.main-navbar .nav-link:hover {
  color: #ffc107;
}

.navbar-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* For smooth transition of top bar */
.top-bar {
  position: relative;
  z-index: 1000;
}

#brand-name {
  margin: 0 0.5rem;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.4vw, 1.7rem);
}

.nav-link {
  padding: 5px 25px;
  border-radius: 20px;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background-color: var(--whitesmoke-color);
  font-weight: 600;
}

.nav-link.active {
  color: var(--primary-color) !important;
  background-color: var(--whitesmoke-color);
  font-weight: 600;
}

.dropdown-item.active {
  background-color: var(--secondary-color) !important;
  color: var(--primary-color) !important;
  font-weight: 600;
}

/* .custom-header {
  background-color: var(--primary-color) !important;
  box-shadow: var(--shadow-soft);
  height: 13vh;
} */

#rate-us {
  border-radius: 5px;
  border: 2px solid var(--secondary-color);
  padding: 5px 10px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

#rate-us:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.navbar-brand,
.nav-link {
  color: var(--white-color) !important;
  font-weight: 500;
  font-size: clamp(0.9rem, 1vw, 1.4rem);
}

.dropdown-menu {
  background-color: var(--whitesmoke-color);
}

.dropdown-item {
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--secondary-color);
}

/* ----------- for colotext dropdown(copy paste) ------------------- */
@media (max-width: 992px) {

  .nav-link {
    color: var(--white-color) !important;
    background-color: transparent;
  }

  #navbarNavDropdown {
    position: static;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding-bottom: 1rem;
  }
}

@media (max-width:576px) {
  body {
    overflow-x: hidden;
  }

  .custom-header {
    height: 10vh;
  }

  #brand-name {
    margin: 0 0.1rem;
    font-weight: 400;
  }

  .navbar-brand img {
    width: 40px;
    height: 40px;
  }
}

/* ==================================================================================
                                    HERO SECTION
========================================================================================== */

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: auto;
  padding: 50px 100px 0 100px;
  align-items: center;
  min-height: 70vh;
}

.hero-section .heroText {
  padding: 40px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.heroText h1 {
  font-weight: 600;
  font-size: var(--heading-font);
  margin-bottom: 20px;
  line-height: 1.2;
}

.heroText span {
  color: var(--primary-color);
}

.heroText p {
  text-align: start;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Hero Section Button ====== */
.heroText button {
  padding: 15px 15px;
  background-color: var(--primary-color);
  font-size: 1rem;
  margin-top: 30px;
  color: var(--white-color);
  border-radius: 10px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.heroText button:hover {
  color: var(--white-color);
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

#browseBtn {
  font-weight: 600;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  margin-left: 7px;
}

#browseBtn:hover {
  color: var(--white-color);
  background-color: var(--primary-color);
}

/* ===== Video ====== */
.hero-video {
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  width: 50%;
  height: auto;
  object-fit: contain;
}

.videoContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.videoContainer lottie-player {
  width: 100%;
  height: 450px;
}

/* --------------- ENHANCED RESPONSIVE HERO SECTION --------------- */

/* Large Tablets (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr 1fr;
    padding: 40px 30px 80px 30px;
    gap: 2rem;
  }

  .col-md-4 {
    width: 100%;
  }

  footer input {
    height: 5.5vh;
  }

  .hero-section .heroText {
    padding: 20px 10px;
  }

  .heroText h1 {
    margin-bottom: 15px;
  }

  .heroText p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .heroText button {
    padding: 12px 20px;
    font-size: 0.95rem;
    margin-top: 25px;
    margin-right: 0.5rem;
  }

  .videoContainer lottie-player {
    height: 350px;
  }
}

/* Small Tablets (577px - 768px) */
@media (min-width: 577px) and (max-width: 768px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 20px 25px;
    gap: 2rem;
  }

  .hero-section .videoContainer {
    order: 1;
    margin-bottom: 1rem;
  }

  .hero-section .heroText {
    order: 2;
    padding: 20px 15px;
  }

  .heroText h1 {
    text-align: start;
    margin-bottom: 15px;
  }

  .heroText p {
    font-size: 1.05rem;
    text-align: start;
    line-height: 1.5;
  }

  .heroText button {
    padding: 12px 18px;
    font-size: 0.9rem;
    margin: 10px 0.5rem;
    display: inline-block;
  }

  .videoContainer lottie-player {
    height: 300px;
  }
}

/* Mobile (320px - 576px) */
@media (max-width:576px) {
  .hero-section {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 0 15px 20px 15px;
    height: auto;
    min-height: auto;
  }

  .hero-section .videoContainer {
    order: 1;
    margin-bottom: 1rem;
    width: 100%;
    height: auto;
    margin-top: 1rem;
  }

  .hero-section .heroText {
    padding: 20px 25px;
    order: 2;
    margin-bottom: 2rem;
  }

  #hero-break {
    display: block;
  }

  .heroText h1 {
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0rem;
    text-align: start;
  }

  .heroText span {
    color: var(--primary-color);
  }

  .heroText p {
    text-align: start;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .heroText button {
    padding: 12px 16px;
    font-size: 0.85rem;
    margin: 8px 0.3rem;
    border-radius: 8px;
    display: inline-block;
  }

  #browseBtn {
    margin-left: 0px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
  }

  .swiper-slide {
    width: 100%;
    height: auto;
  }

  #hero-slide-wrapper {
    width: 100%;
    height: 250px;
    margin: 0;
    align-self: center;
  }

  .videoContainer {
    width: 100%;
    height: 250px;
    margin: 0;
    align-self: center;
  }

  .videoContainer lottie-player {
    align-self: center;
    width: 100%;
    height: 250px;
  }

  .social-sticky a {
    display: none;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .hero-section {
    padding: 0 10px 15px 10px;
  }

  .heroText p {
    font-size: 0.9rem;
  }

  .heroText button {
    padding: 10px 14px;
    font-size: 0.8rem;
    margin: 6px 0.2rem;
  }
}

/* ============================= STICKY SOCIAL ICONS ====================================== */

.social-sticky {
  position: fixed;
  top: 50%;
  left: 0;
  width: min-content;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 998;
}

.social-sticky a {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 10px 12px;
  text-align: center;
  border-radius: 0 5px 5px 0;
  transition: all 0.3s ease;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  box-shadow: 3px 3px 5px #c2c2c2;
  text-decoration: none;
}

.social-sticky #sticky-whatsapp:hover {
  background-color: #25D366;
  color: var(--white-color);
}

.social-sticky #sticky-email:hover {
  background-color: #D93025;
  color: var(--white-color);
}

.social-sticky #sticky-phone:hover {
  background-color: var(--hover-color);
  color: var(--white-color);
}

/* Enhanced Social Sticky Responsive */
@media (max-width: 768px) {
  .social-sticky {
    gap: 8px;
  }

  .social-sticky a {
    padding: 8px 10px;
    font-size: 1.2rem;
  }
}

/* ============================================================================
                                     WHAT WE OFFER 
============================================================================== */

/* =============== Section 1 ======================= */

.section1 {
  background-color: var(--whitesmoke-color);
  width: 100%;
  height: auto;
  min-height: 130vh;
  padding: 0 5rem;
}

.section1 h1 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 600;
  padding-top: 12vh;
  margin-bottom: 1rem;
  font-size: var(--heading-font);
}

.section1 .lead {
  text-align: center;
  font-size: var(--lead-font);
  color: var(--lead-color);
  font-weight: 400;
  margin-bottom: 6rem;
}

.lottie-container {
  width: 100%;
  aspect-ratio: 4/3;
  height: 450px;
}

.lottie-container lottie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lottie-container dotlottie-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 450px;
  justify-items: center;
  margin: 0 5rem;
  gap: 2rem;
}

.services-container .cta-button {
  color: var(--white-color);
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: var(--primary-color);
}

.option-box {
  padding: 0.5rem;
  width: 90%;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  background-color: var(--white-color);
}

.option-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

lottie-player {
  width: 100%;
  height: auto;
}

.option-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin: 0 auto;
}

.option-content .lottie-container {
  width: 75%;
  height: 50%;
  z-index: 1;
  margin-bottom: 1rem;
}

.option-content h2 {
  font-size: clamp(1.5rem, 1.7vw, 2rem);
  font-weight: 700;
  color: var(--primary-color) !important;
  text-shadow: var(--shadow-soft);
  margin-bottom: 0.8rem;
  text-align: center;
}

.option-content p {
  z-index: 2;
  font-size: clamp(1rem, 1.1vw, 2rem);
  color: var(--lead-color);
  font-weight: 400;
  text-align: center;
  padding: 0 1rem;
  line-height: 1.5;
}

.option-content .cta-button {
  border: none;
  color: var(--white-color);
  background-color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.option-content .cta-button:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
}

.option-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* ENHANCED RESPONSIVE WHAT WE OFFER SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .section1 {
    padding: 0 6rem;
    height: auto;
    min-height: 120vh;
  }

  .services-container {
    margin: 0 3rem;
    gap: 3rem;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .section1 {
    padding: 0 3rem 8rem 3rem;
    height: auto;
    min-height: 110vh;
  }

  .services-container {
    margin: 0 2rem;
    gap: 2rem;
  }

  .option-content h2 {
    font-size: 1.7rem;
  }

  .option-content p {
    font-size: 1.05rem;
  }
}

/* Large Tablets (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
  .section1 {
    background-color: var(--whitesmoke-color);
    width: 100%;
    height: auto;
    padding: 0 3rem 4rem 3rem;
    box-sizing: border-box;
  }

  .section1 h1 {
    padding-top: 8vh;
  }

  .section1 .lead {
    margin-bottom: 4rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 3rem;
    margin: 0 1rem;
    padding: 0;
  }

  .option-box {
    width: 100%;
    max-width: 700px;
    padding: 1.5rem;
  }

  .option-content .lottie-container {
    height: 200px;
  }

  .option-content h2 {
    font-size: 1.8rem;
  }

  .option-content p {
    font-size: 1.1rem;
    padding: 0 0.5rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .section1 {
    padding: 0 2rem 4rem 2rem;
    height: auto;
  }

  .section1 h1 {
    padding-top: 6vh;
  }

  .section1 .lead {
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .services-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 1.5rem;
    margin: 0 0.5rem;
    padding: 0;
  }

  .option-box {
    width: 95%;
    padding: 1rem;
  }

  .option-content {
    padding: 0.5rem;
  }

  .option-content .lottie-container {
    height: 150px;
  }

  .option-content h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .option-content p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
  }

  .option-content .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .section1 {
    background-color: var(--whitesmoke-color);
    width: 100%;
    height: auto;
    padding: 0 2rem 3rem 2rem;
    box-sizing: border-box;
  }

  .section1 h1 {
    padding-top: 6vh;
    margin-bottom: 1rem;
  }

  .section1 .lead {
    margin-bottom: 3rem;
    padding: 0 0.5rem;
  }

  .services-container {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    justify-items: center;
    gap: 2rem;
    padding: 0;
    margin: 0;
  }

  .option-box {
    padding: 1.2rem;
    width: 100%;
    max-width: 350px;
    margin-bottom: 1rem;
  }

  .option-content {
    padding: 0.5rem;
    margin: 0 auto;
  }

  .option-content .lottie-container {
    height: 180px;
    width: 80%;
  }

  .option-content h2 {
    margin-bottom: 0.8rem;
  }

  .option-content p {
    font-size: 0.95rem;
    padding: 0 0.5rem;
    margin-bottom: 1rem;
  }

  .option-content .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .section1 {
    padding: 0 0.8rem 2.5rem 0.8rem;
  }


  .option-box {
    padding: 1rem;
    width: 100%;
  }

  .option-content p {
    font-size: 0.9rem;
    padding: 0 0.3rem;
  }

  .option-content .cta-button {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
}

/* ============================================================================
                                      CORE VALUES 
============================================================================= */

.our-values-section {
  width: 100%;
  height: auto;
  background-color: var(--secondary-color);
}

.core-value-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px 20px;
}

.core-value-title {
  text-align: center;
  margin-bottom: 40px;
}

.core-value-title h2 {
  font-size: var(--heading-font);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.core-value-title p {
  font-size: var(--lead-font);
  font-weight: 400;
  color: var(--primary-color);
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

.value-box {
  background-color: var(--white-color);
  padding: 30px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-box i {
  font-size: 2.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.value-box h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.value-box p {
  font-size: 0.95rem;
  color: var(--lead-color);
}

.about-us-container {
  height: 100%;
  padding: 0 10rem 5rem 10rem;
}

/* ENHANCED RESPONSIVE CORE VALUES */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .core-value-container {
    max-width: 1300px;
    padding: 2rem 4rem;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }

  .value-box {
    padding: 20px 30px;
  }

  .value-box i {
    font-size: 2.8rem;
  }

  .value-box h3 {
    font-size: 1.4rem;
  }

  .about-us-container {
    padding: 0 2rem 3rem 2rem;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .core-value-container {
    padding: 40px 25px;
  }

  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 4rem;
  }

  .value-box {
    padding: 20px 10px;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .core-value-container {
    padding: 2rem 2rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .value-box {
    padding: 30px 20px;
  }

  .value-box i {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .value-box h3 {
    font-size: 1.25rem;
  }

  .about-us-container {
    padding: 0 5rem 4rem 5rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .core-value-container {
    padding: 3rem 3rem;
  }

  .core-value-title h2 {
    font-size: 2rem;
  }

  .core-value-title p {
    font-size: 1.1rem;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .value-box {
    padding: 25px 18px;
  }

  .value-box i {
    font-size: 2rem;
    margin-bottom: 10px;
  }

  .value-box h3 {
    font-size: 1.2rem;
  }

  .value-box p {
    font-size: 0.9rem;
  }

  .about-us-container {
    padding: 0 2rem 3rem 2rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .core-value-container {
    padding: 2rem 2rem;
  }

  .core-value-title h2 {
    font-size: 1.8rem;
  }

  .core-value-title p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .value-box {
    padding: 20px 15px;
  }

  .value-box i {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .value-box h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .value-box p {
    font-size: 0.85rem;
  }

  .about-us-container {
    padding: 0 1rem 2rem 1rem;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .value-box {
    padding: 18px 12px;
  }

  .value-box i {
    font-size: 1.6rem;
  }

  .value-box h3 {
    font-size: 1rem;
  }

  .value-box p {
    font-size: 0.8rem;
  }
}

/* ====================================================================
                                  About Us 
==================================================================== */

.section-title {
  font-size: var(--heading-font);
  font-weight: 700;
  color: var(--primary-color);
}

.highlight-text {
  color: var(--primary-color);
  font-weight: 500;
}

.about-electrocus .lead {
  font-size: var(--lead-font);
  font-weight: 400;
  color: var(--lead-color);
  margin-bottom: 2rem;
}

.about-card {
  font-family: 'Segoe UI', sans-serif;
  background: var(--white-color);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-8px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: var(--secondary-color);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.icon-circle i {
  color: var(--primary-color);
}

.about-card h4 {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.about-card p {
  color: var(--lead-color);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-card ul li {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  color: #333;
}

.about-card ul li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

.about-electrocus {
  background-color: var(--whitesmoke-color);
  padding: 2rem 0 5rem 0;
  height: auto;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 600;
  padding-top: 12vh;
  margin-bottom: 1rem;
  font-size: var(--heading-font);
}

.about-card {
  border: none;
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s;
  height: 100%;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 5px var(--secondary-color);
}

.icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-box i {
  color: var(--primary-color);
  font-size: 24px;
}

/* ENHANCED RESPONSIVE ABOUT US SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .about-us-container {
    padding: 0 8rem 6rem 8rem;
  }

  .section-title {
    padding-top: 10vh;
  }

  .about-card {
    padding: 2.5rem;
  }

  .about-card h4 {
    font-size: 1.6rem;
  }

  .about-card p {
    font-size: 1.05rem;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .about-us-container {
    padding: 0 2rem 5rem 2rem;
  }

  .section-title {
    padding-top: 8vh;
  }

  .about-card {
    padding: 1.2rem;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .about-us-container {
    padding: 0 3rem 4rem 3rem;
  }

  .section-title {
    padding-top: 6vh;
    font-size: 2.2rem;
  }

  .about-electrocus .lead {
    font-size: 1.2rem;
    padding: 0 2rem;
  }

  .about-card {
    padding: 1.8rem;
    margin-bottom: 2rem;
  }

  .about-card h4 {
    font-size: 1.4rem;
  }

  .about-card p {
    font-size: 0.95rem;
  }

  .icon-circle {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .about-us-container {
    padding: 0 2rem 3rem 2rem;
  }

  .section-title {
    padding-top: 5vh;
    font-size: 2rem;
  }

  .about-electrocus .lead {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  .about-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .about-card h4 {
    font-size: 1.3rem;
  }

  .about-card p {
    font-size: 0.9rem;
    text-align: left;
  }

  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about-card ul li {
    font-size: 0.9rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .about-us-container {
    padding: 0 2rem 2rem 2rem;
  }

  .about-electrocus {
    padding: 1.5rem 0 3rem 0;
  }

  .section-title {
    padding-top: 4vh;
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .about-electrocus .lead {
    font-size: 1rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
  }

  .about-card {
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border-radius: 16px;
  }

  .about-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
  }

  .about-card p {
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.5;
  }

  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }

  .about-card ul {
    margin-top: 1rem;
  }

  .about-card ul li {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }

  .about-card ul li i {
    font-size: 1rem;
    margin-right: 8px;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .about-us-container {
    padding: 0 0.8rem 1.5rem 0.8rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .about-card {
    padding: 1rem;
  }

  .about-card h4 {
    font-size: 1.1rem;
  }

  .about-card p {
    font-size: 0.85rem;
  }

  .icon-circle {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ================================================================================
                        ACHIEVEMENT SECTION
 ==================================================================================== */

.achievement-section {
  background-color: var(--secondary-color);
  width: 100%;
  height: auto;
  padding: 1rem;
}

.achievement-section h1 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  font-size: var(--heading-font);
  padding-top: 1rem;
}

.achievement-section .lead {
  text-align: center;
  font-size: var(--lead-font);
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 400;
}

.row2 {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
}

.order-box_main {
  background: var(--white-color);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  padding: 30px 25px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
}

.order-box_main:hover {
  transform: translateY(-10px);
}

.order-box i {
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.order-box h3 {
  /* font-size: var(--lead-font); */
  font-size: clamp(1.2rem, 1vw, 1.5rem);
  color: var(--primary-color);
  margin-bottom: 6px;
}

.order-box .number {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 700;
  color: var(--primary-color);
}

/* ENHANCED RESPONSIVE ACHIEVEMENT SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .achievement-section {
    padding: 1rem 2rem 0rem 2rem;
  }


  .achievement-section .lead {
    margin-bottom: 2rem;
  }

  .row2 {
    gap: 30px;
    max-width: 1200px;
  }

  .order-box_main {
    width: 250px;
    padding: 15px 15px;
  }

  .order-box i {
    font-size: 35px;
  }

  .order-box .number {
    font-size: 1.7rem;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .achievement-section {
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
  }

  .row2 {
    gap: 25px;
  }

  .order-box_main {
    width: 220px;
    padding: 32px 28px;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .achievement-section {
    padding: 2rem 1rem 3rem 1rem;
  }

  .achievement-section h1 {
    font-size: 2.2rem;
    padding-top: 1.5rem;
  }

  .achievement-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .row2 {
    gap: 0px;
    justify-content: space-around;
  }

  .order-box_main {
    width: 175px;
    padding: 25px 20px;
    margin-bottom: 2rem;
  }

  .order-box i {
    font-size: 32px;
  }

  .order-box h3 {
    font-size: 1.2rem;
  }

  .order-box .number {
    font-size: 2rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .achievement-section {
    padding: 1.5rem 1rem 2.5rem 1rem;
  }

  .achievement-section h1 {
    font-size: 2rem;
  }

  .achievement-section .lead {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  .row2 {
    flex-direction: row;
    gap: 15px;
  }

  .order-box_main {
    width: 150px;
    margin-bottom: 1.5rem;
  }

  .order-box i {
    font-size: 28px;
  }

  .order-box h3 {
    font-size: 1rem;
  }

  .order-box .number {
    font-size: 1.8rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .achievement-section {
    padding: 1rem 0.8rem 2rem 0.8rem;
  }

  .achievement-section h1 {
    font-size: 1.8rem;
    padding-top: 1rem;
  }

  .achievement-section .lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .row2 {
    flex-direction: column;
    gap: 0rem;
    align-items: center;
  }

  .order-box_main {
    width: 90%;
    max-width: 280px;
    padding: 20px 15px;
    margin-bottom: 1rem;
  }

  .order-box i {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .order-box h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .order-box .number {
    font-size: 1.6rem;
    margin: 8px 0 3px;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .achievement-section {
    padding: 0.8rem 0.5rem 1.5rem 0.5rem;
  }

  .order-box_main {
    width: 95%;
    padding: 18px 12px;
  }

  .order-box i {
    font-size: 24px;
  }

  .order-box h3 {
    font-size: 0.95rem;
  }

  .order-box .number {
    font-size: 1.4rem;
  }
}

/* ===================================================================================
                                           GALLERY 
 ============================================================================ */

.gallery-preview {
  background-color: var(--whitesmoke-color);
  width: 100%;
  min-height: 130vh;
  height: auto;
  text-align: center;
  margin: 0 auto;
}

.gallery-preview h1 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 600;
  padding: 12vh 1rem 0 1rem;
  margin-bottom: 1rem;
  font-size: var(--heading-font);
}

.gallery-preview .lead {
  text-align: center;
  font-size: var(--lead-font);
  color: var(--lead-color);
  font-weight: 400;
  margin-bottom: 6rem;
}

.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
  max-width: 1100px;
  margin: 20px auto;
}

.masonry-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: all 0.3s ease;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  padding: 10px;
}

.masonry-item:hover img {
  opacity: 0.6;
  transform: scale(1.03);
}

.masonry-item:hover .overlay {
  opacity: 1;
}

.view-all-btn {
  margin-top: 40px;
  padding: 0.8rem 1.4rem;
  background-color: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
}

.view-all-btn:hover {
  background-color: var(--hover-color);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--white-color);
}

/* ENHANCED RESPONSIVE GALLERY SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .gallery-preview {
    padding: 0 3rem 4rem 3rem;
  }

  .gallery-preview h1 {
    padding: 12vh 1rem 0 1rem;
  }

  .gallery-preview .lead {
    margin-bottom: 4rem;
  }

  .masonry-gallery {
    max-width: 1200px;
    column-gap: 25px;
  }

  .view-all-btn {
    padding: 0.7rem 0.7rem;
    font-size: 1rem;
    margin-top: 0;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .gallery-preview {
    padding: 0 2rem 3rem 2rem;
  }

  .gallery-preview h1 {
    padding: 8vh 1rem 0 1rem;
  }

  .masonry-gallery {
    margin: 20px 1rem;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .gallery-preview {
    padding: 0 2rem 3rem 2rem;
  }

  .gallery-preview h1 {
    padding: 6vh 1rem 0 1rem;
    font-size: 2.2rem;
  }

  .gallery-preview .lead {
    font-size: 1.2rem;
    margin-bottom: 3rem;
  }

  .masonry-gallery {
    column-count: 3;
    margin: 15px 1rem;
    padding-bottom: 2rem;
  }

  .view-all-btn {
    padding: 0.7rem 1.3rem;
    font-size: 1rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .gallery-preview {
    padding: 0 1.5rem 2.5rem 1.5rem;
  }

  .gallery-preview h1 {
    padding: 5vh 1rem 0 1rem;
    font-size: 2rem;
  }

  .gallery-preview .lead {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }

  .masonry-gallery {
    column-count: 2;
    margin: 15px 0.5rem;
    padding-bottom: 1.5rem;
    column-gap: 15px;
  }

  .view-all-btn {
    padding: 0.6rem 1.1rem;
    font-size: 0.95rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .gallery-preview {
    padding: 2rem 1rem 10rem 1rem;
  }

  .gallery-preview h1 {
    padding: 4vh 0.5rem 0 0.5rem;
    font-size: 1.8rem;
  }

  .gallery-preview .lead {
    font-size: 1rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .masonry-gallery {
    column-count: 1;
    margin: 10px 0;
  }

  .masonry-item {
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .overlay {
    font-size: 1rem;
  }

  .view-all-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    margin-top: 0px;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .gallery-preview {
    padding: 2rem 0.8rem 5rem 0.8rem;
  }

  .gallery-preview h1 {
    font-size: 1.6rem;
  }

  .view-all-btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* ============================================================================
                            OUR PARTNER COMPANIES 
 ==================================================================================  */

.section2 {
  background-color: var(--secondary-color);
  width: 100%;
  height: auto;
}

.section2 h1 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 600;
  padding-top: 2rem;
  margin-bottom: 1rem;
  font-size: var(--heading-font);
}

.section2 .lead {
  text-align: center;
  color: var(--primary-color);
  font-weight: 400;
  font-size: var(--lead-font);
  margin-bottom: 2rem;
}

#company-wrapper {
  margin: 0 1rem;
}

.swiper {
  width: 100%;
  padding: 0;
}

.recruiter-card {
  width: 200px;
  height: 120px;
  background-color: var(--white-color);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.recruiter-card img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.recruiter-card p {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  padding: 5px 25px;
  border-radius: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  display: none;
}

.recruiter-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: var(--shadow-soft);
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

/* ENHANCED RESPONSIVE PARTNER COMPANIES */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .section2 {
    padding: 0rem 2rem 0rem 2rem;
  }

  .section2 h1 {
    padding-top: 2.5rem;
  }

  .section2 .lead {
    margin-bottom: 1rem;
  }

  .recruiter-card {
    height: 130px;
    padding: 18px;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .section2 {
    padding: 2.5rem 1.5rem 3.5rem 1.5rem;
  }


  .section2 .lead {
    margin-bottom: 2.5rem;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .section2 {
    padding: 2rem 1rem 3rem 1rem;
  }

  .section2 h1 {
    padding-top: 2rem;
  }

  .section2 .lead {
    margin-bottom: 2rem;
  }

  #company-slider-container {
    margin: 0 0.5rem;
    padding: 0 10px;
  }

  .mySwiper-company {
    padding: 25px 15px;
  }

  .recruiter-card {
    width: 180px;
    height: 110px;
    padding: 12px;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .section2 {
    padding: 1.5rem 1rem 2.5rem 1rem;
  }


  .section2 .lead {
    padding: 0 1rem;
  }

  .recruiter-card {
    width: 160px;
    height: 100px;
    padding: 10px;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .section2 {
    padding: 1rem 0.5rem 2rem 0.5rem;
  }

  .section2 h1 {
    padding-top: 1.5rem;
  }

  .section2 .lead {
    padding: 0 0.5rem;
    margin-bottom: 1.5rem;
  }

  #company-slider-container {
    width: 100%;
    padding: 0 5px;
    margin: 0;
  }

  .mySwiper-company {
    padding: 20px 15px;
  }

  .recruiter-card {
    width: 140px;
    height: 90px;
    padding: 8px;
  }

  .swiper-controls {
    display: none;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .recruiter-card {
    width: 130px;
    height: 85px;
    padding: 6px;
  }
}

/* ====================================================================================
                                OUR CLIENT TESTIMONIALS
 ======================================================================================= */

.section3 {
  background-color: var(--white-color);
  width: 100%;
  height: auto;
  min-height: 100vh;
}

.section3 h1 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  font-weight: 600;
  padding-top: 12vh;
  margin-bottom: 1rem;
  font-size: var(--heading-font);
}

.section3 .lead {
  text-align: center;
  font-size: var(--lead-font);
  font-weight: 400;
  color: var(--lead-color);
  margin-bottom: 3rem;
}

#testimonial-wrapper {
  margin: 0 0.5rem;
  width: 100%;
  height: 450px;
}

.slider-container {
  margin: 0 5rem;
  border-radius: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section3 .swiper-button-prev,
.section3 .swiper-button-next {
  font-size: 0.5rem;
  color: var(--primary-color);
  margin: 0px -2rem;
  font-weight: 600;
}

.swiper {
  padding: 20px 15px;
}

.feedCard {
  width: 96%;
  height: 22rem;
  background-color: var(--secondary-color);
  border-radius: 10px;
  padding: 20px;
  color: var(--primary-color);
  margin-right: 0.7rem;
  position: relative;
}

.feedCard i {
  font-size: 3rem;
  margin-bottom: 10px;
  padding-left: 10px;
  color: var(--primary-color);
}

.feedCard h2 {
  font-size: 1.6rem;
  color: var(--primary-color);
}

.feedCard .flead {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  width: 100%;
  height: 70%;
  margin-bottom: 15px;
}

.feedCard .fRating {
  color: var(--primary-color);
  margin-bottom: 15px;
  position: absolute;
  bottom: 0;
  width: calc(100% - 50px);
  padding-top: 0.5rem;
  box-sizing: border-box;
  /* border: 2px solid text */
  border-top: 3px solid var(--primary-color);
}

.feedCard .fRating i {
  font-size: clamp(1.3rem, 2vw, 2rem);
}

.feedCard .flead div {
  margin-top: 15px;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.swiper-controls {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  font-size: 1rem;
  color: var(--primary-color);
  margin: 0 -4rem;
  font-weight: 600;
  background: none;
}



/* ENHANCED RESPONSIVE TESTIMONIALS SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .section3 {
    height: auto;
    padding: 4rem 0;
  }

  .section3 h1 {
    padding-top: 3rem;
  }

  .section3 .lead {
    margin-bottom: 3rem;
  }

  .slider-container {
    margin: 0 5rem;
  }

  .feedCard {
    height: 24rem;
    padding: 25px;
  }

  .feedCard h2 {
    font-size: 1.7rem;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .section3 {
    height: auto;
    padding: 3rem 0;
  }

  .section3 h1 {
    padding-top: 2rem;
    font-size: 2.4rem;
  }

  .slider-container {
    margin: 0 5rem;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .section3 {
    height: auto;
    padding: 2.5rem 0;
  }

  .section3 h1 {
    padding-top: 2rem;
    font-size: 2.2rem;
  }

  .section3 .lead {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  #testimonial-slider-container {
    margin: 0 2rem;
    padding: 10px 2rem;
  }

  .swiper {
    padding: 30px 15px;
  }

  .feedCard {
    height: 20rem;
    padding: 18px;
  }

  .feedCard i {
    font-size: 2.5rem;
  }

  .feedCard h2 {
    font-size: 1.4rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -2rem;
    font-size: 0.9rem;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .section3 {
    height: auto;
    padding: 2rem 0;
  }

  .section3 h1 {
    padding-top: 1.5rem;
  }

  .section3 .lead {
    margin-bottom: 2rem;
    padding: 0 1rem;
  }

  #testimonial-slider-container {
    margin: 0 1rem;
    padding: 10px 1rem;
  }

  .swiper {
    padding: 25px 10px;
  }

  .feedCard {
    height: 18rem;
    padding: 15px;
  }

  .feedCard i {
    font-size: 2.2rem;
  }

  .feedCard h2 {
    font-size: 1.3rem;
  }

  .feedCard .flead div {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
  }

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -1rem;
    font-size: 0.8rem;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .section3 {
    height: auto;
    padding: 1.5rem 0;
  }

  .section3 h1 {
    padding-top: 1rem;
  }

  .section3 .lead {
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  #testimonial-slider-container {
    margin: 0;
    width: 100%;
    padding: 0 10px;
  }

  .swiper {
    padding: 20px 5px;
  }

  .feedCard {
    height: 16rem;
    padding: 12px;
    margin-right: 0.3rem;
  }

  .feedCard i {
    font-size: 2rem;
    padding-left: 5px;
  }

  .feedCard h2 {
    font-size: 1.2rem;
  }

  .feedCard .flead {
    height: 65%;
  }

  .feedCard .flead div {
    margin-top: 8px;
    margin-bottom: 12px;
    font-size: 0.85rem;
  }

  .feedCard .fRating i {
    font-size: 1.1rem;
  }

  .swiper-controls {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .feedCard {
    height: 15rem;
    padding: 10px;
  }

  .feedCard i {
    font-size: 1.8rem;
  }

  .feedCard h2 {
    font-size: 1.1rem;
  }

  .feedCard div {
    font-size: 0.8rem;
  }
}

/* =====================================================================================
                                Footer 
 ===================================================================================== */

footer button {
  border-radius: 5px;
  border: 2px solid var(--secondary-color);
  padding: 5px 15px;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--secondary-color);
  background-color: var(--primary-color);
  cursor: pointer;
  transition: all 0.3s ease;
}

footer button:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

footer textarea {
  border-radius: 2px;
  width: 100%;
  height: 10vh;
  color: var(--primary-color);
  border: none;
  outline: none;
  padding: 2px 10px;
  font-family: inherit;
  resize: vertical;
}

footer input {
  border-radius: 2px;
  width: 100%;
  height: 4vh;
  color: var(--primary-color);
  border: none;
  outline: none;
  padding: 2px 10px;
  font-family: inherit;
}

.custom-footer {
  background-color: var(--primary-color) !important;
  color: var(--white-color);
  width: 100%;
}

.footer-links a {
  color: var(--white-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

.map-container {
  height: 350px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.social-icons a {
  color: var(--white-color);
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  transform: translateY(-3px);
  color: var(--secondary-color);
}

.elec-container {
  background-color: var(--whitesmoke-color);
  max-width: 100vw;
  overflow-x: hidden;
}

.elec-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap;
}

.elec-logo {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.elec-logo-img {
  max-width: 200px;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}

.elec-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.elec-title {
  font-size: 64px;
  font-weight: bold;
  color: var(--black-color);
  line-height: 1.1;
}

.elec-subtitle {
  font-size: 36px;
  color: var(--black-color);
  font-weight: normal;
  text-align: right;
  width: 100%;
}

/* ENHANCED RESPONSIVE FOOTER */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
  .custom-footer {
    padding: 3rem 2rem 1rem 2rem;
  }

  .map-container {
    height: 300px;
  }

  .social-icons a {
    font-size: 1.8rem;
    margin-right: 20px;
  }

  .elec-title {
    font-size: 72px;
  }

  .elec-subtitle {
    font-size: 42px;
  }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
  .custom-footer {
    padding: 2.5rem 1.5rem 1rem 1.5rem;
  }

  .elec-title {
    font-size: 60px;
  }

  .elec-subtitle {
    font-size: 34px;
  }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
  .custom-footer {
    padding: 2rem 1rem 1rem 1rem;
  }

  .map-container {
    height: 250px;
  }

  .social-icons a {
    font-size: 1.4rem;
    margin-right: 12px;
  }

  footer button {
    padding: 4px 12px;
    font-size: 0.95rem;
  }

  footer textarea {
    height: 20vh;
  }

  footer input {
    height: 4.5vh;
  }

  .elec-title {
    font-size: 48px;
  }

  .elec-subtitle {
    font-size: 28px;
  }

  .elec-text {
    align-items: center;
    text-align: center;
  }

  .elec-subtitle {
    text-align: center;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  .custom-footer {
    padding: 1.5rem 1rem 0.8rem 1rem;
  }

  .map-container {
    height: 200px;
  }

  .social-icons a {
    font-size: 1.3rem;
    margin-right: 10px;
  }

  footer button {
    padding: 4px 10px;
    font-size: 0.9rem;
  }

  footer textarea {
    height: 7vh;
    padding: 5px 8px;
  }

  footer input {
    height: 3vh;
    padding: 2px 8px;
  }

  .elec-title {
    font-size: 42px;
  }

  .elec-subtitle {
    font-size: 26px;
  }

  .elec-inner {
    gap: 25px;
    padding: 15px;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  .custom-footer {
    padding: 1rem 0.8rem 0.5rem 0.8rem;
  }

  .map-container {
    height: 180px;
  }

  .social-icons a {
    font-size: 1.2rem;
    margin-right: 8px;
  }

  footer button {
    padding: 3px 8px;
    font-size: 0.85rem;
  }

  footer textarea {
    height: 15vh;
    padding: 4px 6px;
    font-size: 0.9rem;
  }

  footer input {
    height: 4vh;
    padding: 2px 6px;
    font-size: 0.9rem;
  }

  .elec-logo-img {
    max-width: 150px;
  }

  .elec-title {
    font-size: 36px;
  }

  .elec-subtitle {
    font-size: 24px;
  }

  .elec-inner {
    gap: 20px;
    justify-content: center;
    padding: 10px;
  }

  #rate-us {
    padding: 3px 8px;
    font-size: 0.85rem;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  .custom-footer {
    padding: 0.8rem 0.5rem 0.3rem 0.5rem;
  }

  .map-container {
    height: 160px;
  }

  .social-icons a {
    font-size: 1.1rem;
    margin-right: 6px;
  }

  .elec-title {
    font-size: 32px;
  }

  .elec-subtitle {
    font-size: 22px;
  }

  .elec-logo-img {
    max-width: 130px;
  }
}

/* ==============================================================================
                             BACK TO TOP BTN 
================================================================================== */

#backToTopBtn {
  position: fixed;
  bottom: 120px;
  right: 25px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  z-index: 1000;
  transition: all 0.3s ease;
  display: none;
}

#backToTopBtn:hover {
  background-color: var(--hover-color);
  color: var(--white-color);
  transform: scale(1.1);
}

#backToTopBtn.show {
  display: block;
}

/* ENHANCED RESPONSIVE BACK TO TOP BUTTON */

/* Large Tablets and up */
@media (min-width: 769px) {
  #backToTopBtn {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }

  .hero-section {
    padding: 25px 50px 50px 50px;
  }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
  #backToTopBtn {
    bottom: 110px;
    right: 28px;
    width: 42px;
    height: 42px;
    font-size: 22px;
  }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
  #backToTopBtn {
    bottom: 100px;
    right: 22px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
  #backToTopBtn {
    bottom: 90px;
    right: 18px;
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}

/* ====================== ADDITIONAL RESPONSIVE ENHANCEMENTS ================================ */

/* Enhanced Container Max-widths for better content flow */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .hero-section {
    padding: 30px 120px 100px 120px;
  }

  .section1 {
    padding: 0 8rem;
  }
}

/* Improved Typography Scaling */
@media (max-width: 480px) {
  :root {
    --heading-font: clamp(1.6rem, 5vw, 2rem);
    --lead-font: clamp(0.9rem, 3vw, 1.2rem);
  }
}

/* Enhanced Navigation for Touch Devices */
@media (max-width: 768px) {
  .nav-link {
    padding: 8px 20px;
    margin: 2px 0;
  }

  .navbar-nav {
    padding: 10px 0;
  }

  .dropdown-menu {
    border-radius: 8px;
    margin-top: 5px;
  }
}

/* Improved Button Interactions on Mobile */
@media (max-width: 576px) {

  button,
  .btn,
  .cta-button {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
  }

  .heroText button {
    margin: 8px 4px;
    display: inline-block;
    white-space: nowrap;
  }
}

/* Enhanced Swiper Controls for Different Screen Sizes */
@media (min-width: 1200px) {

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -1rem;
    font-size: 1.2rem;
  }

  .swiper {
    width: 95%;
  }
}

@media (max-width: 992px) {

  .swiper-button-prev,
  .swiper-button-next {
    margin: 0 -1rem;
    font-size: 1rem;
  }
}

@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

/* Optimized Image Loading and Display */
@media (max-width: 576px) {
  img {
    max-width: 100%;
    height: auto;
  }

  .masonry-item img,
  .recruiter-card img {
    object-fit: contain;
  }
}

/* Enhanced Focus States for Accessibility */
@media (max-width: 768px) {

  button:focus,
  .nav-link:focus,
  .cta-button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
}

/* Improved Spacing and Layout Flow */
@media (max-width: 576px) {
  section {
    scroll-margin-top: 80px;
  }

  .row>* {
    margin-bottom: 1rem;
  }

  .mb-5 {
    margin-bottom: 2rem !important;
  }

  .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
}

/* Performance Optimizations for Low-end Devices */
@media (max-width: 576px) {

  .option-box:hover,
  .value-box:hover,
  .about-card:hover,
  .order-box_main:hover {
    transform: none;
  }

  .masonry-item:hover img {
    transform: none;
  }

  .recruiter-card:hover {
    transform: translateY(-5px);
  }
}

/* Cross-browser Compatibility Fixes */
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.hero-section,
.services-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Print Styles (if needed) */
@media print {

  .social-sticky,
  #backToTopBtn,
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* Loading States and Animations */
.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.w-100 {
  width: 100%;
}

.h-100 {
  height: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--whitesmoke-color);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}

/* Form Validation Styles */
.form-control:invalid {
  border-color: #dc3545;
}

.form-control:valid {
  border-color: #28a745;
}

/* Preloader (if needed) */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

/* Animation Classes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in-out;
}

.slide-in-up {
  animation: slideInUp 0.6s ease-out;
}

/* ================= */