:root {
  --surface-color: #1b262c;
  --bg-color: #031119;
  --text-color: #ffffff;
  --accent-color: #e3a127;
  --circle-bg: #0e1117;
  --nav-color: rgba(255, 255, 255, 0.8);
  --nav-hover-color: #e3a127;
  --nav-dropdown-background-color: #29343a;
  --nav-dropdown-hover-color: #e3a127;
  --main-blue: var(--accent-color);
  --text-dark: var(--bg-color);
  --white: var(--surface-color);
}


.header {
  /* background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  color: var(--text-color);
  text-align: center;
  padding: 100px 100px;

}

.header.webdev {
  background-image: url('../content_imgs/web_h_4.jpg');
}

.header.mobiledev {
  background-image: url('../content_imgs/mobile_dev_h_1.jpg');
}

.header.ecomdev {
  background-image: url('../content_imgs/ecommer_h_1.jpg');
}

.header.appmaint {
  background-image: url('../content_imgs/applicat_h_1.webp');
}

.header.infra {
  background-image: url('../content_imgs/infra_h_1.webp');
}

.header.productdev {
  background-image: url('https://creedglobal.com/wp-content/uploads/2016/09/c3.jpg');
}

.header.devops {
  background-image: url('../content_imgs/devoops.jpg');
}


.content_b-header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.content_b-header p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: auto;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.content_b-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background-color: var(--accent-color);
  color: var(--text-dark);
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.content_b-btn:hover {
  background-color: var(--nav-hover-color);
}

.content_b-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  color: var(--text-color);

}

.content_b-section h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 40px;
  font-size: 2rem;
}

.content_b-about,
.content_b-areas,
.content_b-contact,
.content_b-testimonials,
.content_b-rentals {
  background: var(--circle-bg);
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 40px;
  color: var(--text-color);
}

.content_b-about img {
  float: right;
  width: 200px;
  border-radius: 50%;
  margin-left: 20px;
}

.about_b_points li {
  list-style-type: none;
}

.content_b-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.content_b-about p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.form_b input,
.form_b textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  background: var(--surface-color);
  border: 1px solid #444;
  border-radius: 4px;
  font-size: 1rem;
  color: var(--text-color);
}

.form_b button {
  background: var(--accent-color);
  color: var(--text-dark);
  padding: 14px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
}

.form_b button:hover {
  background-color: var(--nav-hover-color);
}

.content_b-testimonial {
  margin-bottom: 25px;
  padding-left: 15px;
  border-left: 5px solid var(--accent-color);
  font-style: italic;
  color: #ccc;
}

.content_b-testimonial strong {
  display: block;
  margin-top: 8px;
  font-style: normal;
  color: var(--accent-color);
}

.content_b-footer {
  text-align: center;
  padding: 20px;
  background: var(--surface-color);
  font-size: 0.9rem;
  color: var(--text-color);
}

ul {
  padding-left: 20px;
}

.content_b-rental-listing {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}

.content_b-rental-listing img {
  width: 250px;
  height: auto;
  border-radius: 10px;
  margin-right: 20px;
  object-fit: cover;
}

.content_b-rental-info {
  flex: 1;
}

.content_b-rental-info h3 {
  margin-top: 0;
  color: var(--accent-color);
}

/* Gallery section */
.content_b-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.content_b-gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content_b-gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .content_b-about img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
    width: 150px;
  }

  .content_b-rental-listing {
    flex-direction: column;
  }

  .content_b-rental-listing img {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .content_b-header h1 {
    font-size: 2.2rem;
  }

  .content_b-header p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 60px 20px;

  }

  .header h1 {
    margin-top: 50px;
    text-align: center;

  }
}




/* dital_marketing style start here  */


/* PPC style Here  */
.digital_ppc_sec {
  background-color: #112222;
}

.digital_ppc_section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.digital_ppc_heading {
  text-align: center;
  margin-bottom: 40px;
}

.digital_ppc_heading h2 {
  font-size: 28px;
  font-weight: bold;
}

.digital_ppc_heading p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
}

.digital_ppc_columns {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.digital_ppc_column {
  flex: 1 1 48%;
  background-color: #112222;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.digital_ppc_column h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.digital_ppc_column p {
  font-size: 16px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .digital_ppc_columns {
    flex-direction: column;
  }
}


/* General Styles */
:root {
  --surface-color: #1b262c;
  --bg-color: #031119;
  --text-color: #ffffff;
  --accent-color: #e3a127;
  --circle-bg: #0e1117;
  --nav-color: rgba(255, 255, 255, 0.8);
}

/* General Styles */
.digital_searchads_sec {
  background-color: var(--bg-color);
  color: var(--text-color);
}

.digital_searchads_section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.digital_searchads_heading {
  text-align: center;
  margin-bottom: 40px;
}

.digital_searchads_heading h2 {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
}

.digital_searchads_heading p {
  font-size: 18px;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
  color: var(--nav-color);
}

/* Columns Layout */
.digital_searchads_columns {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  gap: 30px;
}

.digital_searchads_column {
  flex: 1 1 48%;
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.digital_searchads_column h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--accent-color);
}

.digital_searchads_column p {
  font-size: 16px;
  line-height: 1.7;
}

/* Divider */
.digital_searchads_divider {
  position: absolute;
  left: 50%;
  top: 12.5%;
  height: 75%;
  width: 6px;
  background-color: var(--accent-color);
  border-radius: 3px;
  transform: translateX(-50%);
}

/* Responsive */
@media (max-width: 768px) {
  .digital_searchads_columns {
    flex-direction: column;
  }

  .digital_searchads_divider {
    display: none;
  }

  .digital_searchads_column {
    flex: 1 1 100%;
  }
}




/* Content marketing style here   */

.digital_content_container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.digital_content_heading {
  text-align: center;
  margin-bottom: 40px;
}

.digital_content_heading h2 {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.digital_content_heading p {
  font-size: 18px;
  color: #ccc;
}

.digital_content_section {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.digital_content_section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.digital_content_section p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

.digital_content_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.digital_content_card {
  background-color: #224051;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.digital_content_card:hover {
  background-color: #2b5e74;
}

.digital_content_card h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.digital_content_card p {
  color: #ccc;
  font-size: 15px;
}

@media (max-width: 768px) {
  .digital_content_heading h2 {
    font-size: 26px;
  }

  .digital_content_section h3 {
    font-size: 22px;
  }
}



/* digital PR style start here  */
.digital_pr_container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.digital_pr_heading {
  text-align: center;
  margin-bottom: 40px;
}

.digital_pr_heading h2 {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.digital_pr_heading p {
  font-size: 18px;
  color: #ccc;
}

.digital_pr_section {
  background-color: var(--section-bg);
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.digital_pr_section h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.digital_pr_section p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

.digital_pr_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.digital_pr_card {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: 0.3s ease-in-out;
}

.digital_pr_card:hover {
  background-color: #345b6c;
}

.digital_pr_card h4 {
  color: var(--accent-color);
  margin-bottom: 10px;
}

.digital_pr_card p {
  color: #ccc;
  font-size: 15px;
}

@media (max-width: 768px) {
  .digital_pr_heading h2 {
    font-size: 26px;
  }

  .digital_pr_section h3 {
    font-size: 22px;
  }
}






/* Revenu Generation  style start here  */
.revenue_header {
  background-color: #14213d;
  color: white;
  text-align: center;
  padding: 100px 100px;
}

.revenue_header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.revenue_header p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

.revenue_section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.revenue_section h2 {
  color: #e3a127;
  font-size: 28px;
  margin-bottom: 10px;
  text-align: center;
}

.revenue_section p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
 

}
.revenue_card {
  padding-top: 50px;
}

.revenue_card h3 {
  margin-bottom: 10px;
  color: #e3a127;
  text-align: right;
  
}

.revenue_cta {
  background-color: #14213d;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta_container {
  max-width: 800px;
  margin: auto;
}

.revenue_cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.revenue_cta p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta_btn {
  background-color: #fca311;
  color: #14213d;
  padding: 12px 30px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.cta_btn:hover {
  background-color: #e59400;
}

/* Revenu Generation  style End here  */


/*  Webdesign & Developemnt  style Start here */
.web_b_w_section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.web_b_w_heading {
  text-align: center;
  margin-bottom: 40px;
}

.web_b_w_heading h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.web_b_w_heading p {
  font-size: 16px;
  color: var(--nav-color);
  max-width: 700px;
  margin: 10px auto 0;
}

/* Website Type Cards */
.web_b_w_types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.web_b_w_card {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.web_b_w_card:hover {
  transform: translateY(-6px);
}

.web_b_w_card h3 {
  color: var(--accent-color);
  margin-bottom: 10px;
  font-size: 20px;
}

.web_b_w_card p {
  font-size: 14px;
  color: var(--nav-color);
}

/* Feature List */
.web_b_w_features {
  text-align: center;
  margin-bottom: 50px;
}

.web_b_w_features h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.web_b_w_features ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.web_b_w_features li {
  background-color: var(--circle-bg);
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-color);
}

/* CTA */
.web_b_w_cta {
  text-align: center;
  margin-top: 30px;
}

.web_b_w_btn {
  background-color: var(--accent-color);
  color: var(--text-dark);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.web_b_w_btn:hover {
  background-color: #cf8f1d;
}


.web_b_w_types {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 cards per row */
  gap: 25px;
  margin: 40px 0;
}

@media (max-width: 992px) {
  .web_b_w_types {
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row on medium screens */
  }
}

@media (max-width: 600px) {
  .web_b_w_types {
    grid-template-columns: 1fr; /* 1 card per row on small screens */
  }
}



/* Process feature webdesign css :start */
.web_b_w_process_section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
}

.web_b_w_process_container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.web_b_w_process_content {
  flex: 1 1 500px;
}

.web_b_w_process_content h2 {
  font-size: 30px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.web_b_w_process_content ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.web_b_w_process_content li {
  margin-bottom: 15px;
  line-height: 1.6;
  color: var(--nav-color);
}

.web_b_w_process_image {
  flex: 1 1 500px;
  text-align: center;
}

.web_b_w_process_image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .web_b_w_process_container {
    flex-direction: column;
  }

  .web_b_w_process_image,
  .web_b_w_process_content {
    flex: 1 1 100%;
  }
}




/*  Webdesign & Developemnt  style End here  */

/* Branding  design style start here  */
.graphic_b_services_section {
  background-color: var(--bg-color);
  color: var(--text-color);
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.graphic_b_services_heading {
  text-align: center;
  margin-bottom: 50px;
}

.graphic_b_services_heading h2 {
  font-size: 32px;
  color: var(--accent-color);
}

.graphic_b_services_heading p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  color: var(--nav-color);
}

.graphic_b_service_block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.graphic_b_service_block.reverse {
  flex-direction: row-reverse;
}

.graphic_b_service_content {
  flex: 1 1 500px;
}

.graphic_b_service_content h3 {
  font-size: 24px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.graphic_b_service_content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--nav-color);
  margin-bottom: 10px;
}

.graphic_b_service_image {
  flex: 1 1 450px;
  text-align: center;
}

.graphic_b_service_image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .graphic_b_service_block,
  .graphic_b_service_block.reverse {
    flex-direction: column;
  }

  .graphic_b_service_image,
  .graphic_b_service_content {
    flex: 1 1 100%;
  }

  .graphic_b_services_heading h2 {
    font-size: 28px;
  }
}
/* Branding  design style End  here  */