/* =================GLOBAL================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f2f2f2;
  overflow-x: hidden;
}

img {social
  width: 100%;
  display: block;
}

.container-main {
  display: flex;
  min-height: 100vh;
}

/* =============SIDEBAR=================== */
.sidebar {
  width: 270px;
  /* background: #0b1f33; */
  background: #0b1f3317;
  color: #fff;
  padding: 30px 20px;
  position: fixed;
  height: 100%;
  overflow-y: auto;
  z-index: 999;
}

.sidebar img {
  width: 180px;
  margin-bottom: 20px;
}

/* ==============MENU TOGGLE=============== */
.menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 34px;
  cursor: pointer;
  color: #fff;
  z-index: 10000;
}

/* MENU */
.menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu a,
.dropbtn {
  color: #333;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 10px;
  border-radius: 8px;
  transition: 0.3s;
  font-size: 15px;
  border: none;
  width: 100%;
  text-align: left;
}

.menu a:hover,
.dropbtn:hover {
  background: #1783ef;
  color: #fff;
}

/* DROPDOWN */
.dropdown-content {
  display: none;
  margin-top: 8px;
  padding-left: 10px;
}

.dropdown-content a {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =============SOCIAL ICONS=============== */
/* DESKTOP */
.social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.icons {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #1783ef;
  transition: 0.4s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-bottom: 2px;

}

.icons:hover {
  transform: translateY(-5px) scale(1.08);
}

/* TABLET */
@media (max-width: 768px) {
  .social {
    gap: 10px;
    margin-top: 20px;
  }

  .icons {
    width: 42px;
    height: 42px;
  }
}

/* MOBILE - Footer Style */
@media (max-width: 576px) {
  .social {
    width: 100%;
    justify-content: center;
    margin: 20px auto 0;
    gap: 15px;
  }


  /* .icons img {
    width: 22px;
    height: 22px;
    margin-bottom: 15px;
  } */
}

/* mobile view me niche fix krna h */
@media (max-width: 576px) {
  .social {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    /* background: rgba(255, 255, 255, 0.95); */
    padding: 1px 15px;
    border-radius: 30px;
  }
}

/* ===============MAIN================= */
.main {
  margin-left: 260px;
  width: calc(100% - 260px);
  padding: 30px;
  position: relative;
}

/* ============TOP RIGHT=================== */
.top-right {
  position: absolute;
  top: 25px;
  right: 35px;
  z-index: 10;
}

/* Laptop */
@media (max-width: 1200px) {
  .top-right {
    top: 20px;
    right: 20px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .top-right {
    top: 15px;
    right: 15px;
  }

  .info-box {
    width: 300px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-right {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .info-box {
    width: 90%;
    max-width: 350px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .top-right {
    margin-top: 15px;
  }

  .info-box {
    width: 95%;
    padding: 15px;
  }

  .info-box h2 {
    font-size: 20px;
  }

  .details p {
    font-size: 13px;
    word-break: break-word;
  }
}

/* ============= TITLE DESIGN=================== */
.title {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  background-image: linear-gradient(90deg,
      #ffffff,
      #1783ef,
      #f53e31,
      #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

.title::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 100px;
  height: 4px;
  border-radius: 15px;
  background: linear-gradient(to right, #1783ef, #ffffff);
}

.title::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: rgba(23, 131, 239, 0.12);
  filter: blur(30px);
  z-index: -1;
}

.title1 {
  position: relative;
  display: inline-block;
  padding: 15px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow:
    0 10px 35px rgba(0, 0, 0, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.08);
  font-size: 25px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  background-image: linear-gradient(90deg,
      #ffffff,
      #1783ef,
      #f53e31,
      #ffffff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

.title1::after {
  content: "";
  position: absolute;
  left: 15px;
  bottom: 7px;
  width: 100px;
  height: 4px;
  border-radius: 10px;
  background: linear-gradient(to right, #1783ef, #ffffff);
}

.title1::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 15px;
  background: rgba(23, 131, 239, 0.12);
  filter: blur(30px);
  z-index: -1;
}

@keyframes shine {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

/* =============== INFO BOX================ */
.info-box {
  width: 270px;
  padding: 8px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.small-text {
  color: #1783ef;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Georgia, serif;
}

.info-box h2 {
  font-size: 26px;
  margin: 0px 0 4px;
  color: #111;
  font-family: Georgia, serif;
}

.contact-item {
  display: flex;
  gap: 5px;
  margin-bottom: 4px;
}

.icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1783ef;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
}

.details span {
  font-size: 13px;
  color: #1783ef;
  font-family: Georgia, serif;
}

.details p {
  font-size: 14px;
  color: #333;
  margin: 0;
  font-family: Georgia, serif;
}

/* ================HERO=================== */
.hero {
  width: 100%;
  height: 85vh;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 28px;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  user-select: none;
  transition: 0.3s;
}

.arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* LARGE LAPTOP */
@media (max-width: 1200px) {
  .hero {
    height: 75vh;
    margin-top: 170px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .hero {
    height: 65vh;
    margin-top: 140px;
    border-radius: 8px;
  }

  .arrow {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    height: 50vh;
    margin-top: 100px;
    border-radius: 0;
  }

  .arrow {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 20px;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .hero {
    height: 40vh;
    margin-top: 10px;
  }

  .arrow {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 18px;
  }
}

/* ================HERO CONTACT SECTION================== */
.hero1 {
  width: 100%;
  height: auto;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* CARD DESIGN */
.hero1 .card {
  width: 100%;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
}

/* ROW */
.hero1 .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

/* MAP SECTION */
.hero1 .col-md-4 {
  flex: 0 0 35%;
  max-width: 35%;
}

.hero1 .col-md-4 iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

/* CONTENT SECTION */
.hero1 .col-md-8,
.hero1 .col-md-7 {
  flex: 0 0 65%;
  max-width: 65%;
}

.hero1 .card-body {
  padding: 35px;
}

/* HEADING */
.hero1 h3,
.hero1 h4 {
  font-size: 30px;
  color: #111;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

/* TEXT */
.hero1 p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 12px;
}

/* STRONG */
.hero1 strong {
  color: #1783ef;
}

/* BUTTON */
.hero1 .btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  border-radius: 40px;
  background: #1783ef;
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s ease;
  border: none;
}

.hero1 .btn:hover {
  background: #111;
  transform: translateY(-3px);
}

/* =============== TABLET RESPONSIVE============= */
@media(max-width:992px) {

  .hero1 .col-md-4,
  .hero1 .col-md-7,
  .hero1 .col-md-8 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hero1 .col-md-4 iframe {
    min-height: 280px;
  }

  .hero1 .card-body {
    padding: 25px;
  }

  .hero1 h3,
  .hero1 h4 {
    font-size: 25px;
  }
}

/* ===============MOBILE RESPONSIVE================== */
@media(max-width:576px) {
  .hero1 {
    margin-top: 30px;
  }

  .hero1 .card {
    border-radius: 14px;
  }

  .hero1 .col-md-4 iframe {
    min-height: 230px;
  }

  .hero1 .card-body {
    padding: 20px;
  }

  .hero1 h3,
  .hero1 h4 {
    font-size: 21px;
    margin-bottom: 15px;
  }

  .hero1 p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero1 .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
  }
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 0.8s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* =================CONTENT BOX================== */
.content-box {
  background: #2f2f2f;
  padding: 35px;
  border-radius: 12px;
  margin-top: 40px;
}

.description {
  color: #fff;
  font-size: 16px;
  line-height: 1.9;
  padding-left: 20px;
  position: relative;
  font-family: Georgia, serif;
}

.description::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 85%;
  background: #1783ef;
}

.description strong {
  display: block;
  font-size: 18px;
}

/* =============== SECTION TITLE================ */
.section-title {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  background: linear-gradient(90deg, #1783ef, #f53e31, #1783ef);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 110px;
  height: 4px;
  border-radius: 20px;
  background: linear-gradient(to right, #1783ef, #7ec8ff);
}

/* ==============   CARDS====================== */
/* TEAM SECTION */
/* =========================
   TEAM SECTION
========================= */

/* =========================
   CARD CONTAINER
========================= */

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.image-card {
  flex: 1 1 calc(33.33% - 20px);
  overflow: hidden;
  border-radius: 10px;
}

/* =========================
   IMAGE CARD
========================= */

/* .image-card {
    flex: 1 1 calc(33.333% - 17px);
    max-width: calc(33.333% - 17px);
    text-align: center;
} */

/* =========================
   IMAGE
========================= */

.image-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
    transition: transform 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.image-card:hover img {
    transform: scale(1.03);
}

/* =========================
   CONTENT
========================= */

.card-content {
    margin-top: 12px;
}

.card-content h5 {
    color: #fff;
    font-family: Georgia, serif;
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

/* =========================
   LARGE DESKTOP
========================= */

@media (min-width: 1400px) {

    .image-card img {
        height: 320px;
    }

    .card-content h5 {
        font-size: 20px;
    }
}

/* =========================
   LAPTOP
========================= */

@media (max-width: 1200px) {

    .image-card img {
        height: 260px;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width: 992px) {

    .card-container {
        gap: 20px;
    }

    .image-card {
        flex: 1 1 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }

    .image-card img {
        height: 250px;
    }

    .card-content h5 {
        font-size: 17px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .card-container {
        gap: 15px;
    }

    .image-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .image-card img {
        height: 240px;
    }

    .card-content h5 {
        font-size: 16px;
    }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .card-container {
        gap: 12px;
    }

    .image-card img {
        height: 220px;
        border-radius: 10px;
    }

    .card-content h5 {
        font-size: 15px;
        line-height: 1.4;
    }
}

/* .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.image-card {
  flex: 1 1 calc(33.33% - 20px);
  overflow: hidden;
  border-radius: 10px;
} */

/* .image-card img {
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}
.image-card:hover img {
  transform: scale(1.05);
} */
/* .image-card img {
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
  object-fit: cover;
  transition: 0.4s;
}

.image-card img:hover {
  transform: scale(1.05);
} */

/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.popup img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

/* ============ LOGO SLIDER=================== */
.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  position: relative;
  background: #ffffff;
  border-radius: 10px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  width: 160px;
  height: 110px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  flex-shrink: 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.logo-card:hover {
  transform: translateY(-6px);
}

.logo-card img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: 0.4s;
}

.logo-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================FOOTER========================= */
.footer {
  width: 100%;
  text-align: center;
  padding: 30px;
}

/* =========================MOBILE MENU========================= */
/* ========================= TABLET========================= */
@media(max-width:992px) {
  .image-card {
    flex: 1 1 calc(50% - 20px);
  }

  .main {
    padding: 20px;
  }
}

/* =========================MOBILE========================= */
@media(max-width:768px) {
  .container-main {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    padding: 18px;
  }

  .sidebar img {
    /* width: 80px; */
    margin-bottom: 1px;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    margin-top: 25px;
  }

  .menu.active {
    display: flex;
  }

  .main {
    width: 100%;
    margin-left: 0;
    padding: 15px;
  }

  .title {
    font-size: 30px;
  }

  .card-container {
    flex-direction: column;
  }

  .image-card {
    flex: 1 1 100%;
  }

  .image-card img {
    height: 240px;
  }

  .video-box {
    height: 230px;
  }
}

/* =========================SMALL MOBILE========================= */

@media(max-width:480px) {
  .sidebar {
    padding: 15px;
  }

  .sidebar img {
    width: 130px;
  }

  .title {
    font-size: 24px;
  }

  .menu a,
  .dropbtn {
    font-size: 14px;
    padding: 10px 12px;
  }

  .content-box {
    padding: 25px;
  }

  .image-card img {
    height: 210px;
  }

  .card-content h4 {
    font-size: 15px;
  }

  .social div {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* =========================PORTFOLIO DESIGN===================== */
.portfolio-card {
  width: 100%;
  display: flex;
  gap: 40px;
  background: #ffffff;
  border-radius: 25px;
  overflow: hidden;
  padding: 35px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  position: relative;
  margin-top: 30px;
}

/* LEFT IMAGE */
.portfolio-image {
  width: 320px;
  min-width: 320px;
  position: relative;
}

.portfolio-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  border: 5px solid #1783ef;
}

/* RIGHT CONTENT */
.portfolio-content {
  flex: 1;
  font-family: Georgia, serif;
}

/* TAG */
.portfolio-tag {
  display: inline-block;
  background: #1783ef;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-family: Georgia, serif;
}

/* NAME */
.portfolio-name {
  font-size: 42px;
  color: #0b1f33;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-weight: 700;
}

/* COMPANY */
.portfolio-company {
  color: #1783ef;
  font-size: 24px;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

/* LINE */
.portfolio-line {
  width: 120px;
  height: 4px;
  background: linear-gradient(to right, #1783ef, #0b1f33);
  border-radius: 20px;
  margin-bottom: 25px;
}

/* INFO */
.portfolio-info p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.portfolio-info strong {
  color: #1783ef;
  font-family: Georgia, serif;
}

/* SECTION */
.portfolio-section {
  margin-top: 28px;
  font-family: Georgia, serif;
}

.portfolio-section h3 {
  font-size: 24px;
  color: #0b1f33;
  margin-bottom: 15px;
  position: relative;
  padding-left: 18px;
  font-family: Georgia, serif;
}

.portfolio-section h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: 85%;
  background: #1783ef;
  border-radius: 20px;
  font-family: Georgia, serif;
}

.portfolio-section p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.portfolio-section ul {
  padding-left: 20px;
  font-family: Georgia, serif;
}

.portfolio-section ul li {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #444;
  font-family: Georgia, serif;
}

/* HOVER EFFECT */
.portfolio-card:hover {
  transform: translateY(-5px);
  transition: 0.4s;
}

/* =============== TABLET RESPONSIVE================ */
@media(max-width:992px) {
  .portfolio-card {
    flex-direction: column;
    padding: 25px;
  }

  .portfolio-image {
    width: 100%;
    min-width: 100%;
  }

  .portfolio-image img {
    /* height: 450px; */
  }

  .portfolio-name {
    font-size: 34px;
  }
}

/* =================MOBILE RESPONSIVE======================== */
@media(max-width:576px) {
  .portfolio-card {
    padding: 18px;
    border-radius: 18px;
  }

  .portfolio-image img {
    /* height: 320px; */
  }

  .portfolio-name {
    font-size: 28px;
  }

  .portfolio-company {
    font-size: 20px;
    font-family: Georgia, serif;
  }

  .portfolio-section h3 {
    font-size: 20px;
    font-family: Georgia, serif;
  }

  .portfolio-info p,
  .portfolio-section p,
  .portfolio-section ul li {
    font-size: 14px;
    line-height: 1.7;
    font-family: Georgia, serif;
  }
}

.video-box {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.custom-video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* SECTION */
.analysis-section {
  width: 100%;
  display: flex;
  gap: 20px;
  padding: 0px;
  background: #2f2f2f;
  align-items: flex-start;
}

/* IMAGE */
.analysis-image {
  width: 30%;
}

.analysis-image img {
  width: 100%;
  display: block;
  border-radius: 5px;
}

/* CONTENT */
.analysis-content {
  width: 70%;
  color: #fff;
}

.analysis-content h2 {
  color: #1783ef;
  margin-bottom: 25px;
  font-size: 30px;
  font-family: Georgia, serif;
}

.analysis-content p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #ddd;
  font-family: Georgia, serif;
}

/* RESPONSIVE */
@media(max-width: 768px) {

  .analysis-section {
    flex-direction: column;
    padding: 20px;
  }

  .analysis-image,
  .analysis-content {
    width: 100%;
  }

  .analysis-content h2 {
    font-size: 26px;
  }

}


.floating {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating a {
  display: block;
  text-decoration: none;
}

.floating img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.floating img:hover {
  transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .floating {
    right: 15px;
    bottom: 20px;
  }

  .floating img {
    width: 50px;
    height: 50px;
  }
}

.whatsapp img {
  background: #25D366;
  padding: 8px;
}

.call img {
  background: #007bff;
  padding: 8px;
}

.image-card {
  position: relative;
  display: inline-block;
}

.image-card img {
  width: 100%;
  display: block;
}

/* .watermark {
  position: absolute;
  top: 24%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 38px;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.25);
  pointer-events: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
} */