/* ================= Research development page ================= */

.rd-page {
  background: #061522;
  color: white;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* tech diagonal pattern */

.rd-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.04) 0px,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 70px
  );
  pointer-events: none;
  z-index: 0;
}

.rd-page section {
  padding: 90px 8%;
  position: relative;
  z-index: 1;
}

/* ================= SECTION TITLES ================= */

.rd-page .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.rd-page .section-title h2 {
  font-size: 36px;
  font-weight: 600;
  letter-spacing: 1px;
}

.rd-page .section-title span {
  color: #e3a127;
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #a8bfd4;
}

/* ================= HERO ================= */

.rd-hero-section {
  padding: 120px 8%;
  background: linear-gradient(120deg, #071c2c, #021018);
}

.rd-hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.rd-hero-left {
  flex: 1;
}

.rd-hero-left h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.rd-hero-left h1 span {
  color: #e3a127;
}

.rd-hero-sub {
  font-size: 20px;
  margin-bottom: 15px;
  color: #dcdcdc;
}

.rd-hero-desc {
  font-size: 16px;
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 35px;
  max-width: 550px;
}

.rd-hero-buttons {
  display: flex;
  gap: 20px;
}

.rd-btn-primary {
  background: #e3a127;
  color: black;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.rd-btn-outline {
  border: 2px solid #e3a127;
  color: #e3a127;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
}

.rd-btn-outline:hover {
  color: black;
}

.rd-hero-right {
  flex: 1;
  text-align: right;
}

.rd-hero-right img {
  width: 100%;
  max-width: 520px;
}

/* ================= GRID CARDS ================= */

/* ===== R&D FOCUS AREA SECTION ===== */

.rd-focus-section {
  padding: 100px 8%;
  background: #071c2c;
  color: white;
  text-align: center;
}

/* title */

.rd-focus-header h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 15px;
}

.rd-focus-header span {
  color: #e3a127;
}

.rd-focus-header p {
  max-width: 650px;
  margin: auto;
  color: #b5c3d1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 70px;
}

/* grid */

.rd-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* card */

.rd-focus-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  transition: 0.35s;
  backdrop-filter: blur(6px);
}

/* icon */

.rd-focus-card i {
  font-size: 34px;
  color: #e3a127;
  margin-bottom: 20px;
}

/* title */

.rd-focus-card h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}

/* text */

.rd-focus-card p {
  font-size: 15px;
  color: #b5c3d1;
  line-height: 1.7;
}

/* hover */

.rd-focus-card:hover {
  transform: translateY(-10px);
  border-color: #e3a127;
  box-shadow: 0 0 25px rgba(227, 161, 39, 0.3);
}

/* responsive */

@media (max-width: 992px) {
  .rd-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rd-focus-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PROCESS ================= */

/* ===== R&D PROCESS SECTION ===== */

.rdp-section {
  padding: 100px 8%;

  color: #fff;
  text-align: center;
}

/* title */

.rdp-header h2 {
  font-size: 40px;
  margin-bottom: 10px;
  font-weight: 600;
}

.rdp-header span {
  color: #e3a127;
}

.rdp-header p {
  max-width: 650px;
  margin: auto;
  color: #b5c3d1;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 70px;
}

/* grid */

.rdp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* card */

.rdp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  transition: 0.35s;
  backdrop-filter: blur(6px);
  position: relative;
}

/* number circle */

.rdp-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e3a127;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  margin: 0 auto 20px auto;
}

/* title */

.rdp-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* text */

.rdp-card p {
  font-size: 15px;
  color: #b5c3d1;
  line-height: 1.7;
}

/* hover */

.rdp-card:hover {
  transform: translateY(-10px);
  border-color: #e3a127;
  box-shadow: 0 0 25px rgba(227, 161, 39, 0.3);
}

/* responsive */

@media (max-width: 992px) {
  .rdp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rdp-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= PROJECTS ================= */

/* ===== PROJECT SECTION ===== */

.rdproj-section {
  padding: 100px 8%;
  background: #071c2c;
  color: #fff;
}

/* title */

.rdproj-header {
  text-align: center;
  margin-bottom: 70px;
}

.rdproj-header h2 {
  font-size: 38px;
  font-weight: 600;
}

.rdproj-header span {
  color: #e3a127;
}

/* layout */

.rdproj-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* list */

.rdproj-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.rdproj-list li {
  display: flex;
  gap: 18px;
  margin-bottom: 30px;
  align-items: flex-start;
}

/* icon */

.rdproj-icon {
  color: #e3a127;
  font-size: 20px;
  margin-top: 5px;
}

/* project title */

.rdproj-list h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* description */

.rdproj-list p {
  font-size: 15px;
  color: #b5c3d1;
  line-height: 1.6;
}

/* button */

.rdproj-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 26px;
  background: #e3a127;
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.rdproj-btn:hover {
  background: #f0b93d;
}

/* image */

.rdproj-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* responsive */

@media (max-width: 900px) {
  .rdproj-container {
    grid-template-columns: 1fr;
  }

  .rdproj-right {
    order: -1;
  }
}

/* ================= COLLABORATION ================= */

/* ===== COLLABORATION SECTION ===== */

.rdcollab-section {
  padding: 100px 8%;

  color: #fff;
  text-align: center;
}

/* header */

.rdcollab-header h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.rdcollab-header span {
  color: #e3a127;
}

.rdcollab-header p {
  max-width: 650px;
  margin: auto;
  color: #b5c3d1;
  margin-bottom: 70px;
  line-height: 1.7;
}

/* grid */

.rdcollab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* card */

.rdcollab-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 40px 30px;
  transition: 0.35s;
  backdrop-filter: blur(6px);
}

/* icon */

.rdcollab-icon {
  width: 60px;
  height: 60px;
  margin: auto;
  margin-bottom: 20px;
  background: #e3a127;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
}

/* title */

.rdcollab-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* text */

.rdcollab-card p {
  font-size: 15px;
  color: #b5c3d1;
  line-height: 1.6;
}

/* hover */

.rdcollab-card:hover {
  transform: translateY(-10px);
  border-color: #e3a127;
  box-shadow: 0 0 25px rgba(227, 161, 39, 0.3);
}

/* button */

.rdcollab-btn-wrapper {
  margin-top: 60px;
}

.rdcollab-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #e3a127;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.rdcollab-btn:hover {
  background: #f0b93d;
}

/* responsive */

@media (max-width: 992px) {
  .rdcollab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .rdcollab-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */

/* ===== R&D FAQ SECTION ===== */

.rdfaq-section {
  padding: 100px 8%;
  background: #071c2c;
  color: #fff;
}

.rdfaq-title {
  text-align: center;
  margin-bottom: 60px;
}

.rdfaq-title h2 {
  font-size: 36px;
}

.rdfaq-title span {
  color: #e3a127;
}

/* container */

.rdfaq-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* item */

.rdfaq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 25px;
  cursor: pointer;
  transition: 0.3s;
}

/* question */

.rdfaq-question {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-right: 25px;
}

/* plus icon */

.rdfaq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 22px;
  color: #e3a127;
  transition: 0.3s;
}

/* answer */

.rdfaq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: #b5c3d1;
  font-size: 15px;
  line-height: 1.6;
  margin-top: 8px;
}

/* active */

.rdfaq-item.active .rdfaq-answer {
  max-height: 200px;
}

.rdfaq-item.active .rdfaq-question::after {
  content: "−";
}

/* hover */

.rdfaq-item:hover {
  border-color: #e3a127;
  box-shadow: 0 0 15px rgba(227, 161, 39, 0.25);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .rd-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .rd-hero-buttons {
    justify-content: center;
  }

  .process-steps {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-step {
    width: 30%;
  }

  .process-line {
    display: none;
  }

  .projects {
    flex-direction: column;
  }

  .rd-hero-left h1 {
    font-size: 40px;
  }
}
/* web developement css */

.webdev-hero-section {
  padding: 40px 8%;
  /* background: #0a0a0a; */
  color: white;
  position: relative;
  overflow: hidden;
}

.webdev-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: auto;
}

/* LEFT CONTENT */

.webdev-hero-content {
  flex: 1;
}

.webdev-hero-content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.webdev-hero-content h1 span {
  color: #e3a127;
}

.webdev-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #bdbdbd;
  max-width: 550px;
  margin-bottom: 35px;
}

/* BUTTONS */

.webdev-hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.webdev-btn-primary {
  padding: 14px 32px;
  background: #e3a127;
  color: black;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.webdev-btn-primary:hover {
  background: #ffb938;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(227, 161, 39, 0.4);
}

.webdev-btn-outline {
  padding: 14px 32px;
  border: 1px solid #e3a127;
  color: #e3a127;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: 0.3s;
}

.webdev-btn-outline:hover {
  background: #e3a127;
  color: black;
  transform: translateY(-3px);
}

/* RIGHT IMAGE */

.webdev-hero-image {
  flex: 1;
  position: relative;
}

.webdev-hero-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

/* DARK OVERLAY EFFECT */

.webdev-hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  border-radius: 10px;
}

/* BACKGROUND GRID EFFECT */

.webdev-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 6px
  );

  pointer-events: none;
}

/* ============================= */
/* RESPONSIVE                    */
/* ============================= */

@media (max-width: 992px) {
  .webdev-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .webdev-hero-content p {
    margin: auto;
    margin-bottom: 30px;
  }

  .webdev-hero-buttons {
    justify-content: center;
  }

  .webdev-hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 600px) {
  .webdev-hero-section {
    padding: 90px 6%;
  }

  .webdev-hero-content h1 {
    font-size: 32px;
  }

  .webdev-hero-content p {
    font-size: 15px;
  }
}

/* WEB DEVELOPMENT SERVICES SECTION */

.webdev-services-section {
  background: #0a0a0a;
  padding: 100px 8%;
  color: white;
}

.webdev-services-container {
  max-width: 1300px;
  margin: auto;
}

.webdev-services-title {
  text-align: center;
  margin-bottom: 60px;
}

.webdev-services-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 700;
}

.webdev-services-title p {
  color: #bfbfbf;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

.webdev-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.webdev-service-card {
  background: #111;
  padding: 35px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid #554e4e;
}

.webdev-service-card i {
  font-size: 36px;
  color: #e3a127;
  margin-bottom: 18px;
}

.webdev-service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.webdev-service-card p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
}

.webdev-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(227, 161, 39, 0.3);
  border-color: #e3a127;
}

@media (max-width: 1024px) {
  .webdev-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .webdev-services-grid {
    grid-template-columns: 1fr;
  }

  .webdev-services-title h2 {
    font-size: 30px;
  }
}

/* WEB DEVELOPMENT PROCESS */

.webdev-process-section {
  background: #050505;
  padding: 7px 8%;
  color: white;
}

.webdev-process-container {
  max-width: 1300px;
  margin: auto;
}

.webdev-process-title {
  text-align: center;
  margin-bottom: 70px;
}

.webdev-process-title h2 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 900;
}

.webdev-process-title p {
  max-width: 650px;
  margin: auto;
  color: #bfbfbf;
  line-height: 1.6;
}

.webdev-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.webdev-process-card {
  position: relative;
  background: #0f0f0f;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: 0.4s;
}

.webdev-process-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #1a1a1a, #0a0a0a);

  border: 2px solid #e3a127;

  box-shadow:
    0 0 10px rgba(227, 161, 39, 0.3),
    inset 0 0 8px rgba(227, 161, 39, 0.2);
}

.webdev-process-icon i {
  font-size: 34px;
  color: #e3a127;
}

/* .webdev-process-icon i {
            font-size: 36px;
            color: #e3a127;
        } */

.webdev-process-card:hover .webdev-process-icon {
  box-shadow: 0 0 15px #e3a127;
  transform: scale(1.05);
}

/* Gradient Border */
.webdev-process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 12px;

  background: linear-gradient(
    120deg,
    transparent,
    #e3a127,
    #ffd76a,
    #e3a127,
    transparent
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;

  opacity: 0.7;
}

/* Hover effect */
.webdev-process-card:hover {
  transform: translateY(-8px);
}

.webdev-process-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.webdev-process-card p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.webdev-process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 18px rgba(227, 161, 39, 0.35);
  border-color: #e3a127;
}

@media (max-width: 1024px) {
  .webdev-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .webdev-process-grid {
    grid-template-columns: 1fr;
  }

  .webdev-process-title h2 {
    font-size: 30px;
  }
}

/* TECHNOLOGY SECTION */

.wd-tech-section {
  padding: 100px 8%;
  background: #000;
  text-align: center;
}

.wd-tech-title {
  font-size: 38px;
  color: #fff;
  margin-bottom: 60px;
  font-weight: 900;
}

.wd-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.wd-tech-card {
  background: #0d0d0d;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #1a1a1a;
  transition: all 0.4s ease;
  min-height: 210px;
}

.wd-tech-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.wd-tech-card h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.wd-tech-card p {
  color: #bbb;
  font-size: 14px;
  line-height: 1.5;
}

/* hover effect */

.wd-tech-card:hover {
  transform: translateY(-8px);
  border-color: #e3a127;
  box-shadow: 0 0 20px rgba(227, 161, 39, 0.4);
}

/* projects */
/* SECTION */

.portfolio-section {
  padding: 90px 8%;
  background: #02151c;
}

/* HEADER */

.portfolio-header {
  text-align: center;
  margin-bottom: 60px;
}

.portfolio-header h2 {
  font-size: 38px;
  color: white;
  /* your gold color */
  margin-bottom: 15px;
  font-weight: 900;
}

.portfolio-header p {
  color: #ffffff;
  opacity: 0.8;
  font-size: 18px;
}

/* GRID */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */

.portfolio-card {
  background: #05212a;
  border-radius: 12px;
  border: 2px solid #3e3030;
  /* silver */
  padding: 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease;
}

/* IMAGE */

.portfolio-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

/* TITLE */

.portfolio-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
}

/* HOVER EFFECT */

.portfolio-card:hover {
  border-color: #e4a325;
  /* gold */
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.portfolio-card:hover h3 {
  color: #e4a325;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  transition: 0.4s;
}

@media (max-width: 1000px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* MODAL BACKGROUND */

.project-modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  animation: fadeIn 0.3s ease;
}

/* MODAL BOX */

.modal-box {
  width: 70%;
  margin: 6% auto;
  background: #05212a;
  border: 2px solid #3e3030;
  /* silver */
  border-radius: 14px;
  padding: 40px;
  position: relative;
  color: white;
}

/* CLOSE BUTTON */

.modal-close {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #c0c0c0;
  transition: 0.3s;
}

.modal-close:hover
        /* GRID LAYOUT */

        .modal-grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* IMAGE */

.modal-image img {
  max-width: stretch;
  margin-bottom: 35px;
  border-radius: 10px;
  border: 2px solid #433f3f;
  transition: 0.3s;
}

/* CONTENT */

.modal-content h2 {
  color: #e4a325;
  margin-bottom: 15px;
  font-size: 28px;
}

.modal-content p {
  color: white;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-content h4 {
  color: #e4a325;
  margin-bottom: 10px;
}

.modal-content ul {
  line-height: 1.8;
}

/* IMAGE HOVER */

.modal-image img:hover
        /* ANIMATION */

        @keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* FAQ SECTION */

.faq-section {
  padding: 90px 8%;
  background: #02151c;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 10px;
  font-weight: 900;
}

.faq-header p {
  color: white;
  opacity: 0.8;
}

/* FAQ ITEMS */

.faq-container {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  border: 2px solid #685c5c;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq-item:hover {
  border-color: #e4a325;
}

/* QUESTION */

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.faq-question h3 {
  color: white;
  font-size: 18px;
}

.faq-question span {
  color: #e4a325;
  font-size: 22px;
}

/* ANSWER */

.faq-answer {
  display: none;
  padding: 0 20px 20px 20px;
}

.faq-answer p {
  color: white;
  opacity: 0.9;
  line-height: 1.6;
}

.webdev-page .wd-cta {
  padding: 110px 8%;
  background: #e3a127;
  text-align: center;
}

.webdev-page .wd-cta-container {
  max-width: 750px;
  margin: auto;
}

.webdev-page .wd-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #000;
}

.webdev-page .wd-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 35px;
}

.webdev-page .wd-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.webdev-page .wd-btn-primary {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.webdev-page .wd-btn-outline {
  border: 2px solid #000;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.webdev-page .wd-btn-outline:hover {
  background: #000;
  color: #fff;
}

@media (max-width: 768px) {
  .webdev-page .wd-cta h2 {
    font-size: 30px;
  }

  .webdev-page .wd-cta p {
    font-size: 16px;
  }
}

/* ----------------- digital marketing css */

.digital-marketing-page {
  width: 100%;
  background: #0f0f0f;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

/* HERO SECTION */

.digital-marketing-page .dm-hero {
  padding: 40px 8%;
}

/* CONTAINER */

.digital-marketing-page .dm-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* TEXT AREA */

.digital-marketing-page .dm-hero-content {
  flex: 1;
}

.digital-marketing-page .dm-hero-content h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}

.digital-marketing-page .dm-hero-content h1 span {
  color: #e3a127;
}

.digital-marketing-page .dm-hero-content p {
  font-size: 18px;
  color: #bbbbbb;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* BUTTONS */

.digital-marketing-page .dm-buttons {
  display: flex;
  gap: 15px;
}

.digital-marketing-page .dm-btn-primary {
  background: #e3a127;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.digital-marketing-page .dm-btn-primary:hover {
  background: #c88b1e;
}

.digital-marketing-page .dm-btn-outline {
  border: 2px solid #e3a127;
  padding: 12px 28px;
  color: #e3a127;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.digital-marketing-page .dm-btn-outline:hover {
  background: #e3a127;
  color: #fff;
}

/* IMAGE */

.digital-marketing-page .dm-hero-image {
  flex: 1;
  text-align: center;
}

.digital-marketing-page .dm-hero-image img {
  width: 100%;
  max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .digital-marketing-page .dm-container {
    flex-direction: column;
    text-align: center;
  }

  .digital-marketing-page .dm-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .digital-marketing-page .dm-hero-content h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .digital-marketing-page .dm-hero {
    padding: 70px 5%;
  }

  .digital-marketing-page .dm-hero-content h1 {
    font-size: 28px;
  }

  .digital-marketing-page .dm-hero-content p {
    font-size: 16px;
  }
}

/* SERVICES SECTION */

.digital-marketing-page .dm-services {
  padding: 100px 8%;
  background: #121212;
}

.digital-marketing-page .dm-services-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
  margin-bottom: 60px;
}

.digital-marketing-page .dm-services-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.digital-marketing-page .dm-services-header p {
  color: #bcbcbc;
  font-size: 17px;
  line-height: 1.7;
}

/* GRID */

.digital-marketing-page .dm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.digital-marketing-page .dm-service-card {
  background: #1b1b1b;
  padding: 35px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid #222;
}

.digital-marketing-page .dm-service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.digital-marketing-page .dm-service-card p {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* HOVER EFFECT */

.digital-marketing-page .dm-service-card:hover {
  transform: translateY(-8px);
  border-color: #e3a127;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .digital-marketing-page .dm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .digital-marketing-page .dm-services-grid {
    grid-template-columns: 1fr;
  }

  .digital-marketing-page .dm-services {
    padding: 70px 5%;
  }
}

/* SERVICES SECTION */

.digital-marketing-page .dm-services {
  padding: 110px 8%;
  background: #121212;
}

/* HEADER */

.digital-marketing-page .dm-services-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.digital-marketing-page .dm-services-header h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.digital-marketing-page .dm-services-header p {
  font-size: 18px;
  color: #bfbfbf;
  line-height: 1.7;
}

/* GRID */

.digital-marketing-page .dm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.digital-marketing-page .dm-service-card {
  background: #1b1b1b;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.digital-marketing-page .dm-service-card:hover {
  transform: translateY(-8px);
  border-color: #e3a127;
}

/* ICON RECTANGLE */

.digital-marketing-page .dm-icon {
  width: 60px;
  height: 60px;
  background: #e3a127;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 8px;
}

.digital-marketing-page .dm-icon i {
  font-size: 26px;
  color: #000;
}

/* TITLE */

.digital-marketing-page .dm-service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

/* TEXT */

.digital-marketing-page .dm-service-card p {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .digital-marketing-page .dm-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .digital-marketing-page .dm-services-grid {
    grid-template-columns: 1fr;
  }

  .digital-marketing-page .dm-services-header h2 {
    font-size: 32px;
  }

  .digital-marketing-page .dm-services {
    padding: 80px 5%;
  }
}

/* CREATIVE MEDIA SECTION */

.digital-marketing-page .dm-creative {
  padding: 110px 8%;
  background: #0f0f0f;
}

/* HEADER */

.digital-marketing-page .dm-creative-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.digital-marketing-page .dm-creative-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.digital-marketing-page .dm-creative-header p {
  font-size: 18px;
  color: #bfbfbf;
  line-height: 1.7;
}

/* GRID */

.digital-marketing-page .dm-creative-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.digital-marketing-page .dm-creative-card {
  background: #1a1a1a;
  padding: 40px 25px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #222;
  transition: all 0.3s ease;
}

.digital-marketing-page .dm-creative-card:hover {
  transform: translateY(-8px);
  border-color: #e3a127;
}

/* ICON */

.digital-marketing-page .dm-creative-icon {
  width: 65px;
  height: 65px;
  background: #e3a127;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 10px;
}

.digital-marketing-page .dm-creative-icon i {
  font-size: 28px;
  color: #000;
}

/* TITLE */

.digital-marketing-page .dm-creative-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}

/* TEXT */

.digital-marketing-page .dm-creative-card p {
  font-size: 16px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .digital-marketing-page .dm-creative-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .digital-marketing-page .dm-creative-grid {
    grid-template-columns: 1fr;
  }

  .digital-marketing-page .dm-creative-header h2 {
    font-size: 32px;
  }

  .digital-marketing-page .dm-creative {
    padding: 80px 5%;
  }
}

/* PROCESS SECTION */

.digital-marketing-page .dm-process {
  padding: 110px 8%;
  background: #121212;
}

/* HEADER */

.digital-marketing-page .dm-process-header {
  text-align: center;
  max-width: 750px;
  margin: auto;
  margin-bottom: 70px;
}

.digital-marketing-page .dm-process-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.digital-marketing-page .dm-process-header p {
  font-size: 18px;
  color: #bfbfbf;
  line-height: 1.7;
}

/* GRID */

.digital-marketing-page .dm-process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
}

/* CARD */

.digital-marketing-page .dm-process-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 10px;
  border: 1px solid #222;
  text-align: center;
  transition: all 0.3s ease;
}

.digital-marketing-page .dm-process-card:hover {
  border-color: #e3a127;
  transform: translateY(-6px);
}

/* STEP NUMBER */

.digital-marketing-page .dm-step {
  width: 50px;
  height: 50px;
  background: #e3a127;
  color: #000;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin: 0 auto 15px;
  font-size: 18px;
}

/* TITLE */

.digital-marketing-page .dm-process-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */

.digital-marketing-page .dm-process-card p {
  font-size: 15px;
  color: #bfbfbf;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .digital-marketing-page .dm-process-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .digital-marketing-page .dm-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .digital-marketing-page .dm-process-grid {
    grid-template-columns: 1fr;
  }

  .digital-marketing-page .dm-process-header h2 {
    font-size: 30px;
  }
}

/* WHY CHOOSE SECTION */

.digital-marketing-page .dm-why {
  padding: 120px 8%;
  background: #121212;
}

/* CONTAINER */

.digital-marketing-page .dm-why-container {
  display: flex;
  gap: 70px;
  align-items: center;
}

/* LEFT SIDE */

.digital-marketing-page .dm-why-left {
  flex: 1;
}

.digital-marketing-page .dm-why-left h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.digital-marketing-page .dm-why-left p {
  color: #bfbfbf;
  line-height: 1.7;
  margin-bottom: 15px;
  font-size: 17px;
}

/* RIGHT SIDE */

.digital-marketing-page .dm-why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ITEM */

.digital-marketing-page .dm-why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON */

.digital-marketing-page .dm-why-icon {
  width: 50px;
  height: 50px;
  background: #e3a127;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.digital-marketing-page .dm-why-icon i {
  font-size: 22px;
  color: #000;
}

/* TITLE */

.digital-marketing-page .dm-why-item h4 {
  font-size: 20px;
  margin-bottom: 6px;
}

/* TEXT */

.digital-marketing-page .dm-why-item p {
  color: #bfbfbf;
  font-size: 15px;
  line-height: 1.6;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .digital-marketing-page .dm-why-container {
    flex-direction: column;
    gap: 50px;
  }

  .digital-marketing-page .dm-why-left h2 {
    font-size: 32px;
    text-align: center;
  }

  .digital-marketing-page .dm-why-left p {
    text-align: center;
  }
}

/* CTA SECTION */

.digital-marketing-page .dm-cta {
  padding: 110px 8%;
  background: #e3a127;
  text-align: center;
}

/* CONTAINER */

.digital-marketing-page .dm-cta-container {
  max-width: 750px;
  margin: auto;
}

/* TITLE */

.digital-marketing-page .dm-cta h2 {
  font-size: 42px;
  margin-bottom: 20px;
  color: #000;
}

/* TEXT */

.digital-marketing-page .dm-cta p {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 35px;
}

/* BUTTON AREA */

.digital-marketing-page .dm-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */

.digital-marketing-page .dm-cta-btn-primary {
  background: #000;
  color: #fff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.digital-marketing-page .dm-cta-btn-primary:hover {
  background: #222;
}

/* OUTLINE BUTTON */

.digital-marketing-page .dm-cta-btn-outline {
  border: 2px solid #000;
  color: #000;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
}

.digital-marketing-page .dm-cta-btn-outline:hover {
  background: #000;
  color: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .digital-marketing-page .dm-cta h2 {
    font-size: 30px;
  }

  .digital-marketing-page .dm-cta p {
    font-size: 16px;
  }
}

/* ---------------------cad modelling css------------------ */

.cad-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* ===== CAD HERO SECTION ===== */

.cad-hero-section {
  background: #0b0b0b;
  padding: 100px 0 100px;
}

.cad-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.cad-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TEXT */

.cad-hero-content h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.cad-hero-content h1 span {
  color: #e3a127;
}

.cad-hero-content p {
  margin-top: 25px;
  font-size: 18px;
  color: #bdbdbd;
  line-height: 1.7;
  max-width: 520px;
}

/* BUTTONS */

.cad-hero-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.cad-btn-primary {
  background: #e3a127;
  color: #000;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cad-btn-primary:hover {
  background: #f0b73d;
}

.cad-btn-outline {
  border: 2px solid #e3a127;
  color: #e3a127;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.cad-btn-outline:hover {
  background: #e3a127;
  color: #000;
}

/* IMAGE */

.cad-hero-image img {
  width: 100%;
  max-width: 520px;
}

/* MOBILE RESPONSIVENESS */

@media (max-width: 768px) {
  /* Materials Section */
  .threeD-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .threeD-card {
    text-align: center;
    padding: 20px;
  }

  /* Process Section */
  .threeD-process-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .threeD-step {
    margin-bottom: 10px;
  }

  /* Why Choose Section */
  .why-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .why-left {
    text-align: center;
  }

  .why-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .threeD-icon i,
  .why-icon i {
    font-size: 24px;
  }
}
/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
  .cad-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cad-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cad-hero-buttons {
    justify-content: center;
  }

  .cad-hero-image {
    margin-top: 40px;
  }
}

/* service card */
.cad-services {
  background: #0f0f0f;
  /* padding: 100px 0; */
}

.cad-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* SECTION HEADER */

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 38px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 15px;
}

.section-header p {
  color: #bdbdbd;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.service-card {
  background: #151515;
  border: 1px solid #2b2b2b;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.35s ease;
}

/* ICON */

.service-icon {
  font-size: 42px;
  color: #e3a127;
  margin-bottom: 20px;
}

/* TEXT */

.service-card h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: #bdbdbd;
  font-size: 15px;
  line-height: 1.6;
}

/* HOVER */

.service-card:hover {
  transform: translateY(-8px);
  border: 1px solid #e3a127;
  box-shadow: 0 0 15px rgba(227, 161, 39, 0.25);
}

/* FEATURED CARD */

.service-card.featured {
  border: 1px solid #e3a127;
  box-shadow: 0 0 10px rgba(227, 161, 39, 0.2);
}

/* TABLET */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.threeD-materials {
  background: #050505;
  padding: 100px 10%;
  text-align: center;
}

.threeD-materials h2 {
  font-size: 38px;
  color: white;
  margin-bottom: 60px;
  font-weight: 900;
}

/* GRID */
.threeD-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* CARD */
.threeD-card {
  background: #0b0b0b;
  padding: 40px 30px;
  border-radius: 12px;
  border: 1px solid rgba(255, 170, 0, 0.4);
  transition: 0.4s;
}

/* Hover glow effect */
.threeD-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 170, 0, 0.5);
  border-color: #ffb100;
}

/* ICON CIRCLE */
.threeD-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  border: 2px solid #ffb100;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffb100;
  font-size: 34px;
  box-shadow: 0 0 20px rgba(255, 170, 0, 0.4);
}

/* TITLE */
.threeD-card h3 {
  color: white;
  font-size: 22px;
  margin-bottom: 12px;
}

/* TEXT */
.threeD-card p {
  color: #bcbcbc;
  font-size: 15px;
  line-height: 1.6;
}

.threeD-process {
  background: #050505;
  padding: 80px 8%;
  text-align: center;
}

/* Golden Heading */
.threeD-process h2 {
  color: white;
  font-size: 38px;
  font-weight: 900;
}

/* Description */
.process-desc {
  color: #bdbdbd;
  max-width: 700px;
  margin: 10px auto 50px;
}

/* SINGLE LINE */
.threeD-process-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .threeD-process-row {
    flex-direction: column;
    align-items: center;
  }

  .threeD-process-row .threeD-card {
    width: 100%;
    max-width: 280px;
  }
}
.threeD-process h2 {
  margin-bottom: 10px;
}

/* SMALL MINIMAL CARD */
.threeD-card {
  background: #0b0b0b;
  padding: 25px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 177, 0, 0.4);
  width: 200px;
  transition: 0.3s;
}

.threeD-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 177, 0, 0.5);
}

/* Step Circle */
.threeD-step {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffb100;
  color: #ffb100;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

/* Text */
.threeD-card h3 {
  color: white;
  font-size: 16px;
  margin-bottom: 6px;
}

.threeD-card p {
  color: #bcbcbc;
  font-size: 13px;
}

.threeD-why {
  background: #050505;
  padding: 100px 10%;
  color: white;
}

.why-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT SIDE */

.why-left {
  flex: 1;
}

.why-left h2 {
  font-size: 48px;
  margin-bottom: 25px;
}

.why-left p {
  color: #bdbdbd;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* RIGHT SIDE */

.why-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ITEM */

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* ICON BOX */

.why-icon {
  width: 55px;
  height: 55px;
  background: #ffb100;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: black;
}

/* TEXT */

.why-item h3 {
  margin-bottom: 5px;
}

.why-item p {
  color: #bdbdbd;
  font-size: 14px;
}

.gallery {
  background: #050505;
  padding: 100px 10%;
  text-align: center;
}

.gallery h2 {
  color: white;
  font-size: 38px;
  font-weight: 900;
}

.gallery-text {
  color: #bdbdbd;
  margin-bottom: 50px;
}

/* GRID */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* IMAGE */

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

/* HOVER */

.gallery-grid img:hover {
  transform: scale(1.05);
}

.threeD-cta {
  background: #e5a325;
  text-align: center;
  padding: 100px 20px;
}

/* Heading */

.threeD-cta h2 {
  font-size: 48px;
  font-weight: 600;
  color: #000;
  margin-bottom: 20px;
}

/* Description */

.threeD-cta p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #111;
}

/* Buttons container */

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Button base */

.cta-buttons a {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

/* Dark button */

.btn-dark {
  background: black;
  color: white;
}

/* Outline button */

.btn-outline {
  border: 2px solid black;
  color: black;
}

/* Hover effects */

.btn-dark:hover {
  background: #222;
}

.btn-outline:hover {
  background: black;
  color: white;
}

/* ---------------------- internship page-------------------------------- */

.internship-page {
  background: #0f0f0f;
  color: #fff;
  font-family: "Roboto", sans-serif;
}

/* CONTAINER */

.internship-page .internship-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO SECTION */

.internship-page .internship-hero {
  padding: 50px 0 100px;
  background: #0f0f0f;
}

/* GRID */

.internship-page .internship-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* TEXT */

.internship-page .internship-hero-text h1 {
  font-size: 54px;
  line-height: 1.2;
  font-weight: 700;
}

.internship-page .internship-hero-text span {
  color: #e3a127;
}

.internship-page .internship-hero-text p {
  margin-top: 25px;
  color: #bfbfbf;
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
}

/* BUTTONS */

.internship-page .internship-buttons {
  margin-top: 35px;
  display: flex;
  gap: 20px;
}

.internship-page .internship-btn-primary {
  background: #e3a127;
  color: #000;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.internship-page .internship-btn-primary:hover {
  background: #f0b73d;
}

.internship-page .internship-btn-outline {
  border: 2px solid #e3a127;
  color: #e3a127;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.internship-page .internship-btn-outline:hover {
  background: #e3a127;
  color: #000;
}

/* IMAGE */

.internship-page .internship-hero-img img {
  width: 100%;
  max-width: 520px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .internship-page .internship-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .internship-page .internship-hero-text p {
    margin: auto;
  }

  .internship-page .internship-buttons {
    justify-content: center;
  }

  .internship-page .internship-hero-img {
    margin-top: 40px;
  }
}

@media (max-width: 600px) {
  .internship-page .internship-hero-text h1 {
    font-size: 36px;
  }

  .internship-page .internship-hero-text p {
    font-size: 16px;
  }
}

/* PROGRAM SECTION */

.internship-page .internship-programs {
  padding: 110px 0;
  background: #0f0f0f;
}

/* TITLE */

.internship-page .internship-section-title {
  text-align: center;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.internship-page .internship-section-title span {
  color: #e3a127;
}

/* SUBTITLE */

.internship-page .internship-section-subtitle {
  text-align: center;
  color: #bfbfbf;
  font-size: 18px;
  margin-bottom: 60px;
}

/* GRID */

.internship-page .internship-program-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* CARD */

.internship-page .internship-program-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #9e9e9e40;
  /* silver border */
  transition: 0.35s;
}

/* HOVER EFFECT */

.internship-page .internship-program-card:hover {
  transform: translateY(-10px);
  border-color: #e3a127;
  box-shadow: 0 12px 35px rgba(227, 161, 39, 0.25);
}

/* ICON CENTER */

.internship-page .internship-program-icon {
  width: 65px;
  height: 65px;
  background: #e3a127;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 20px auto;
}

.internship-page .internship-program-icon i {
  font-size: 26px;
  color: #000;
}

/* TITLE */

.internship-page .internship-program-card h3 {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* BULLET LIST */

.internship-page .internship-program-card ul {
  padding-left: 20px;
}

.internship-page .internship-program-card ul li {
  color: #d0d0d0;
  font-size: 15px;
  margin-bottom: 8px;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
  .internship-page .internship-program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .internship-page .internship-program-grid {
    grid-template-columns: 1fr;
  }

  .internship-page .internship-section-title {
    font-size: 32px;
  }
}

/* DURATION SECTION */

.internship-page .internship-duration {
  padding: 110px 0;
  background: #0f0f0f;
}

/* GRID */

.internship-page .internship-duration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.internship-page .internship-duration-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #9e9e9e40;
  transition: 0.35s;
}

/* HOVER */

.internship-page .internship-duration-card:hover {
  transform: translateY(-10px);
  border-color: #e3a127;
  box-shadow: 0 12px 30px rgba(227, 161, 39, 0.25);
}

/* ICON */

.internship-page .internship-duration-icon {
  width: 65px;
  height: 65px;
  background: #e3a127;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 20px auto;
}

.internship-page .internship-duration-icon i {
  font-size: 26px;
  color: #000;
}

/* TITLE */

.internship-page .internship-duration-card h3 {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* LIST */

.internship-page .internship-duration-card ul {
  padding-left: 20px;
}

.internship-page .internship-duration-card ul li {
  color: #d0d0d0;
  margin-bottom: 8px;
  font-size: 15px;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .internship-page .internship-duration-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .internship-page .internship-duration-grid {
    grid-template-columns: 1fr;
  }
}

/* duration section */
/* BENEFITS SECTION */

.internship-page .internship-benefits {
  padding: 110px 0;
  background: #0f0f0f;
}

/* GRID */

.internship-page .internship-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */

.internship-page .internship-benefit-card {
  background: #1a1a1a;
  padding: 35px 25px;
  border-radius: 12px;
  border: 1px solid #9e9e9e40;
  text-align: center;
  transition: 0.35s;
}

/* ICON */

.internship-page .internship-benefit-card i {
  font-size: 32px;
  color: #e3a127;
  margin-bottom: 15px;
}

/* TITLE */

.internship-page .internship-benefit-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* TEXT */

.internship-page .internship-benefit-card p {
  font-size: 15px;
  color: #cfcfcf;
}

/* HOVER */

.internship-page .internship-benefit-card:hover {
  transform: translateY(-8px);
  border-color: #e3a127;
  box-shadow: 0 10px 30px rgba(227, 161, 39, 0.25);
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .internship-page .internship-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .internship-page .internship-benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* APPLY SECTION */

.internship-page .internship-apply {
  background: #0f0f0f;
}

/* FORM */

.internship-page .internship-form {
  margin-top: 40px;
}

/* GRID */

.internship-page .internship-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* INPUTS */

.internship-page .internship-form input,
.internship-page .internship-form select,
.internship-page .internship-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: #1a1a1a;
  border: 1px solid #9e9e9e40;
  border-radius: 6px;
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

/* INPUT FOCUS */

.internship-page .internship-form input:focus,
.internship-page .internship-form select:focus,
.internship-page .internship-form textarea:focus {
  outline: none;
  border-color: #e3a127;
  box-shadow: 0 0 6px rgba(227, 161, 39, 0.4);
}

/* TEXTAREA FULL WIDTH */

.internship-page .internship-form textarea {
  grid-column: span 2;
  resize: none;
}

/* BUTTON */

.internship-page .internship-form-btn {
  margin-top: 30px;
  text-align: center;
}

.internship-page .internship-form-btn button {
  background: #e3a127;
  color: #000;
  padding: 14px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.internship-page .internship-form-btn button:hover {
  background: #f2b739;
  transform: translateY(-2px);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .internship-page .internship-form-grid {
    grid-template-columns: 1fr;
  }

  .internship-page .internship-form textarea {
    grid-column: span 1;
  }
}

/* FILE UPLOAD */

.internship-page .internship-file-upload {
  display: flex;
  flex-direction: column;
}

.internship-page .internship-file-upload label {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
}

.internship-page .internship-file-upload input[type="file"] {
  background: #1a1a1a;
  border: 1px solid #9e9e9e40;
  padding: 12px;
  border-radius: 6px;
  color: #bfbfbf;
  cursor: pointer;
}

.internship-page .internship-file-upload input[type="file"]:hover {
  border-color: #e3a127;
}
