body {
  overflow-x: hidden !important;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.main-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-8 {
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
  padding: 0 15px;
}

.text-center {
  text-align: center;
}

.margin-bottom-5 {
  margin-bottom: 3rem;
}

.margin-bottom-4 {
  margin-bottom: 1.5rem;
}

.bold-text {
  font-weight: bold;
}

.uppercase-text {
  text-transform: uppercase;
}

.display-block {
  display: block;
}

.muted-text {
  color: #6c757d;
}

/* Services Section Styles */

.services-container {
  background-color: #f8f9fa;
  padding: 3rem 0;
}

.services-container h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.services-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Card Styles */

.service-carda {
  flex: 0 0 calc(33.333% - 30px);
  max-width: calc(33.333% - 30px);
  margin: 0 15px 30px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-carda:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1.5rem;
}

.icon-container {
  width: 70px;
  height: 70px;
  background-color: #f24259;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.icon-container i {
  font-size: 3rem;
  color: white;
}

.service-carda h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-carda p {
  color: #000000;
  margin-bottom: 0;
}

/* Media Queries */

@media (max-width: 1200px) {
  .service-carda {
    flex: 0 0 calc(33.333% - 30px);
    max-width: calc(33.333% - 30px);
  }
}

@media (max-width: 992px) {
  .service-carda {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .service-carda {
    flex: 0 0 calc(50% - 30px);
    max-width: calc(50% - 30px);
  }

  .icon-container {
    width: 60px;
    height: 60px;
  }

  .icon-container i {
    font-size: 2.5rem;
  }
}
.about-bio-padding {
  margin-top: -100px; /* default for desktop */
}
@media (max-width: 768px) {
  .about-bio-padding {
    margin-top: 100px; /* positive margin for mobile view */
  }
}
@media (max-width: 576px) {
  .service-carda {
    flex: 0 0 100%;
    max-width: 90%;
  }

  .icon-container {
    width: 50px;
    height: 50px;
  }

  .icon-container i {
    font-size: 2rem;
  }
}

/* Media Services Section */

.media-services-section {
  background-color: #ffffff;
  padding: 3rem 0;
}

.media-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}

.flex-row-media {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}

.media-card {
  flex: 0 0 calc(20% - 20px);
  max-width: calc(20% - 20px);
  margin: 10px;
  background-color: #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.media-card-content {
  padding: 1.2rem;
  text-align: center;
}

.media-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Responsive Layouts */

@media (max-width: 1200px) {
  .media-card {
    flex: 0 0 calc(25% - 20px);
    max-width: calc(25% - 20px);
  }
}

@media (max-width: 992px) {
  .media-card {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
  }
}

@media (max-width: 768px) {
  .media-card {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .media-card {
    flex: 0 0 100%;
    max-width: 95%;
    /* margin-right: 50px; */
  }
}

.video-description .desc-item {
  transition: all 0.3s ease;
}

.navbar-toggler i {
  font-size: 1.5rem;
  cursor: pointer;
}

/* Custom Gap Between Cards */

.row {
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px !important; */
  /* Adds spacing between the cards */
}

/* Media Query for Responsive Cards */

@media (max-width: 768px) {
  .col-lg-6 {
    flex: 0 0 100%;
    /* Stacks the cards vertically */
    max-width: 100%;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.2);
}

/* Image wrapper styles */

.img-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}

/* Image styles */

.img-wrapper img {
  width: 100%;
  height: 100%;

  transition: transform 0.3s;
}

/* Base styles (for desktops and large screens) */
.img-wrapper {
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: 8px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

/* Tablets (up to 992px) */
@media (max-width: 992px) {
  .img-wrapper {
    height: 350px;
    border-radius: 6px;
  }
}

/* Mobile devices (up to 768px) */
@media (max-width: 768px) {
  .img-wrapper {
    height: 350px;
    border-radius: 5px;
  }
}

/* Small mobile devices (up to 480px) */
@media (max-width: 480px) {
  .img-wrapper {
    height: 500px;
    object-position: top;
    margin-bottom: 15px;
    border-radius: 4px;
  }
}

/* Hover effect to scale image */

.img-wrapper:hover img {
  transform: scale(1.05);
}

/* Hide additional images initially */

.more-image {
  display: none;
}

/* Add gap between images */

.row.g-3 {
  gap: 10px;
  /* Adjust gap between images (10px or 15px) */
}

/* Media query for responsiveness */

@media (max-width: 768px) {
  .col-md-3 {
    flex: 0 0 100%;
    /* Ensure images take full width on smaller screens */
    max-width: 100%;
  }
}

.navbar .nav-link.active {
  color: #f24259 !important;
  border-bottom: 2px solid #f24259;
}

.img-about {
  position: relative;
  height: 600px !important;
  border-radius: 20px;
}

.img-about .img {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
}

.icon-boxa {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 2;
}

.icon-group {
  display: flex;
  gap: 15px;
}

.icon-boxa div > div {
  /* background: #f24259; */
  backdrop-filter: blur(10px);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.icon-boxa a {
  color: white;
  font-size: 0.7rem;
}

.icon-boxa div > div:hover {
  transform: scale(1.15);
}

.interest-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  border-radius: 0 0 20px 20px;
}

.interest-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.interest-wrap:hover {
  transform: translateY(-3px);
}

.interest-wrap .icon {
  background: #f24259;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: white;
}

.interest-wrap .text {
  font-size: 14px;
  color: white;
  text-align: left;
}

.heading-section h2 {
  font-weight: 700;
  color: #222;
}




.heading-section .subheading {
  font-size: 14px;
  color: #f24259;
  text-transform: uppercase;
  letter-spacing: 2px;
}


.my-interest {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.my-interest .interest-wrap {
  margin-bottom: 10px;
}

/* ✅ Responsive fix for interest icons */

@media (max-width: 768px) {
  .interest-footer {
    grid-template-columns: repeat(3, 1fr);
    padding: 10px;
    gap: 10px;
  }

  .interest-wrap .text {
    font-size: 12px;
  }

  /* ✅ Responsive padding for About Me */
  .about-bio-padding {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

.col-md-6.col-lg-5.bg-light {
  border: 0.4px solid rgba(0, 0, 0, 0.014);
  height: 500px;
  /* or any height you prefer */
  overflow: hidden;
}

.show-reel-text {
  position: absolute;
  left: 70% !important;
  top: 77% !important;
  color: white;
  font-size: 1.9rem;
}

.carousel-item {
  position: relative;
}

@media (max-width: 575.98px) {
  .show-reel-text {
    position: absolute;
    left: 80% !important;
    top: 65% !important;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem !important;
    text-align: center;
  }
}

.cards-container {
  display: flex;
  flex-wrap: wrap;
  /* height: 200px !important; */
  /* gap: 20px !important; */
  /* This adds gaps between the cards */
  justify-content: center;
}

.card {
  color: black !important;
  background-color: white !important;
  flex: 1 1 calc(50% - 20px);
  /* This makes the cards take up half the width minus the gap */
  max-width: calc(50% - 20px);
  /* This sets the maximum width of the cards */
  margin-bottom: 20px;
  border: none !important;
  /* This adds a gap at the bottom of each card */
  height: 170px !important;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.1);
  /* This sets the height of the cards */
  /* box-sizing: border-box; */
  /* This ensures padding and border are included in the width */
}

.card:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  /* Slightly stronger shadow on hover */
}

.cardaa {
  margin-left: 10px !important;
}

@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
    height: 100px !important;
    /* This makes the cards full width on small screens */
    max-width: 100%;
  }
}

/* Responsive only on small devices (phones less than 576px) */
/* Base styles for larger screens (default layout) */
.cardaa {
  display: flex;
  flex-direction: row;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-right: 0.5rem;
}

.cardaa > div {
  width: 50%;
  height: 100%;
}

.cardaa img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

@media (max-width: 575.98px) {
  .cardaa {
    display: flex !important;
    flex-direction: column !important;
    /* vertical stack */
    height: 350px !important;
    /* fixed height */
    overflow: hidden;
  }

  /* Override Bootstrap width classes */
  .cardaa > div {
    width: 100% !important;
    height: 340px !important;
  }

  /* Image container height */
  .cardaa > div:first-child {
    height: 60% !important;
    /* order is same, image is first */
  }

  /* Image fills container */
  .cardaa img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
  }

  /* Text container height */
  .cardaa .p-2 {
    height: 40% !important;
    overflow-y: hidden;
    background-color: transparent;
    /* remove if needed */
  }
}

/* Default styles (already in your HTML) will apply to large screens */

/* Medium Devices (Tablets, 768px and down) */
@media (max-width: 768px) {
  .ftco-hireme .row {
    flex-direction: column;
    /* text-align: center; */
    text-align: left !important;
  }

  .ftco-hireme .col-md-8,
  .ftco-hireme .col-md-4 {
    width: 100%;
    justify-content: center !important;
    /* text-align: center; */
    text-align: left !important;
  }

  .ftco-hireme img {
    max-width: 250px;
    margin: 20px auto 0;
  }

  .ftco-hireme h2 {
    font-size: 24px;
  }

  .ftco-hireme p {
    font-size: 16px;
  }
}

/* Small Devices (Mobiles, 480px and down) */
@media (max-width: 480px) {
  .ftco-hireme h2 {
    font-size: 20px;
  }

  .ftco-hireme p {
    font-size: 14px;
  }

  .btn.btn-white {
    padding: 10px 20px;
    font-size: 14px;
  }

  .ftco-hireme img {
    max-width: 300px;
  }
}

/* PULSE animation using background color */
@keyframes emaillogo {
  0% {
    box-shadow: 0 0 0 0 rgba(222, 146, 156, 0.6);
    transform: scale(1);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(222, 146, 156, 0);
    transform: scale(1.05);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(222, 146, 156, 0);
    transform: scale(1);
  }
}

.email-float {
  background-color: #de929c;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  width: 70px;
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
  transform: scale(1.1);
  /* Default zoomed */
  animation: emaillogo 2s infinite;
  text-decoration: none;
}

.email-float i {
  text-decoration: none;
}

.email-float:hover {
  transform: scale(1);
  /* Zoom out on hover */
  box-shadow: 0 4px 8px rgba(70, 69, 69, 0.2);
}

/* Apply pulse animation to the icon only */
.email-logo {
  text-decoration: none;
  font-size: 32px;
  color: white;
  animation: emaillogo 2s infinite;
}

.Business_website {
  /* margin-top: 20px !important; */
  width: 65px !important;
  height: 50px !important;
  /* border: 1px solid rgba(114, 110, 110, 0.73); */
  padding: 5px;
  /* border-radius: 5px; */
}
.Business_websitemain {
  /* margin-top: 30px !important; */
  margin-bottom: 20px !important;
  padding: 20px !important;
}

@media screen and (max-width: 480px) {
  .newpara {
    padding-top: 40px;
  }
}
