/* ============================= */
/* Background Grid Layer */
/* ============================= */
.graphic_design_background_section {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  background-color: #000; /* fallback to avoid gaps */
  margin-top: -160px;
}

.graphic_design_background_wrapper {
  position: absolute;
  top: -25%;
  left: -25%;
  width: 200vw;
  height: 300vh;
  transform: rotate(-15deg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
  pointer-events: none;
}

.graphic_design_background_row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.graphic_design_background_card {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  height: 180px;
}

.graphic_design_background_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================= */
/* Hero Section with Glassmorphism */
/* ============================= */
.graphic_design_hero_layer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 20px 0;
}

.graphic_design_hero_section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.graphic_design_hero_container {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 40px 20px;
  max-width: 900px;
  width: 90%;
  margin-top: 250px;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 25px rgb(0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
}

.graphic_design_hero_container h1 {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Inter", sans-serif;
}

.graphic_design_hero_container h1 span {
  background: linear-gradient(135deg, #FFD700, #FFC107, #FF8F00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.graphic_design_hero_container p {
  color: #ccc;
  font-size: 16px;
  line-height: 1.6;
}

.graphic_design_hero_stats {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}


/* ============================= */
/* Stats Extra Section */
/* ============================= */
.graphic_design_stats_extra {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding: 0px 20px 400px;
}

.graphic_design_stats_glass {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  box-shadow: 0 0 25px rgb(0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
}

.graphic_design_extra_stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}


/* ============================= */
/* Stat Cards */
/* ============================= */
.graphic_design_stat_card {
  background: rgba(0, 0, 0, 0.368);
  backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  text-align: center;
  width: 180px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.graphic_design_stat_card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 184, 0, 0.4);
  border-color: #ffb800;
}

.graphic_design_stat_card h3 {
  font-size: 24px;
  color: #ffb800;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.graphic_design_stat_card p {
  font-size: 14px;
  color: #ccc;
  transition: color 0.3s ease;
}

.graphic_design_stat_card:hover h3,
.graphic_design_stat_card:hover p {
  color: #fff;
}

.graphic_design_stat_card .icon_wrap {
  background: #ffb800;
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.graphic_design_stat_card:hover .icon_wrap {
  animation: bounce 0.6s ease;
  background: linear-gradient(135deg, #ffb800, #ffd84d);
  box-shadow: 0 0 12px rgba(255, 184, 0, 0.6);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ============================= */
/* Buttons (Optional) */
/* ============================= */
.graphic_design_btn {
  padding: 12px 24px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.graphic_design_btn.yellow {
  background-color: #ffb800;
  color: #000;
  font-weight: 600;
}

.graphic_design_btn.yellow:hover {
  background-color: #e0a200;
}

.graphic_design_btn.outline {
  background-color: transparent;
  border: 1px solid #ffb800;
  color: #ffb800;
  font-weight: 600;
}

.graphic_design_btn.outline:hover {
  background-color: #ffb800;
  color: #000;
}


/* ============================= */
/* Responsive Fixes */
/* ============================= */
@media (max-width: 768px) {
  .graphic_design_hero_container h1 {
    font-size: 2.8rem;
  }

  .graphic_design_stat_card {
    width: 45%;
  }

  .graphic_design_background_wrapper {
    width: 1550vw;
    height: 550vh;
    top: -35%;
    left: -30%;
  }
}

@media (max-width: 600px) {
  .graphic_design_hero_container h1 {
    font-size: 2.2rem;
  }

  .graphic_design_stat_card {
    width: 47%;
  }

  .graphic_design_stats_extra {
    padding-bottom: 70px;
  }
  .graphic_design_hero_layer {
    padding: 270px 20px 0;
}
.graphic_design_background_section {
    margin-top: -330px;
}
}

@media (max-width: 415px) {
    .graphic_design_stats_extra {
        padding-bottom: 70px;
    }
        .graphic_design_stat_card {
        width: 45%;
    }
    .graphic_design_Services_card ul li {
    text-align: left;
}
}



/* service  */
.graphic_design_Services_section {
  background: black;
  padding: 80px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.graphic_design_Services_heading {
  text-align: center;
  margin-bottom: 50px;
}

.graphic_design_Services_heading h2 {
  font-size: 36px;
  color: #fff;
}

.graphic_design_Services_heading h2 span {
    background: linear-gradient(135deg, #FFD700, #FFC107, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.graphic_design_Services_heading p {
  color: #aaa;
  margin-top: 10px;
  font-size: 16px;
}

.graphic_design_Services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.graphic_design_Services_card {
  background: #131318;
  border: 1px solid #333;
  border-radius: 14px;
  padding: 30px 25px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 0 0 transparent;
}

.graphic_design_Services_card:hover {
  box-shadow: 0 0 20px rgba(255, 184, 0, 0.4);
  border-color: #ffb800;
}

.graphic_design_Services_card .icon_wrap {
  background: #ffb800;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 20px;
}

.graphic_design_Services_card .icon_wrap img {
  width: 20px;
  height: 20px;
}

.graphic_design_Services_card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.graphic_design_Services_card p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.5;
}

.graphic_design_Services_card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.graphic_design_Services_card ul li {
  font-size: 14px;
  color: rgba(156, 163, 175, 1); /* <-- your requested color */
  margin-bottom: 6px;
  position: relative;
  padding-left: 18px;
  text-align: left;
}


.graphic_design_Services_card ul li::before {
  content: '•';
  color: #ffb800;
  position: absolute;
  left: 0;
  top: 0;
}




/* About  */

.graphic_design_About_section {
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
}

.graphic_design_About_wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.graphic_design_About_left {
  flex: 1;
  min-width: 300px;
}

.graphic_design_About_left h2 {
  font-size: 40px;
  margin-bottom: 20px;
      text-align: left;
}

.graphic_design_About_left h2 span {
      background: linear-gradient(135deg, #FFD700, #FFC107, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.graphic_design_About_left .tagline {
  font-size: 20px;
  color: #eaeaea;
  margin-bottom: 20px;
}

.graphic_design_About_left .description {
  color: #aaa;
  margin-bottom: 30px;
  line-height: 1.6;
}

.graphic_design_About_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.graphic_design_About_features h4 {
  color: #ffb800;
  margin-bottom: 4px;
  font-size: 16px;
}

.graphic_design_About_features p {
  font-size: 14px;
  color: #ccc;
}

.graphic_design_About_btn {
  background: #ffb800;
  color: #000;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.graphic_design_About_btn:hover {
  background: #e6a600;
}

.graphic_design_About_right {
  flex: 1;
  min-width: 300px;
}

.graphic_design_About_card {
    /* background: #111; */
    /* border: 1px solid #ffb800; */
    border-radius: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, .03);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 215, 0, .2);
}

.graphic_design_About_card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.graphic_design_About_stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.graphic_design_About_progress {
  font-size: 14px;
}

.graphic_design_About_progress span {
  display: inline-block;
  width: 50%;
  color: #ccc;
}

.graphic_design_About_progress .highlightt {
  text-align: right;
  color: #ffb800;
  float: right;
}

.graphic_design_About_progress .bar {
  background: #333;
  height: 8px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 6px;
}

.graphic_design_About_progress .bar div {
  height: 100%;
  background: #ffb800;
}




/* Our Portfolio */


.graphic_design_portfolio_section {
  background: #000;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
}

.graphic_design_portfolio_heading h2 {
 font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FFD700, #FFC107, #000000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.graphic_design_portfolio_heading span {
  background: linear-gradient(135deg, #FFD700, #FFC107, #FF8F00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.graphic_design_portfolio_heading p {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 40px;
}

.graphic_design_slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #ffb800; /* golden border */
  background: #111; /* subtle dark bg to highlight border */
}

.graphic_design_slide {
  display: none;
  position: relative;
}

.graphic_design_slide img {
  width: 100%;
  height: 400px; /* Fixed consistent height */
  object-fit: cover; /* Ensures image fills area neatly */
  display: block;
  /* border-radius: 8px; */
}


.graphic_design_slide_text {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* opacity effect */
  width: 100%;
  padding: 20px;
  text-align: left;
}

.graphic_design_slide_text h4 {
  color: #ffb800;
  margin: 0;
  font-size: 14px;
}

.graphic_design_slide_text h3 {
  margin: 5px 0;
  font-size: 20px;
  font-weight: bold;
}

.graphic_design_slide_text p {
  color: #ccc;
  font-size: 13px;
}

.graphic_design_nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 2;
  font-size: 18px;
  border-radius: 50%;
}

#graphic_design_prev {
  left: 10px;
}

#graphic_design_next {
  right: 10px;
}

.graphic_design_dots {
  margin-top: 20px;
  margin-bottom: 20px;
}

.graphic_design_dots .dotty {
  height: 12px;
  width: 12px;
  margin: 0 6px;
  background-color: #1a1a1a; /* Inactive dot background */
  border: 2px solid #ffb800; /* Gold border */
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.graphic_design_dots .dotty.active {
  background-color: #ffb800; /* Gold active dot */
  border: 2px solid #fff;    /* White border when active */
}
