/*===Colors Code from sammarshay logo*/
:root{
  --orange-Dark: #f85d23;
  --orange-LightDark: #fb9b37;
  --orange-Light: #ffc83d;

  --blue-Dark: #5e8be6;
  --blue-LightDark: #659ef9;
  --blue-Light: #6dcfeb;

  --pink: #c40d64;

  --grey: #605e5e;

  --darkGrey: #2d2d2d;
}

/*For try and error*/
html {
  scroll-behavior: smooth;
}

.mybtn12 {
  position: relative;
  left: 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 35px;
  display: inline-block;
  border-radius: 50px;
  transition: all 0.3s ease-in;
  box-shadow: 0px 10px 10px 0px rgba(28, 75, 154, 0.3);
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  color: #ffffff;
  text-decoration: none;
}

.mybtn12:hover {
  background-color: transparent;
  color: var(--darkGrey);
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  border: 2px solid var(--darkGrey);
}

/* Typography */
body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  margin: 0;
  background: #fff;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 60px;
  margin-right: 8px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Open Sans", sans-serif;
}

h1 {
  font-size: 60px;
  line-height: 1.0833;
}
h2 {
  font-size: 52px;
  line-height: 1.4444;
}
h3 {
  font-size: 26px;
  line-height: 1.0833;
}
h4 {
  font-size: 22px;
  line-height: 1.2381;
}

p {
  font-size: 16px;
  line-height: 1.625;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Global Button */
.mybtn1 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 14px 35px;
  display: inline-block;
  color: #ffffff;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease-in;
  box-shadow: 0px 10px 10px 0px rgba(28, 75, 154, 0.3);
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  text-decoration: none;
}

.mybtn1:hover {
  background: var(--darkGrey);
  color: #fff;
  transform: translateY(-3px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  /* background: rgb(97, 97, 95); */
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.mainmenu-area .navbar {
  padding: 0;
}
.mainmenu-area .navbar .navbar-brand {
  padding: 0;
  margin: 0;
}

.mainmenu-area .navbar .navbar-brand img {
  height: 50px;
}

.mainmenu-area .navbar .navbar-nav .nav-item .nav-link {
  /* color: white; */
  color: var(--darkGrey);
  line-height: 26px;
  font-size: 16px;
  font-weight: 600;
  padding: 25px 10px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.mainmenu-area .navbar .navbar-nav .nav-item .nav-link:hover,
.mainmenu-area .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--orange-Dark);
}

/* ====================================
   HEADER/NAVIGATION - MOBILE FIXES
==================================== */
@media (max-width: 991px) {
  .header .logo img {
    max-height: 50px;
  }
  
  .mainmenu-area .navbar .navbar-nav {
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }
  
  .mainmenu-area .navbar .navbar-nav .nav-item .nav-link {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
  }
  
  .mainmenu-area .navbar .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  .mybtn12 {
    position: static;
    width: 100%;
    margin-top: 15px;
    text-align: center;
    display: block;
  }
}

@media (max-width: 767px) {
  .header .logo img {
    max-height: 45px;
  }
  
  .navbar-toggler {
    padding: 8px 12px;
    font-size: 20px;
  }
}

/* Hero Area */
.hero-area {
  position: relative;
  padding: 256px 0px 150px;
  /* background: #fff; */
  background-size: cover;
  overflow: hidden;
  background-position: top;
  background-repeat: no-repeat;
}

.hero-area .overlay {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(35, 100, 210, 0.1); */
  z-index: 1;
}

.hero-area .left-content {
  position: relative;
  z-index: 9;
}

.hero-area .left-content .content .subtitle {
  font-size: 28px;
  line-height: 38px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.hero-area .left-content .content .title {
  font-size: 55px;
  font-weight: 700;
  line-height: 70px;
  color: var(--darkGrey);
  margin-bottom: 22px;
}

.hero-area .left-content .content .title .typed {
  color: var(--pink);
}

.hero-area .left-content .content .text {
  font-size: 24px;
  line-height: 36px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9rem);
  margin-bottom: 31px;
}

.hero-area .left-content .content .links .link1 {
  margin-right: 20px;
}

.hero-area .left-content .content .links .link2 {
  background: #fff;
  color: var(--darkGrey);
  transition: all 0.3s ease;
  border: 1px solid var(--darkGrey);
}

.hero-area .left-content .content .links .link2:hover {
  background: var(--darkGrey);
  border: 2px solid var(--darkGrey);
  color: #fff;
  transform: translateY(-2px);
}

.hero-area .right-img {
  text-align: center;
  position: relative;
  z-index: 9;
}

/* ====================================
   HERO SECTION - MOBILE FIXES
==================================== */
@media (max-width: 991px) {
  .hero-area {
    padding: 180px 0px 80px;
  }
  
  .hero-area .left-content .content .subtitle {
    font-size: 20px;
    line-height: 30px;
  }
  
  .hero-area .left-content .content .title {
    font-size: 38px;
    line-height: 50px;
    margin-bottom: 18px;
  }
  
  .hero-area .left-content .content .text {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 25px;
  }
  
  .hero-area .right-img {
    margin-top: 40px;
  }
  
  .hero-area .right-img img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .hero-area {
    padding: 150px 0px 60px;
  }
  
  .hero-area .left-content .content .subtitle {
    font-size: 18px;
    line-height: 26px;
  }
  
  .hero-area .left-content .content .title {
    font-size: 32px;
    line-height: 42px;
  }
  
  .hero-area .left-content .content .text {
    font-size: 16px;
    line-height: 26px;
    color: var(--grey);
  }
  
  .hero-area .left-content .content .links {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-area .left-content .content .links .link1,
  .hero-area .left-content .content .links .link2 {
    margin-right: 0;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-area .left-content .content .title {
    font-size: 28px;
    line-height: 38px;
  }
  
  .hero-area .left-content .content .subtitle {
    font-size: 16px;
  }
  
  .mybtn1 {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .mybtn12 {
    padding: 12px 25px;
    font-size: 14px;
    left: 0;
  }
}

/* Why Choose Us Area */
.why-choose-us {
  padding: 110px 0px 70px;
  /* background: #d6d9dc; */
}

.why-choose-us .section-heading {
  margin-bottom: 57px;
  text-align: center;
}

.why-choose-us .row {
  display: flex;
  justify-content: center;
}

/*Single-Why_Item*/
.single-why {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(35, 100, 210, 0.1);
  border: 2px solid rgba(35, 100, 210, 0.1);
  padding: 30px;
  margin-bottom: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.single-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  /* background: linear-gradient(to right, #3468fe, #2787ec); */
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.single-why:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(35, 100, 210, 0.2);
  border-color: var(--darkGrey);
}

.single-why:hover::before {
  transform: scaleX(1);
}

/*Icon-circle-left*/
.single-why .left {
  margin-right: 30px;
}

.single-why .left .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(35, 100, 210, 0.1) 0%, rgba(35, 100, 210, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: all 0.3s ease;
}

.single-why .left-mission .icon {
  color: var(--orange-Dark);
}
.single-why .right-vission .icon {
  color: var(--pink);
}

.single-why:hover .left .icon {
  /* background: linear-gradient(to right, #3468fe, #2787ec); */
  background: var(--orange-Dark);
  transform: scale(1.1);
  color: #fff;
}

/* For the mission column only */
.col-lg-6:first-child .single-why {
  margin-left: 10px;
  margin-right: -10px;
}

/* ===Text Content (Right)===*/
.single-why .right {
  flex: 1;
}

.single-why .right .title {
  font-size: 28px;
  line-height: 38px;
  font-weight: 700;
  color: var(--darkGrey);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.single-why .right .title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--pink);
}

.single-why .right .text {
  font-size: 18px;
  line-height: 30px;
  /* color: var(--darkGrey); */
  color: #605e5e;
  font-weight: 400;
}

/*=== Make mission and vission block eqaul side*/
.row {
  display: flex;
  flex-wrap: wrap;
}

.col-lg-6 {
  display: flex;
}

.single-why {
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: row;
  flex: 1;
}

.single-why .left {
  margin-right: 20px;
  flex-shrink: 0;
}

.single-why .right {
  flex: 1;
}

/* ====Responsive Design====*/
/* ====================================
   WHY CHOOSE US (MISSION/VISION)
==================================== */
/* ====PROFESSIONAL RESPONSIVE DESIGN==== */

/* Large Tablets and Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
  .why-choose-us {
    padding: 80px 20px 50px;
  }
  
  .single-why {
    padding: 25px;
  }
  
  .single-why .left .icon {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }
  
  .single-why .right .title {
    font-size: 26px;
    line-height: 36px;
  }
  
  .single-why .right .text {
    font-size: 17px;
    line-height: 28px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 60px 15px 40px;
  }
  
  .row {
    display: block;
  }
  
  .col-lg-6 {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
  
  .col-lg-6:first-child .single-why {
    margin-left: 0;
    margin-right: 0;
  }
  
  .single-why {
    padding: 30px 25px;
    margin-bottom: 30px;
  }
  
  .single-why .left .icon {
    width: 85px;
    height: 85px;
    font-size: 40px;
  }
  
  .single-why .right .title {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 12px;
  }
  
  .single-why .right .text {
    font-size: 16px;
    line-height: 27px;
  }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .why-choose-us {
    padding: 50px 15px 30px;
  }
  
  .single-why {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    margin-bottom: 25px;
  }
  
  .single-why .left {
    margin-right: 0;
    margin-bottom: 20px;
  }
  
  .single-why .left .icon {
    width: 80px;
    height: 80px;
    font-size: 38px;
    margin: 0 auto;
  }
  
  .single-why .right .title {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 12px;
  }
  
  .single-why .right .title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .single-why .right .text {
    font-size: 15px;
    line-height: 26px;
  }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .why-choose-us {
    padding: 40px 12px 25px;
  }
  
  .single-why {
    padding: 20px 15px;
    margin-bottom: 20px;
    border-radius: 12px;
  }
  
  .single-why .left .icon {
    width: 70px;
    height: 70px;
    font-size: 34px;
  }
  
  .single-why .right .title {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .single-why .right .title::after {
    width: 40px;
    height: 2px;
  }
  
  .single-why .right .text {
    font-size: 14px;
    line-height: 24px;
  }
  
  .single-why:hover {
    transform: translateY(-3px);
  }
}

/* Small Mobile Phones (320px - 479px) */
@media (max-width: 479px) {
  .why-choose-us {
    padding: 35px 10px 20px;
  }
  
  .single-why {
    padding: 18px 12px;
    margin-bottom: 18px;
    border-radius: 10px;
  }
  
  .single-why .left {
    margin-bottom: 15px;
  }
  
  .single-why .left .icon {
    width: 65px;
    height: 65px;
    font-size: 30px;
  }
  
  .single-why .right .title {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 8px;
  }
  
  .single-why .right .title::after {
    width: 35px;
  }
  
  .single-why .right .text {
    font-size: 13px;
    line-height: 22px;
  }
}

/* Extra Small Devices (below 320px) */
@media (max-width: 319px) {
  .why-choose-us {
    padding: 30px 8px 15px;
  }
  
  .single-why {
    padding: 15px 10px;
  }
  
  .single-why .left .icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .single-why .right .title {
    font-size: 17px;
    line-height: 26px;
  }
  
  .single-why .right .text {
    font-size: 12px;
    line-height: 20px;
  }
}

/*=== Modern Features About Us Section ===*/
.features-modern {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Animated Background Pattern */
.features-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(248, 93, 35, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

.features-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196, 13, 100, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 30px) scale(1.1); }
}

/* Section Header*/
.section-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

/* Badge */
.section-badge {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Title */
.section-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--darkGrey);
  margin-bottom: -40px;
  line-height: 1.2;
  position: relative;
}

/* Description */
.section-description {
  font-size: 18px;
  color: #605e5e;
  max-width: 800px;
  margin: 30px auto 0;
  line-height: 1.8;
}

/* ----- FEATURE CARDS ----- */
.features-grid {
  position: relative;
  z-index: 2;
  margin-bottom: -350px;
}

.feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  height: 100%;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Gradient Background Overlay */
.card-gradient-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248, 93, 35, 0.03), rgba(196, 13, 100, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Icon Section */
.feature-icon {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(248, 93, 35, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.icon-wrapper i {
  font-size: 36px;
  color: #ffffff;
  transition: transform 0.4s ease;
}

/* Icon Glow Effect */
.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(248, 93, 35, 0.3), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Content Section */
.feature-content {
  position: relative;
  z-index: 1;
}

.feature-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #605e5e;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.feature-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--darkGrey);
  margin-bottom: 20px;
  transition: all 0.4s ease;
  background: linear-gradient(135deg, var(--darkGrey), var(--darkGrey));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-text {
  font-size: 16px;
  color: #605e5e;
  line-height: 1.8;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

/* Accent Line */
.feature-accent-line {
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-Dark), var(--pink));
  border-radius: 2px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----- HOVER EFFECTS ----- */
.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange-Dark);
  box-shadow: 
    0 20px 60px rgba(248, 93, 35, 0.2),
    0 0 0 1px rgba(248, 93, 35, 0.1);
}

.feature-card:hover .card-gradient-bg {
  opacity: 1;
}

.feature-card:hover .icon-wrapper {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(248, 93, 35, 0.4);
}

.feature-card:hover .icon-wrapper i {
  transform: scale(1.2);
}

.feature-card:hover .icon-glow {
  opacity: 1;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.6; }
}

.feature-card:hover .feature-label {
  color: var(--pink);
  transform: translateX(8px);
}

.feature-card:hover .feature-title {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: translateX(8px);
}

.feature-card:hover .feature-accent-line {
  width: 60px;
}

/* ----- SHOWCASE CONTENT ----- */
.showcase-content {
  padding-right: 40px;
  position: relative;
  /* top: -480px; */
}

.about-showcase .row {
  align-items: center;
}

.content-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(248, 93, 35, 0.1), rgba(196, 13, 100, 0.1));
  color: var(--orange-Dark);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 1px solid var(--orange-Dark);
  /* position: relative; */
  /* bottom: 100px; */
}

.content-heading {
  font-size: 42px;
  font-weight: 700;
  color: var(--darkGrey);
  line-height: 1.3;
  margin-bottom: 25px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-description {
  font-size: 16px;
  color: #605e5e;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* ----- STATS/PROGRESS BARS ----- */
.stats-wrapper {
  margin-bottom: 35px;
}

.stat-item {
  margin-bottom: 30px;
}

.stat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--darkGrey);
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-bar-container {
  height: 10px;
  background: #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.stat-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange-Dark), var(--pink));
  border-radius: 10px;
  position: relative;
  animation: barSlideIn 1.5s ease-out;
}

@keyframes barSlideIn {
  from { width: 0 !important; }
}

/* Shimmer Effect */
.stat-bar-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.4), 
    transparent
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/*====RIGHT SIDE IMAGE GRID=====*/
.showcase-content .image-about-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.showcase-content .image-about-wrapper img {
  box-shadow: 0 8px 20px rgba(35, 100, 210, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Main big image */
.showcase-content .image-about-wrapper .main-image {
  border-radius: 15px;
  width: 480px;
  /* width: 100%; */
  height: 550px;
  /* height: 100%; */
  z-index: 3;
  position: relative;
  left: 650px;
  bottom: -30px;
  top: 600px;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1199px) {
  .section-title {
    font-size: 42px;
  }
  
  .showcase-content {
    padding-right: 20px;
  }
  
  .content-heading {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .features-modern {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .features-grid {
    margin-bottom: 80px;
  }
  
  .feature-card {
    padding: 40px 30px;
  }
  
  .feature-title {
    font-size: 28px;
  }
  
  .showcase-images {
    height: 500px;
    margin-bottom: 50px;
  }
  
  .showcase-content {
    padding-right: 0;
  }
  
  .content-heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .features-modern {
    padding: 60px 0;
  }
  
  .section-badge {
    font-size: 12px;
    padding: 6px 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 16px;
  }
  
  .feature-card {
    padding: 35px 25px;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .icon-wrapper i {
    font-size: 30px;
  }
  
  .feature-title {
    font-size: 24px;
  }
  
  .feature-text {
    font-size: 15px;
  }
  
  .showcase-images {
    height: 400px;
    margin-bottom: 40px;
  }
  
  .floating-badge {
    width: 110px;
    height: 110px;
    bottom: 20px;
    right: 20px;
  }
  
  .badge-number {
    font-size: 36px;
  }
  
  .badge-label {
    font-size: 10px;
  }
  
  .content-heading {
    font-size: 26px;
  }
  
  .content-description {
    font-size: 15px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .stat-value {
    font-size: 16px;
  }
  
  .showcase-cta {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .section-title {
    font-size: 24px;
  }
  
  .feature-card {
    padding: 30px 20px;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper i {
    font-size: 26px;
  }
  
  .feature-title {
    font-size: 22px;
  }
  
  .showcase-images {
    height: 350px;
  }
  
  .image-main {
    width: 70%;
    height: 60%;
  }
  
  .image-secondary {
    width: 55%;
    height: 45%;
  }
  
  .image-tertiary {
    width: 40%;
    height: 35%;
  }
  
  .floating-badge {
    width: 90px;
    height: 90px;
  }
  
  .badge-number {
    font-size: 28px;
  }
  
  .content-heading {
    font-size: 22px;
  }
  
  .showcase-cta {
    width: 100%;
    justify-content: center;
  }
}

/* How It Work Area */
.how-it-work {
  position: relative;
  padding: 110px 0px 73px;
  background: #fff;
}

.how-it-work .title {
  color: var(--darkGrey);
}

.how-it-work .subtitle {
  /* color: var(--orange-Dark); */
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-it-work .section-heading {
  margin-bottom: 57px;
}

.single-work {
  position: relative;
  padding: 0 60px;
  margin-bottom: 40px;
}

.single-work .icon {
  text-align: center;
  margin-bottom: 26px;
}

.single-work .icon i {
  font-size: 68px;
}

.single-work .content {
  position: relative;
  text-align: center;
}

.single-work .content .num {
  font-size: 58px;
  font-weight: 600;
  line-height: 70px;
}

.single-work .content .title {
  position: relative;
  top: -3px;
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  color: var(--grey);
}

.single-work .icon .fa-lightbulb {
  color: var(--orange-Dark);
}
.single-work .icon .fa-pencil-alt {
  /* color: var(--pink); */
  color: var(--pink);
}
.single-work .icon .fa-laptop-code {
  color: var(--orange-Dark);
}
.single-work .icon .fa-rocket {
  color: var(--pink);
}

.single-work .content .num {
  color: var(--darkGrey);
}

/* ====================================
   HOW IT WORKS SECTION
==================================== */
/* ====RESPONSIVE DESIGN FOR HOW IT WORKS SECTION==== */

/* Large Tablets and Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
  .how-it-work {
    padding: 90px 0 60px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 50px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 15px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 2.2rem;
  }
  
  .how-it-work .section-heading .text {
    font-size: 16px;
  }
  
  .single-work {
    padding: 0 50px;
    margin-bottom: 35px;
  }
  
  .single-work .icon i {
    font-size: 64px;
  }
  
  .single-work .content .num {
    font-size: 54px;
    line-height: 65px;
  }
  
  .single-work .content .title {
    font-size: 26px;
    line-height: 36px;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .how-it-work {
    padding: 80px 0 50px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 45px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 14px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 2rem;
  }
  
  .how-it-work .section-heading .text {
    font-size: 15px;
    padding: 0 20px;
  }
  
  .single-work {
    padding: 0 40px;
    margin-bottom: 40px;
  }
  
  .single-work .icon {
    margin-bottom: 22px;
  }
  
  .single-work .icon i {
    font-size: 60px;
  }
  
  .single-work .content .num {
    font-size: 52px;
    line-height: 62px;
  }
  
  .single-work .content .title {
    font-size: 24px;
    line-height: 34px;
    top: -2px;
  }
  
  /* Two columns on tablets */
  .how-it-work .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .how-it-work {
    padding: 70px 0 40px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 40px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  
  .how-it-work .section-heading .text {
    font-size: 14px;
    padding: 0 15px;
    line-height: 1.6;
  }
  
  .single-work {
    padding: 0 30px;
    margin-bottom: 35px;
  }
  
  .single-work .icon {
    margin-bottom: 20px;
  }
  
  .single-work .icon i {
    font-size: 56px;
  }
  
  .single-work .content .num {
    font-size: 48px;
    line-height: 58px;
  }
  
  .single-work .content .title {
    font-size: 22px;
    line-height: 32px;
    top: -2px;
  }
  
  /* Two columns on small tablets */
  .how-it-work .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .how-it-work {
    padding: 60px 0 35px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 35px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 12px;
    margin-bottom: 6px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .how-it-work .section-heading .text {
    font-size: 13px;
    padding: 0 12px;
    line-height: 1.6;
  }
  
  .single-work {
    padding: 0 20px;
    margin-bottom: 30px;
  }
  
  .single-work .icon {
    margin-bottom: 18px;
  }
  
  .single-work .icon i {
    font-size: 52px;
  }
  
  .single-work .content .num {
    font-size: 44px;
    line-height: 54px;
  }
  
  .single-work .content .title {
    font-size: 20px;
    line-height: 30px;
    top: -1px;
  }
  
  /* Single column on mobile */
  .how-it-work .col-md-6,
  .how-it-work .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* Small Mobile Phones (375px - 479px) */
@media (max-width: 479px) {
  .how-it-work {
    padding: 50px 0 30px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 30px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 11px;
    margin-bottom: 6px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  
  .how-it-work .section-heading .text {
    font-size: 12px;
    padding: 0 10px;
  }
  
  .single-work {
    padding: 0 15px;
    margin-bottom: 28px;
  }
  
  .single-work .icon {
    margin-bottom: 16px;
  }
  
  .single-work .icon i {
    font-size: 48px;
  }
  
  .single-work .content .num {
    font-size: 40px;
    line-height: 50px;
  }
  
  .single-work .content .title {
    font-size: 18px;
    line-height: 28px;
    top: -1px;
  }
}

/* Extra Small Mobile Phones (320px - 374px) */
@media (max-width: 374px) {
  .how-it-work {
    padding: 45px 0 25px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 28px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 10px;
    margin-bottom: 5px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  
  .how-it-work .section-heading .text {
    font-size: 11px;
    padding: 0 8px;
  }
  
  .single-work {
    padding: 0 12px;
    margin-bottom: 25px;
  }
  
  .single-work .icon {
    margin-bottom: 14px;
  }
  
  .single-work .icon i {
    font-size: 44px;
  }
  
  .single-work .content .num {
    font-size: 36px;
    line-height: 46px;
  }
  
  .single-work .content .title {
    font-size: 17px;
    line-height: 26px;
    top: 0;
  }
}

/* Very Small Devices (below 320px) */
@media (max-width: 319px) {
  .how-it-work {
    padding: 40px 0 20px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 25px;
  }
  
  .how-it-work .section-heading .subtitle {
    font-size: 9px;
  }
  
  .how-it-work .section-heading .title {
    font-size: 1.15rem;
  }
  
  .how-it-work .section-heading .text {
    font-size: 10px;
  }
  
  .single-work {
    padding: 0 10px;
    margin-bottom: 22px;
  }
  
  .single-work .icon i {
    font-size: 40px;
  }
  
  .single-work .content .num {
    font-size: 32px;
    line-height: 42px;
  }
  
  .single-work .content .title {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
  .how-it-work {
    padding: 40px 0 25px;
  }
  
  .how-it-work .section-heading {
    margin-bottom: 30px;
  }
  
  .single-work {
    margin-bottom: 25px;
  }
  
  .single-work .icon {
    margin-bottom: 12px;
  }
  
  .single-work .icon i {
    font-size: 44px;
  }
  
  .single-work .content .num {
    font-size: 38px;
    line-height: 48px;
  }
}
/* ====RESPONSIVE DESIGN FOR HOW IT WORKS SECTION END==== */


/*==== Get Start Section Area==== */
.get-start {
  padding: 120px 0px 120px;
  background: #fff;
}

.get-start .subtitle {
  /* color: var(--orange-Dark); */
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.get-start .title {
  color: var(--darkGrey);
}
.get-start .text {
  color: var(--grey);
}

.get-start .right-area .section-heading {
  /* text-align: left; */
  margin-bottom: 0;
}

.get-start .right-area .section-heading .mybtn1 {
  margin-top: 34px;
}

.get-start img {
  width: 90%;
  max-width: 550px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.get-start img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ====================================
   Responsive For GET STARTED SECTION
==================================== */
@media (max-width: 991px) {
  .get-start {
    padding: 80px 0px;
  }
  
  .get-start .row {
    flex-direction: column-reverse;
  }
  
  .get-start img {
    margin: 0 auto 30px;
    display: block;
  }
  
  .get-start .right-area {
    text-align: center;
  }
  
  .get-start .right-area .section-heading .title {
    font-size: 32px;
  }
  
  .get-start .right-area .section-heading .mybtn1 {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .get-start {
    padding: 60px 0px;
  }
  
  .get-start .right-area .section-heading .title {
    font-size: 28px;
    line-height: 38px;
  }
  
  .get-start .right-area .section-heading .text {
    font-size: 16px;
    line-height: 26px;
  }
  
  .get-start img {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .get-start .right-area .section-heading .title {
    font-size: 24px;
    line-height: 34px;
  }
  
  .get-start img {
    max-width: 320px;
  }
}
/* Responsive For Get Started Is End */

/*===================================*/
/*===Technology Section===*/
#technology.technology.section {
  background-color: #ffffff;
  padding: 80px 0px;
}

.technology .section-title h2 {
  color: var(--orange-Dark);
  font-weight: 700;
  font-size: 33px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  padding-top: 60px;
}

.technology .section-title p {
  color: var(--grey);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/*===Layout & Intro===*/
.technology .row {
  align-items: center;
}

.technology .technology-intro .technology-intro-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 20px;
}

.technology .technology-intro .technology-intro-content h2 {
  color: var(--darkGrey);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.technology .technology-intro .technology-intro-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--pink);
}

.technology .technology-intro .technology-intro-content p {
  color: var(--grey);
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}

.technology .technology-intro .technology-navigation {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.technology .technology-intro .technology-navigation button {
  width: 47px;
  height: 47px;
  border-radius: 40%;
  background-color: transparent;
  border: 2px solid var(--orange-Dark);
  color: #1e375a;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.technology .technology-intro .technology-navigation button:hover {
  background-color: var(--darkGrey);
  color: #ffffff;
  box-shadow: #1e375a;
}

/*Carousel Cards*/
.technology .technology-carousel-wrap {
  overflow-x: hidden;
  padding: 30px 15px;
}

.technology .technology-carousel .swiper-slide {
  height: auto;
}

.technology .member-card {
  display: flex;
  flex-direction: column;
  /* background-color: #ffffff; */
  background-color: rgb(235, 234, 234);
  border: 1px solid var(--darkGrey);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}

.technology .member-card:hover {
  border: 2px solid var(--orange-Dark);
  transform: scale(0.97);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.technology .member-card .member-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.technology .member-card .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.technology .member-card .member-info {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.technology .member-card .member-info h3 {
  color: var(--darkGrey);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.technology .member-card .member-info span {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.technology .member-card .member-bio p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 0;
} 
/*Technology section end*/

/*===================================*/

/* ========================================
   PROFESSIONAL RESPONSIVE BREAKPOINTS
   ======================================== */
/* Large Desktops (1400px and above) */
@media (min-width: 1400px) {
  #technology.technology.section {
    padding: 100px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 38px;
    padding-top: 70px;
  }
  
  .technology .section-title p {
    font-size: 18px;
    max-width: 700px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 34px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 17px;
  }
  
  .technology .member-card .member-image {
    height: 380px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 25px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 15px;
  }
}

/* Desktop to Laptop (1200px - 1399px) */
@media (max-width: 1399px) {
  .technology .section-title h2 {
    font-size: 32px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 28px;
  }
  
  .technology .member-card .member-image {
    height: 320px;
  }
}

/* Laptop to Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  #technology.technology.section {
    padding: 70px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 30px;
    padding-top: 50px;
  }
  
  .technology .section-title p {
    font-size: 16px;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 15px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 26px;
    margin-bottom: 18px;
    padding-bottom: 12px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 55px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .technology .member-card .member-image {
    height: 300px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 21px;
  }
  
  .technology .member-card .member-info span {
    font-size: 13px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 13px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
  #technology.technology.section {
    padding: 60px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 28px;
    padding-top: 40px;
    margin-bottom: 8px;
  }
  
  .technology .section-title p {
    font-size: 15px;
    max-width: 550px;
    line-height: 1.6;
  }
  
  .technology .technology-intro {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 20px 15px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 26px;
    margin-bottom: 16px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 15px;
    margin-bottom: 22px;
  }
  
  .technology .technology-intro .technology-navigation {
    justify-content: center;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 45px;
    height: 45px;
    font-size: 17px;
  }
  
  .technology .technology-carousel-wrap {
    padding: 25px 10px;
  }
  
  .technology .member-card .member-image {
    height: 280px;
  }
  
  .technology .member-card .member-info {
    padding: 18px 15px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .technology .member-card .member-info span {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
  #technology.technology.section {
    padding: 50px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 26px;
    padding-top: 35px;
    letter-spacing: 0.3px;
  }
  
  .technology .section-title p {
    font-size: 14px;
    max-width: 500px;
    padding: 0 15px;
  }
  
  .technology .technology-intro {
    margin-bottom: 35px;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 15px 10px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 24px;
    margin-bottom: 14px;
    padding-bottom: 10px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 45px;
    height: 2.5px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 42px;
    height: 42px;
    font-size: 16px;
    border-width: 1.5px;
  }
  
  .technology .technology-carousel-wrap {
    padding: 20px 8px;
  }
  
  .technology .member-card {
    border-radius: 14px;
  }
  
  .technology .member-card .member-image {
    height: 260px;
  }
  
  .technology .member-card .member-info {
    padding: 16px 14px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 19px;
    margin-bottom: 5px;
  }
  
  .technology .member-card .member-info span {
    font-size: 12px;
    margin-bottom: 9px;
    letter-spacing: 0.8px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 12.5px;
    line-height: 1.55;
  }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
  #technology.technology.section {
    padding: 45px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 24px;
    padding-top: 30px;
  }
  
  .technology .section-title p {
    font-size: 13px;
    max-width: 450px;
    padding: 0 10px;
  }
  
  .technology .technology-intro {
    margin-bottom: 30px;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 12px 8px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 40px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 13px;
    margin-bottom: 18px;
  }
  
  .technology .technology-intro .technology-navigation {
    gap: 8px;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
  
  .technology .technology-carousel-wrap {
    padding: 18px 6px;
  }
  
  .technology .member-card {
    border-radius: 12px;
  }
  
  .technology .member-card .member-image {
    height: 240px;
  }
  
  .technology .member-card .member-info {
    padding: 15px 12px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
  }
  
  .technology .member-card .member-info span {
    font-size: 11.5px;
    margin-bottom: 8px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 12px;
    line-height: 1.5;
  }
}

/* Small Mobile (375px - 479px) */
@media (max-width: 479px) {
  #technology.technology.section {
    padding: 40px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 22px;
    padding-top: 25px;
  }
  
  .technology .section-title p {
    font-size: 12.5px;
    max-width: 400px;
  }
  
  .technology .technology-intro {
    margin-bottom: 28px;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 10px 6px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
    padding-bottom: 8px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 38px;
    height: 2px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 12.5px;
    margin-bottom: 16px;
    line-height: 1.45;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
  
  .technology .technology-carousel-wrap {
    padding: 15px 5px;
  }
  
  .technology .member-card {
    border-radius: 11px;
  }
  
  .technology .member-card .member-image {
    height: 220px;
  }
  
  .technology .member-card .member-info {
    padding: 14px 11px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 17px;
  }
  
  .technology .member-card .member-info span {
    font-size: 11px;
    margin-bottom: 7px;
    letter-spacing: 0.5px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 11.5px;
    line-height: 1.45;
  }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
  #technology.technology.section {
    padding: 35px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 20px;
    padding-top: 20px;
  }
  
  .technology .section-title p {
    font-size: 12px;
    max-width: 350px;
    padding: 0 8px;
  }
  
  .technology .technology-intro {
    margin-bottom: 25px;
  }
  
  .technology .technology-intro .technology-intro-content {
    padding: 8px 5px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 19px;
    margin-bottom: 9px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 35px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 12px;
    margin-bottom: 14px;
  }
  
  .technology .technology-intro .technology-navigation {
    gap: 7px;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  
  .technology .technology-carousel-wrap {
    padding: 12px 4px;
  }
  
  .technology .member-card {
    border-radius: 10px;
  }
  
  .technology .member-card .member-image {
    height: 200px;
  }
  
  .technology .member-card .member-info {
    padding: 12px 10px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 16px;
  }
  
  .technology .member-card .member-info span {
    font-size: 10.5px;
    margin-bottom: 6px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Ultra Small Mobile (below 320px) */
@media (max-width: 319px) {
  #technology.technology.section {
    padding: 30px 0px;
  }
  
  .technology .section-title h2 {
    font-size: 18px;
    padding-top: 18px;
  }
  
  .technology .section-title p {
    font-size: 11px;
    padding: 0 6px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 18px;
  }
  
  .technology .technology-intro .technology-intro-content h2::after {
    width: 32px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 11px;
  }
  
  .technology .technology-intro .technology-navigation button {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }
  
  .technology .member-card .member-image {
    height: 180px;
  }
  
  .technology .member-card .member-info {
    padding: 10px 8px;
  }
  
  .technology .member-card .member-info h3 {
    font-size: 15px;
  }
  
  .technology .member-card .member-info span {
    font-size: 10px;
  }
  
  .technology .member-card .member-bio p {
    font-size: 10.5px;
  }
}

/* Landscape Orientation Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  #technology.technology.section {
    padding: 40px 0px;
  }
  
  .technology .section-title h2 {
    padding-top: 25px;
    font-size: 24px;
  }
  
  .technology .section-title p {
    font-size: 13px;
  }
  
  .technology .technology-intro {
    margin-bottom: 25px;
  }
  
  .technology .technology-intro .technology-intro-content h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .technology .technology-intro .technology-intro-content p {
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .technology .member-card .member-image {
    height: 220px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .technology .technology-intro .technology-navigation button {
    min-width: 44px;
    min-height: 44px;
  }
  
  .technology .member-card:active {
    transform: scale(0.98);
  }
  
  .technology .technology-intro .technology-navigation button:active {
    background-color: var(--darkGrey);
    color: #ffffff;
  }
}

/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .technology .member-card .member-image img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/*Technology section Responsive end*/


/*=== Contact Us Area ===*/
.contact {
  padding: 110px 0px 120px;
  /* background: #f9fafc; */
}

/*---Section Heading---*/
.contact .section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.contact .section-heading .title {
  font-size: 35px;
  font-weight: 700;
  margin-top: 17px;
}

.contact .section-heading .text {
  color: var(--grey);
  margin-top: 10px;
}

/*----Map Wrapper---*/
.contact .map-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid var(--orange-Dark);
}

.contact .map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) contrast(95%) brightness(95%);
  transition: all 0.4s ease;
}

.contact .map-wrapper iframe:hover {
  filter: grayscale(0%) contrast(100%) brightness(100%);
}

/*---- Contact Form ----*/
.contact .contact-form-wrapper {
  background: #fff;
  padding: 50px 30px 30px;
  position: relative;
  box-shadow: 2px 2px 25px 0px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}

.contact .section-heading .text {
  color: var(--darkGrey);
}

.contact .section-heading .title {
  /* color: var(--orange-Dark); */
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .contact-form-wrapper {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 23px;
  color: var(--darkGrey);
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 42px;
}

.contact .contact-form-wrapper .title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  /* background: #000; */
}

.contact .contact-form-wrapper .title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 60px;
  width: 50px;
  height: 1px;
  /* background: #000; */
}

.contact .contact-form-wrapper .form-group .input-field {
  color: var(--darkGrey);
  width: 100%;
  border: 0;
  height: 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
  transition: border-color 0.3s ease;
}

.contact .contact-form-wrapper .form-group .input-field:focus {
  border-bottom: 1px solid #2364d2;
  outline: none;
}

.contact .contact-form-wrapper .form-group .input-field.textarea {
  height: 140px;
  padding-top: 10px;
  resize: none;
}

.contact .contact-form-wrapper .form-group label {
  font-size: 17px;
  line-height: 26px;
  font-weight: 600;
  margin-bottom: 5px;
}

/*===Address Area===*/
.contact .address-area {
  /* background: #2364d2; */
  background: var(--darkGrey);
  padding: 50px 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.081);
  border-radius: 10px;
  color: #fff;
}

.contact .address-area .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: #fff;
  margin-bottom: 23px;
  padding-bottom: 12px;
  position: relative;
}

.comtact .address-area .title::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 50px;
  height: 1px;
  background: #fff;
}

.contact .address-area .title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 60px;
  width: 50px;
  height: 1px;
  background: #fff;
}

.contact .address-area .address-list {
  padding: 22px 0 0;
}

.contact .address-area .address-list li {
  margin-bottom: 25px;
}

.contact .address-area .address-list li p {
  color: #fff;
  padding-left: 30px;
  position: relative;
  margin: 0;
}

.contact .address-area .address-list li p i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 18px;
}

.contact .address-area .social-links li {
  margin-top: 40px;
}

.contact .address-area .social-links li {
  display: inline-block;
}

.contact .address-area .social-links li a {
  color: #fff;
  margin: 0 8px;
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact .address-area .social-links li a:hover {
  color: #dfe9ff;
}

/* ---------- Responsive ---------- */
/* ====================================
   CONTACT SECTION - COMPREHENSIVE FIX
==================================== */
@media (max-width: 991px) {
  .contact {
    padding: 80px 0px;
  }
  
  .contact .section-heading .title {
    font-size: 30px;
  }
  
  .contact .map-wrapper {
    height: 300px;
    margin-bottom: 30px;
  }
  
  .contact .contact-form-wrapper,
  .contact .address-area {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .contact {
    padding: 60px 0px;
  }
  
  .contact .section-heading {
    margin-bottom: 30px;
  }
  
  .contact .section-heading .title {
    font-size: 26px;
  }
  
  .contact .section-heading .text {
    font-size: 15px;
  }
  
  .contact .map-wrapper {
    height: 250px;
    margin-bottom: 25px;
  }
  
  .contact .contact-form-wrapper {
    padding: 35px 20px 20px;
  }
  
  .contact .contact-form-wrapper .form-group .input-field {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .contact .contact-form-wrapper .form-group label {
    font-size: 16px;
  }
  
  .contact .address-area {
    padding: 35px 20px;
  }
  
  .contact .address-area .title {
    font-size: 20px;
  }
  
  .contact .address-area .address-list li {
    margin-bottom: 20px;
  }
  
  .contact .address-area .address-list li p {
    font-size: 14px;
    padding-left: 25px;
  }
  
  .contact .address-area .address-list li p i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .contact .section-heading .title {
    font-size: 22px;
  }
  
  .contact .map-wrapper {
    height: 220px;
  }
  
  .contact .contact-form-wrapper {
    padding: 30px 15px 15px;
  }
  
  .contact .address-area {
    padding: 30px 15px;
  }
}

/*=====Modern Footer With Background====*/
.footer-modern {
  background-color: #ffffff;
  padding: 60px 0 0;
  position: relative;
}

/*=== Top Selection (Brand + CTA) ===*/
.footer-top {
  padding-bottom: 40px;
}

/*Brand Name*/
.brand-name  {
  color: var(--darkGrey);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Brand Tagline */
.brand-tagline {
  color: var(--grey);
  font-size: 16px;
  margin: 0;
}

/*CTA Button*/
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(248, 93, 35, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(248, 93, 35, 0.4);
  color: #ffffff;
}

/* Divider Line */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-Dark), var(--pink), transparent);
  margin-bottom: 40px;
}

/* Main Footer Content */
.footer-main {
  padding-bottom: 80px;
}

/* Column Headings*/
.footer-heading {
  color: var(--darkGrey);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

/* Underline accent for headings*/
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange-Dark), var(--pink));
}

/*--- Footer Links ---*/
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links li a i {
  color: var(--orange-Dark);
  font-size: 18px;
  margin-right:8px;
  transition: transform 0.3s ease;
}

.footer-links li a:hover {
  color: var(--orange-Dark);
  padding-left: 8px;
}

.footer-links li a:hover i {
  transform: translateX(3px);
}

/*--- Contact Info ---*/
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--grey);
  font-size: 15px;
}

.footer-contact li i {
  color: var(--orange-Dark);
  font-size: 18px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact li a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: var(--orange-Dark);
}

/*--- News Letter ---*/
.footer-newsletter-text {
  color: var(--grey);
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-newsletter {
  display: flex;
  margin-bottom: 20px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 15px;
  border: 2px solid #e9ecef;
  border-radius: 25px 0 0 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  border-color: var(--orange-Dark);
}

.newsletter-btn {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 0 25px 25px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(248, 93, 35, 0.3);
}

/*--- Social Links ---*/
.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--orange-Dark);
  color: var(--orange-Dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(248, 93, 35, 0.3);
}

/*--- Footer Bottom ---*/
.footer-bottom {
  background-color: #f8f9fa;
  padding: 25px 0;
  border-top: 1px solid #e9ecef;
}

.copyright-text {
  color: var(--grey);
  font-size: 14px;
  margin: 0;
}

/*--- Legal Links ---*/
.footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.footer-legal li a {
  color: var(--grey);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal li a:hover {
  color: var(--orange-Dark);
}

/* Responsive For Footer Start*/
/* ====PROFESSIONAL RESPONSIVE DESIGN FOR FOOTER SECTION==== */

/* Large Desktop (1200px - 1399px) */
@media (max-width: 1399px) {
  .footer-modern {
    padding: 55px 0 0;
  }
  
  .brand-name {
    font-size: 32px;
  }
  
  .brand-tagline {
    font-size: 15px;
  }
  
  .cta-button {
    padding: 14px 32px;
    font-size: 15px;
  }
  
  .footer-heading {
    font-size: 18px;
  }
  
  .footer-links li a,
  .footer-contact li {
    font-size: 14px;
  }
}

/* Laptop and Small Desktop (992px - 1199px) */
@media (max-width: 1199px) {
  .footer-modern {
    padding: 50px 0 0;
  }
  
  .brand-name {
    font-size: 30px;
  }
  
  .brand-tagline {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .cta-button {
    padding: 13px 30px;
    font-size: 14px;
  }
  
  .footer-top {
    padding-bottom: 35px;
  }
  
  .footer-divider {
    margin-bottom: 35px;
  }
  
  .footer-main {
    padding-bottom: 35px;
  }
  
  .footer-heading {
    font-size: 17px;
    margin-bottom: 18px;
  }
  
  .footer-links li a {
    font-size: 14px;
  }
  
  .footer-contact li {
    font-size: 14px;
    margin-bottom: 13px;
  }
  
  .social-link {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }
}

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .footer-modern {
    padding: 45px 0 0;
  }
  
  /* Top Section - LEFT ALIGNED */
  .footer-top {
    padding-bottom: 30px;
  }
  
  .footer-top .col-lg-6 {
    text-align: left !important;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .brand-name {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .brand-tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .footer-cta {
    text-align: left !important;
    margin-top: 15px;
  }
  
  .cta-button {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  /* Main Content - LEFT ALIGNED */
  .footer-divider {
    margin-bottom: 30px;
  }
  
  .footer-main {
    padding-bottom: 30px;
  }
  
  .footer-main .col-md-6 {
    margin-bottom: 30px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-heading {
    font-size: 17px;
    margin-bottom: 16px;
    text-align: left;
  }
  
  .footer-heading::after {
    left: 0;
    transform: none;
  }
  
  .footer-links,
  .footer-contact {
    text-align: left;
  }
  
  .footer-links li a {
    font-size: 14px;
  }
  
  .footer-contact li {
    font-size: 14px;
  }
  
  /* Newsletter - LEFT ALIGNED */
  .footer-newsletter {
    max-width: 100%;
  }
  
  .footer-newsletter-text {
    font-size: 14px;
    text-align: left;
  }
  
  .footer-social {
    justify-content: flex-start;
    gap: 10px;
  }
  
  /* Bottom Section - LEFT ALIGNED */
  .footer-bottom {
    padding: 20px 0;
  }
  
  .footer-bottom .col-md-6 {
    text-align: left !important;
  }
  
  .copyright-text {
    margin-bottom: 12px;
    font-size: 13px;
    text-align: left;
  }
  
  .footer-legal {
    justify-content: flex-start;
    margin-top: 10px;
    gap: 15px;
  }
}

/* Small Tablet and Large Phone (576px - 767px) */
@media (max-width: 767px) {
  .footer-modern {
    padding: 40px 15px 0;
  }
  
  /* Top Section - LEFT ALIGNED */
  .footer-top {
    padding-bottom: 25px;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .brand-name {
    font-size: 26px;
    margin-bottom: 8px;
  }
  
  .brand-tagline {
    font-size: 13px;
    line-height: 1.6;
  }
  
  .footer-cta {
    text-align: left !important;
    margin-top: 15px;
  }
  
  .cta-button {
    padding: 11px 25px;
    font-size: 13px;
    display: inline-block;
  }
  
  /* Main Content - LEFT ALIGNED */
  .footer-divider {
    margin-bottom: 28px;
  }
  
  .footer-main {
    padding-bottom: 25px;
  }
  
  .footer-main .col-md-6,
  .footer-main .col-lg-3 {
    margin-bottom: 28px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-heading {
    font-size: 16px;
    margin-bottom: 14px;
    padding-bottom: 10px;
    text-align: left;
  }
  
  .footer-heading::after {
    left: 0;
    transform: none;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
  
  .footer-links li a {
    font-size: 13px;
    justify-content: flex-start;
  }
  
  .footer-links li a i {
    font-size: 17px;
  }
  
  .footer-contact li {
    font-size: 13px;
    margin-bottom: 11px;
  }
  
  .footer-contact li i {
    font-size: 17px;
  }
  
  /* Newsletter - LEFT ALIGNED */
  .footer-newsletter-text {
    font-size: 13px;
    margin-bottom: 13px;
    text-align: left;
  }
  
  .newsletter-input {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .newsletter-btn {
    padding: 10px 18px;
  }
  
  .footer-social {
    gap: 10px;
    justify-content: flex-start;
  }
  
  .social-link {
    width: 37px;
    height: 37px;
    font-size: 15px;
  }
  
  /* Bottom Section - LEFT ALIGNED */
  .footer-bottom {
    padding: 18px 0;
  }
  
  .footer-bottom .row {
    text-align: left;
  }
  
  .copyright-text {
    font-size: 12px;
    margin-bottom: 10px;
    text-align: left;
  }
  
  .footer-legal {
    gap: 12px;
    justify-content: flex-start;
  }
  
  .footer-legal li a {
    font-size: 12px;
  }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .footer-modern {
    padding: 35px 15px 0;
  }
  
  /* Top Section - LEFT ALIGNED */
  .footer-top {
    padding-bottom: 22px;
  }
  
  .footer-brand {
    text-align: left;
  }
  
  .brand-name {
    font-size: 24px;
    margin-bottom: 8px;
    text-align: left;
  }
  
  .brand-tagline {
    font-size: 12px;
    line-height: 1.6;
    text-align: left;
  }
  
  .footer-cta {
    text-align: left !important;
    margin-top: 12px;
  }
  
  .cta-button {
    padding: 10px 22px;
    font-size: 12px;
    display: inline-block;
  }
  
  /* Main Content - LEFT ALIGNED */
  .footer-divider {
    margin-bottom: 25px;
  }
  
  .footer-main {
    padding-bottom: 22px;
  }
  
  .footer-main .col-md-6,
  .footer-main .col-lg-3 {
    margin-bottom: 25px;
  }
  
  .footer-column {
    text-align: left;
  }
  
  .footer-heading {
    font-size: 15px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    text-align: left;
  }
  
  .footer-heading::after {
    left: 0;
    transform: none;
  }
  
  .footer-links {
    text-align: left;
  }
  
  .footer-links li {
    margin-bottom: 9px;
  }
  
  .footer-links li a {
    font-size: 12px;
  }
  
  .footer-links li a i {
    font-size: 16px;
    margin-right: 6px;
  }
  
  .footer-contact {
    text-align: left;
  }
  
  .footer-contact li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  
  .footer-contact li i {
    font-size: 16px;
    margin-right: 10px;
  }
  
  /* Newsletter - LEFT ALIGNED */
  .footer-newsletter-text {
    font-size: 12px;
    margin-bottom: 12px;
    text-align: left;
  }
  
  .footer-newsletter {
    flex-direction: row;
    max-width: 100%;
    margin-bottom: 18px;
  }
  
  .newsletter-input {
    padding: 10px 15px;
    font-size: 12px;
    border-radius: 25px 0 0 25px;
  }
  
  .newsletter-btn {
    padding: 10px 18px;
    border-radius: 0 25px 25px 0;
  }
  
  .footer-social {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 12px;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  /* Bottom Section - LEFT ALIGNED */
  .footer-bottom {
    padding: 16px 0;
  }
  
  .footer-bottom .row {
    text-align: left;
  }
  
  .copyright-text {
    font-size: 11px;
    text-align: left;
    margin-bottom: 10px;
    line-height: 1.5;
  }
  
  .footer-legal {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
  }
  
  .footer-legal li a {
    font-size: 11px;
  }
}

/* Small Mobile Phones (375px - 479px) */
@media (max-width: 479px) {
  .footer-modern {
    padding: 30px 12px 0;
  }
  
  .brand-name {
    font-size: 22px;
    margin-bottom: 6px;
  }
  
  .brand-tagline {
    font-size: 11px;
  }
  
  .cta-button {
    padding: 9px 20px;
    font-size: 11px;
  }
  
  .footer-top {
    padding-bottom: 20px;
  }
  
  .footer-divider {
    margin-bottom: 22px;
  }
  
  .footer-main {
    padding-bottom: 20px;
  }
  
  .footer-main .col-md-6,
  .footer-main .col-lg-3 {
    margin-bottom: 22px;
  }
  
  .footer-heading {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  .footer-heading::after {
    width: 35px;
  }
  
  .footer-links li a,
  .footer-contact li {
    font-size: 11px;
  }
  
  .footer-links li a i,
  .footer-contact li i {
    font-size: 15px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    font-size: 11px;
    padding: 9px 14px;
  }
  
  .social-link {
    width: 33px;
    height: 33px;
    font-size: 13px;
  }
  
  .footer-bottom {
    padding: 14px 0;
  }
  
  .copyright-text,
  .footer-legal li a {
    font-size: 10px;
  }
}

/* Extra Small Devices (320px - 374px) */
@media (max-width: 374px) {
  .footer-modern {
    padding: 28px 10px 0;
  }
  
  .brand-name {
    font-size: 20px;
    margin-bottom: 6px;
  }
  
  .brand-tagline {
    font-size: 10px;
  }
  
  .cta-button {
    padding: 8px 18px;
    font-size: 10px;
  }
  
  .footer-heading {
    font-size: 13px;
  }
  
  .footer-heading::after {
    width: 30px;
  }
  
  .footer-links li a,
  .footer-contact li {
    font-size: 10px;
  }
  
  .footer-links li a i,
  .footer-contact li i {
    font-size: 14px;
  }
  
  .newsletter-input,
  .newsletter-btn {
    font-size: 10px;
    padding: 8px 12px;
  }
  
  .social-link {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
  
  .copyright-text,
  .footer-legal li a {
    font-size: 9px;
  }
}

/* Very Small Devices (below 320px) */
@media (max-width: 319px) {
  .footer-modern {
    padding: 25px 8px 0;
  }
  
  .brand-name {
    font-size: 18px;
  }
  
  .brand-tagline {
    font-size: 9px;
  }
  
  .cta-button {
    padding: 8px 16px;
    font-size: 9px;
  }
  
  .footer-heading {
    font-size: 12px;
  }
  
  .footer-links li a,
  .footer-contact li {
    font-size: 9px;
  }
  
  .social-link {
    width: 30px;
    height: 30px;
    font-size: 11px;
  }
}

/* Landscape Orientation Fix */
@media (max-height: 500px) and (orientation: landscape) {
  .footer-modern {
    padding: 25px 15px 0;
  }
  
  .footer-top,
  .footer-main {
    padding-bottom: 20px;
  }
  
  .footer-column {
    margin-bottom: 18px;
  }
  
  .footer-main .col-md-6,
  .footer-main .col-lg-3 {
    margin-bottom: 18px;
  }
}
/*Responsive For Footer End*/


/*--- Back To Top Button ---*/
.bottomtotop i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transform: rotate(-90deg);
  bottom: 15px;
  right: 15px;
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.2);
  z-index: 999;
  -webkit-transition: all linear 0.3s;
  -o-transition: all linear 0.3s;
  transition: all linear 0.3s;
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
}

.bottomtotop i:hover {
  background-color: var(--pink);
}


/*===Services Design===*/ 
/*Section background*/
#services .section {
  background-color: #ffffff;
  padding: 80px 0px;
}

.section {
  background-color: #fff;
}

/*Section Titles*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  /* color: var(--orange-Dark); */
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 100px;
  height: 3px;
  background: var(--pink);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.services {
  padding-top: 120px;
  padding-bottom: 30px;
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  /* color: orangered; */
  background: linear-gradient(135deg, var(--orange-Dark), var(--pink));
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services .services-headline .services-title {
  color: var(--darkGrey);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 25px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  color: var(--grey);
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  /* margin-bottom: 30px; */
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  /* height: 460px; */
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  
}

.services .services-grid {
  margin-left: 50px;
  position: relative;
  z-index: 1;
}

.services .services-grid::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background: linear-gradient(
    135deg,
    rgb(230, 226, 226)
    /* rgba(35, 35, 36, 0.05) 0%, */
    /* rgba(32, 32, 33, 0.05) 100% */
  );
  border-radius: 30px;
  z-index: -1;
  box-shadow: 0 20px 60px rgba(35, 100, 210, 0.05);
  transition: all 0.5s ease;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--darkGrey);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 30px;
  padding: 25px 15px;
  /* padding: 10px 10px 10px 10px; */
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
  z-index: 0;
}

.service-card:hover::before {
  left: 100%;
}

/* Add subtle life + shadow on hover */
.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 10px 30px rgba(248, 93, 35, 0.15);
}

/* Gradient border glow effect */
.service-card:hover {
  border: 1px solid rgba(35, 100, 210, 0.4);
  background: linear-gradient(
    135deg,
    rgba(35, 100, 210, 0.05),
    rgba(30, 55, 90, 0.5)
  ),
  #fff;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .services-card {
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: var(--orange-Dark);
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: #ffffff;
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: #ffffff;
  transform: scale(0.95);
} 

.services .service-card:hover .service-content .read-more-btn {
  background-color: color-mix(in srgb, #ffffff, transparent, 84%);
  color: #ffffff;
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--orange-Dark);
  transition: all 0.3s ease; 
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--darkGrey);
  font-weight: 700;
  font-size: 22px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.services .service-content .service-info p {
  color: var(--grey);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  /* color: var(--orange-Dark); */
  color: #ffffff;
  background-color: var(--darkGrey);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

.center-card {
  margin-left: auto;
  margin-right: auto;
}
/*Services Section End*/

/* ========================================
   PROFESSIONAL RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktops (1400px and above) */
@media (min-width: 1400px) {
  .services {
    padding-top: 140px;
    padding-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 42px;
  }
  
  .services .services-headline .services-title {
    font-size: 2.8rem;
  }
  
  .services .services-grid {
    margin-left: 60px;
  }
}

/* Desktop to Laptop (1200px - 1399px) */
@media (max-width: 1399px) {
  .services .services-grid {
    margin-left: 40px;
  }
  
  .services .services-headline .services-title {
    font-size: 2.3rem;
  }
}

/* Laptop to Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .services {
    padding-top: 100px;
  }
  
  .section-title {
    padding-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .services .services-headline .services-title {
    font-size: 2.2rem;
  }
  
  .services .services-grid {
    margin-left: 30px;
  }
  
  .services .services-grid::before {
    top: -20px;
    left: -20px;
    width: calc(100% + 40px);
    height: calc(100% + 40px);
  }
  
  .service-card {
    padding: 20px 12px;
  }
}

/* Tablet Portrait & Below (991px and below) */
@media (max-width: 991px) {
  #services .section {
    padding: 60px 0px;
  }
  
  .services {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  
  .section-title {
    padding-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 30px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  
  .section-title h2::after {
    width: 80px;
    height: 2px;
  }
  
  .services .services-headline .services-subtitle {
    font-size: 16px;
    margin-bottom: 12px;
  }
  
  .services .services-headline .services-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .services .services-description {
    margin-bottom: 25px;
  }
  
  .services .services-description p {
    font-size: 1rem;
  }
  
  .services .services-image-container {
    margin-bottom: 40px;
  }
  
  .services .services-grid {
    margin-left: 0;
    margin-top: 50px;
  }
  
  .services .services-grid::before {
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border-radius: 20px;
  }
  
  .service-card {
    padding: 25px 20px;
    border-radius: 25px;
    margin-bottom: 20px;
  }
  
  .services .service-content .service-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 42px;
  }
  
  .services .service-content .service-info h3 {
    font-size: 1.3rem;
    margin: 12px 0;
  }
  
  .services .service-content .service-info h3 a {
    font-size: 20px;
  }
  
  .services .service-content .service-info p {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .services .service-content .service-action {
    margin-top: 15px;
  }
}

/* Tablet Portrait (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .services .services-row .row > .col-lg-4,
  .services .services-row .row > .col-lg-8 {
    padding-left: 25px;
    padding-right: 25px;
  }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {
  #services .section {
    padding: 50px 0px;
  }
  
  .services {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  
  .section-title {
    padding-bottom: 35px;
  }
  
  .section-title h2 {
    font-size: 26px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    letter-spacing: 0.5px;
  }
  
  .section-title h2::after {
    width: 60px;
  }
  
  .services .services-headline .services-subtitle {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .services .services-headline .services-title {
    font-size: 1.75rem;
    margin-bottom: 18px;
  }
  
  .services .services-description {
    margin-bottom: 20px;
  }
  
  .services .services-description p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .services .services-image-container {
    margin-bottom: 30px;
  }
  
  .services .services-image-container .services-image {
    height: 280px;
    border-radius: 15px;
  }
  
  .services .services-grid {
    margin-top: 40px;
  }
  
  .services .services-grid::before {
    top: -12px;
    left: -12px;
    width: calc(100% + 24px);
    height: calc(100% + 24px);
    border-radius: 18px;
  }
  
  .service-card {
    padding: 22px 18px;
    border-radius: 20px;
    margin-bottom: 18px;
  }
  
  .service-card:hover {
    transform: translateY(-8px) scale(1.01);
  }
  
  .services .service-content .service-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 38px;
  }
  
  .services .service-content .service-info h3 {
    font-size: 1.2rem;
    margin: 10px 0;
  }
  
  .services .service-content .service-info h3 a {
    font-size: 18px;
  }
  
  .services .service-content .service-info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .services .service-content .service-action {
    margin-top: 12px;
  }
  
  .services .service-content .service-action .read-more-btn {
    padding: 7px 14px;
    font-size: 0.9rem;
  }
}

/* Mobile Portrait (480px - 575px) */
@media (max-width: 575px) {
  #services .section {
    padding: 40px 0px;
  }
  
  .services {
    padding-top: 50px;
    padding-bottom: 25px;
  }
  
  .section-title {
    padding-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 24px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
  
  .section-title h2::after {
    width: 50px;
  }
  
  .services .services-headline .services-subtitle {
    font-size: 14px;
  }
  
  .services .services-headline .services-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .services .services-description p {
    font-size: 0.9rem;
  }
  
  .services .services-image-container .services-image {
    height: 240px;
    border-radius: 12px;
  }
  
  .services .services-grid {
    margin-top: 35px;
  }
  
  .services .services-grid::before {
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 15px;
  }
  
  .service-card {
    padding: 20px 15px;
    border-radius: 18px;
    margin-bottom: 15px;
  }
  
  .services .service-content .service-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 34px;
  }
  
  .services .service-content .service-info h3 {
    font-size: 1.1rem;
    margin: 8px 0;
  }
  
  .services .service-content .service-info h3 a {
    font-size: 17px;
  }
  
  .services .service-content .service-info p {
    font-size: 0.85rem;
  }
  
  .services .service-content .service-action .read-more-btn {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
  #services .section {
    padding: 35px 0px;
  }
  
  .services {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .section-title {
    padding-bottom: 25px;
  }
  
  .section-title h2 {
    font-size: 22px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  
  .services .services-headline .services-title {
    font-size: 1.5rem;
  }
  
  .services .services-description p {
    font-size: 0.85rem;
  }
  
  .services .services-image-container .services-image {
    height: 200px;
  }
  
  .services .services-grid {
    margin-top: 30px;
  }
  
  .service-card {
    padding: 18px 12px;
    border-radius: 15px;
  }
  
  .services .service-content .service-icon {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 30px;
  }
  
  .services .service-content .service-info h3 {
    font-size: 1rem;
  }
  
  .services .service-content .service-info h3 a {
    font-size: 16px;
  }
  
  .services .service-content .service-info p {
    font-size: 0.8rem;
    line-height: 1.4;
  }
  
  .services .service-content .service-action .read-more-btn {
    padding: 6px 10px;
    font-size: 0.8rem;
  }
}

/* Extra Small Mobile (below 360px) */
@media (max-width: 359px) {
  .section-title h2 {
    font-size: 20px;
  }
  
  .services .services-headline .services-title {
    font-size: 1.4rem;
  }
  
  .services .services-image-container .services-image {
    height: 180px;
  }
  
  .service-card {
    padding: 15px 10px;
  }
  
  .services .service-content .service-icon {
    width: 42px;
    height: 42px;
    line-height: 42px;
    font-size: 28px;
  }
  
  .services .service-content .service-info h3 a {
    font-size: 15px;
  }
  
  .services .service-content .service-info p {
    font-size: 0.75rem;
  }
}

/* Landscape Orientation Fixes */
@media (max-height: 500px) and (orientation: landscape) {
  .services {
    padding-top: 40px;
    padding-bottom: 20px;
  }
  
  .section-title {
    padding-bottom: 25px;
  }
  
  .services .services-image-container .services-image {
    height: 220px;
  }
  
  .service-card {
    padding: 15px 12px;
  }
}

/*Services Section End*/


/*Skill & Tools Section Start*/
.skills-section {
  /* background: rgb(187, 187, 187); */
  background: #fff;
  padding: 90px 0;
  overflow: hidden;
  position: relative;
}

.section-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--darkGrey);
  margin-bottom: 12px;
}

.section-subheading {
  text-align: center;
  color: #605e5e;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

/*Slider Base*/
.logo-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 40px;
}

.logo-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/*Top row scrolls left, bottom scrolls right*/
.slider-top .logo-track {
  animation: slideLeft 40s linear infinite;
}

.slider-bottom .logo-track {
  animation: slideRight 45s linear infinite;
}

.logo-track:hover {
  animation-play-state: paused;
}

/*===Cards===*/
.logo-card {
  flex: 0 0 auto;
  width: 160px;
  height: 150px;
  margin: 0 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  box-shadow: 0 6px 15px rgba(35, 100, 219, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(6px);
  border: 1.5px solid var(--darkGrey);
  position: relative;
}

.logo-card:hover {
  transform: translateY(-4px) scale(0.95);
  background: #ffffff;
  box-shadow: var(--blue-LightDark);
  border-color: var(--orange-Dark);
}

/*Logo Styling*/
.logo-card img {
  width: 80px;
  height: 80px;
  opacity: 0.8;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 3px rgba(35, 100, 210, 0.2));
}

/*===Keyframes===*/
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes slideRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*===Responsive Design===*/
/* ====PROFESSIONAL RESPONSIVE DESIGN FOR SKILLS SECTION==== */

/* Large Tablets and Small Laptops (1024px - 1200px) */
@media (max-width: 1200px) {
  .skills-section {
    padding: 80px 0;
  }
  
  .section-heading {
    font-size: 2.3rem;
    margin-bottom: 10px;
  }
  
  .section-subheading {
    font-size: 1.05rem;
    margin-bottom: 50px;
    padding: 0 20px;
  }
  
  .logo-slider {
    margin-bottom: 35px;
  }
  
  .logo-card {
    width: 145px;
    height: 135px;
    margin: 0 20px;
  }
  
  .logo-card img {
    width: 75px;
    height: 75px;
  }
  
  .slider-top .logo-track {
    animation: slideLeft 35s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 40s linear infinite;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .skills-section {
    padding: 70px 0;
  }
  
  .section-heading {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
  
  .section-subheading {
    font-size: 1rem;
    margin-bottom: 45px;
    padding: 0 25px;
  }
  
  .logo-slider {
    margin-bottom: 30px;
  }
  
  .logo-card {
    width: 130px;
    height: 120px;
    margin: 0 18px;
    border-radius: 15px;
  }
  
  .logo-card img {
    width: 70px;
    height: 70px;
  }
  
  .slider-top .logo-track {
    animation: slideLeft 32s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 37s linear infinite;
  }
}

/* Small Tablets and Large Phones (576px - 767px) */
@media (max-width: 767px) {
  .skills-section {
    padding: 60px 0;
  }
  
  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .section-subheading {
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 0 20px;
    line-height: 1.6;
  }
  
  .logo-slider {
    margin-bottom: 25px;
  }
  
  .logo-card {
    width: 110px;
    height: 105px;
    margin: 0 12px;
    border-radius: 12px;
    border: 1.2px solid var(--darkGrey);
  }
  
  .logo-card img {
    width: 60px;
    height: 60px;
  }
  
  .logo-card:hover {
    transform: translateY(-3px) scale(0.97);
  }
  
  .slider-top .logo-track {
    animation: slideLeft 28s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 33s linear infinite;
  }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 575px) {
  .skills-section {
    padding: 50px 0;
  }
  
  .section-heading {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
  
  .section-subheading {
    font-size: 0.9rem;
    margin-bottom: 35px;
    padding: 0 15px;
    line-height: 1.5;
  }
  
  .logo-slider {
    margin-bottom: 20px;
  }
  
  .logo-card {
    width: 95px;
    height: 90px;
    margin: 0 10px;
    border-radius: 10px;
  }
  
  .logo-card img {
    width: 52px;
    height: 52px;
  }
  
  .slider-top .logo-track {
    animation: slideLeft 25s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 30s linear infinite;
  }
}

/* Small Mobile Phones (375px - 479px) */
@media (max-width: 479px) {
  .skills-section {
    padding: 45px 0;
  }
  
  .section-heading {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }
  
  .section-subheading {
    font-size: 0.85rem;
    margin-bottom: 30px;
    padding: 0 12px;
  }
  
  .logo-slider {
    margin-bottom: 18px;
  }
  
  .logo-card {
    width: 85px;
    height: 82px;
    margin: 0 8px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(35, 100, 219, 0.12);
  }
  
  .logo-card img {
    width: 45px;
    height: 45px;
  }
  
  .logo-card:hover {
    transform: translateY(-2px) scale(0.98);
  }
  
  .slider-top .logo-track {
    animation: slideLeft 22s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 27s linear infinite;
  }
}

/* Extra Small Mobile Phones (320px - 374px) */
@media (max-width: 374px) {
  .skills-section {
    padding: 40px 0;
  }
  
  .section-heading {
    font-size: 1.25rem;
    margin-bottom: 6px;
  }
  
  .section-subheading {
    font-size: 0.8rem;
    margin-bottom: 28px;
    padding: 0 10px;
    line-height: 1.4;
  }
  
  .logo-slider {
    margin-bottom: 15px;
  }
  
  .logo-card {
    width: 75px;
    height: 72px;
    margin: 0 6px;
    border-radius: 8px;
  }
  
  .logo-card img {
    width: 40px;
    height: 40px;
  }
  
  .slider-top .logo-track {
    animation: slideLeft 20s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 25s linear infinite;
  }
}

/* Very Small Devices (below 320px) */
@media (max-width: 319px) {
  .skills-section {
    padding: 35px 0;
  }
  
  .section-heading {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }
  
  .section-subheading {
    font-size: 0.75rem;
    margin-bottom: 25px;
    padding: 0 8px;
  }
  
  .logo-slider {
    margin-bottom: 12px;
  }
  
  .logo-card {
    width: 68px;
    height: 65px;
    margin: 0 5px;
    border-radius: 6px;
  }
  
  .logo-card img {
    width: 36px;
    height: 36px;
  }
  
  .slider-top .logo-track {
    animation: slideLeft 18s linear infinite;
  }
  
  .slider-bottom .logo-track {
    animation: slideRight 23s linear infinite;
  }
}
/*Skill & Tools Section End*/


/* ====================================
   From About us FEATURES MODERN SECTION - IMAGE FIX
==================================== */
@media (max-width: 1199px) {
  .showcase-content .image-about-wrapper .main-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    left: 0;
    position: static;
    margin: 40px auto 0;
    display: block;
  }
  
  .features-grid {
    margin-bottom: 50px;
  }
}

@media (max-width: 991px) {
  .features-modern {
    padding: 80px 0;
  }
  
  .section-badge {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-description {
    font-size: 17px;
  }
  
  .features-grid {
    margin-bottom: 40px;
  }
  
  .feature-card {
    padding: 40px 30px;
    margin-bottom: 25px;
  }
  
  .showcase-content {
    padding-right: 0;
    text-align: center;
  }
  
  .showcase-content .image-about-wrapper .main-image {
    max-width: 400px;
    margin-top: 30px;
  }
  
  .content-badge {
    margin: 0 auto 20px;
  }
  
  .content-heading {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .features-modern {
    padding: 60px 0;
  }
  
  .section-badge {
    font-size: 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .section-description {
    font-size: 15px;
  }
  
  .feature-card {
    padding: 30px 20px;
    margin-bottom: 20px;
  }
  
  .icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .icon-wrapper i {
    font-size: 32px;
  }
  
  .feature-title {
    font-size: 26px;
  }
  
  .feature-text {
    font-size: 14px;
  }
  
  .content-heading {
    font-size: 26px;
  }
  
  .content-description {
    font-size: 15px;
  }
  
  .showcase-content .image-about-wrapper .main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 24px;
  }
  
  .feature-card {
    padding: 25px 15px;
  }
  
  .icon-wrapper {
    width: 60px;
    height: 60px;
  }
  
  .icon-wrapper i {
    font-size: 28px;
  }
  
  .feature-title {
    font-size: 22px;
  }
  
  .content-heading {
    font-size: 22px;
  }
}

/* ====================================
   From About us FEATURES MODERN SECTION - IMAGE FIX End
==================================== */


/* ====================================
   GLOBAL RESPONSIVE UTILITIES
==================================== */
@media (max-width: 767px) {
  h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 32px;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 22px;
  }
  
  h4 {
    font-size: 19px;
  }
  
  p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 30px;
  }
  
  h2 {
    font-size: 26px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* ====================================
   BACK TO TOP BUTTON - MOBILE FIX
==================================== */
@media (max-width: 767px) {
  .bottomtotop i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .bottomtotop i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    bottom: 15px;
    right: 15px;
  }
}


/* ====================================
   SECTION HEADING - GLOBAL FIX
==================================== */
@media (max-width: 991px) {
  .section-heading {
    margin-bottom: 40px;
  }
  
  .section-heading .title {
    font-size: 32px;
  }
  
  .section-heading .subtitle {
    font-size: 16px;
  }
  
  .section-heading .text {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 30px;
  }
  
  .section-heading .title {
    font-size: 26px;
  }
  
  .section-heading .subtitle {
    font-size: 15px;
  }
  
  .section-heading .text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-heading .title {
    font-size: 22px;
  }
}

/* ====================================
   LANDSCAPE ORIENTATION FIX
==================================== */
@media (max-height: 600px) and (orientation: landscape) {
  .hero-area {
    padding: 140px 0px 60px;
  }
  
  .hero-area .left-content .content .title {
    font-size: 32px;
    line-height: 42px;
  }
  
  .hero-area .left-content .content .text {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ====================================
   FIX OVERFLOWING CONTENT
==================================== */
@media (max-width: 991px) {
  body {
    overflow-x: hidden;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}