/* Gentium-styled dark theme utilities */
:root{
  --c-bg:#0a0a0a;
  --c-muted:#141414;
  --c-text:#f1faee;
  --c-subtle:#8a8a8a;
  --c-primary:#E9204F;
}

html, body { background: var(--c-bg); color: var(--c-text); }
.wp-site-blocks { background: var(--c-bg); }

/* Sections */
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--loose { padding: 128px 0; }
.container{width: 90%; margin: 0 auto;}
.section-title,
.wp-block-heading.section-title {
  margin: 0;
  color: #d7d7d7;
}
.section-subtitle {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff4d5a; /* accent color */
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
}
/* short underline under title */
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-primary, #E9204F) !important;
  margin-top: 8px;
  opacity: .95;
}
/* Cards */
.portfolio-card{
  background: var(--c-muted);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.portfolio-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

/* Images */
.wp-block-post-featured-image img{ display:block; width:100%; height:100%; object-fit:cover; }

/* Headings */
h1,h2,h3,h4{ letter-spacing:-0.02em; }
h1{ font-weight:800; }
h2,h3{ font-weight:700; }

/* Buttons */
.wp-block-button__link{
  padding: 12px 22px;
}
.wp-block-button.is-style-outline .wp-block-button__link{
  background: transparent;
  border: 1px solid var(--c-primary);
  color: var(--c-text);
}

/* Links */
a{ text-decoration: none; }
a:hover{ opacity:.9; }

/* Header sticky helper (if desired) */
.is-sticky{ backdrop-filter: blur(6px); background: rgba(10,10,10,.65); }

/* Editor parity tweaks */
.editor-styles-wrapper{ background: var(--c-bg); color: var(--c-text); }

/* Simple fade-up in case AOS fails to load */
[data-aos]{ opacity:0; transform: translateY(12px); transition: all .6s ease; }
.aos-animate{ opacity:1 !important; transform: none !important; }

/* ===== Sticky Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
  background: transparent;
}

.site-header.is-sticky {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  padding: 12px 40px;
}

/* Inner container */
.site-header__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.site-branding .logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-text);
  text-decoration: none;
}

.site-branding img {
  max-height: 70px;
  height: auto;
  width: auto;
}

/* Menu */
.primary-menu {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.primary-menu a {
  color: var(--c-text);
  text-decoration: none;
  font-weight: 500;
  transition: color .25s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item a {
  color: var(--c-primary);
}

/* ===== Hamburger Button ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1100;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--c-text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Transform into "X" when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Mobile Nav ===== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0a0a0a;
  box-shadow: -4px 0 15px rgba(0,0,0,0.5);
  padding: 80px 30px;
  transition: right 0.3s ease;
  z-index: 1050;
}

.mobile-nav.active {
  right: 0;
}

.mobile-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin: 0;
}

.mobile-menu a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: color .25s ease;
}

.mobile-menu a:hover {
  color: var(--c-primary);
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
}

/* ===== Hero Section ===== */
.gentium-hero {
  position: relative;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gentium-hero .hero-title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeUp 1s ease forwards;
  opacity: 0;
}

.gentium-hero .hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: #ddd;
  margin-bottom: 40px;
  animation: fadeUp 1.4s ease forwards;
  opacity: 0;
}

.gentium-hero .hero-btn a {
  background: var(--c-primary);
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  transition: all .3s ease;
  animation: fadeUp 1.8s ease forwards;
  opacity: 0;
}

.gentium-hero .hero-btn a:hover {
  background: #fff;
  color: var(--c-primary) !important;
}
.ggg{min-height: 100vh !important;}
.ggg span{opacity: 1 !important; background-color: rgba(0, 0, 0, 0.7) !important; background-image: linear-gradient(transparent, rgba(10, 10, 10, .7)) !important;}
/* Simple fade-up animation */
@keyframes fadeUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ===== Features Section (Gentium style) ===== */
.features-section {
  margin: 0px auto;
  padding: 10px 0;
}
:root :where(.wp-block-group){padding: 25px;}
.entry-header{display: none;}
.page-content, .entry-content, .entry-summary{margin: 0 !important;}
.features-section .feature-item {
  background: #111;
  padding: 40px 30px;
  border-radius: 14px;
  transition: all 0.4s ease;
  text-align: center;
}

.features-section .feature-item.active,
.features-section .feature-item:hover {
  background: var(--c-primary, #E9204F);
}

.features-section .feature-icon img {
  max-width: 80px;
  margin-bottom: 20px;
  filter: brightness(10);
}

.features-section h3 {
  font-size: 20px;
  margin-bottom: 12px;
  position: relative;
}

.features-section h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 12px auto 0;
}

.features-section p {
  color: #ddd;
  font-size: 15px;
}


/* ===== Services Section ===== */
/* ---------- Gentium Services: enforced grid + styles ---------- */

/* the wrapper (group block with class services-grid) */
.wp-block-group.services-grid,
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  max-width: 1200px;
  margin: 40px auto;
  align-items: stretch;
}

/* service card - target WP group wrapper too */
.wp-block-group.service-box,
.service-box {
  box-sizing: border-box;
  background: #111;
  padding: 28px 22px;
  border-radius: 8px;
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* icon */
.wp-block-image.service-icon,
.service-icon {
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wp-block-image.service-icon img,
.service-icon img {
  width: 115px;
  height: auto;
  display: block;
  transition: filter .28s ease, transform .28s ease;
  position: absolute;
  left: 0;
  opacity: 0;
  filter: brightness(11);
  transform: translateX(-6px);
}
.active .service-icon img{opacity:0.5 !important;}

.service-box:hover .service-icon img{opacity: 1; transform: translateX(6px);}
.active:hover .service-icon img{filter: brightness(11) !important;}
/* title center area */
.service-title,
.wp-block-heading.service-title {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #d7d7d7;
  text-align: center;
  flex: 1 1 auto;
}

/* short underline under title */
.service-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: currentColor;
  margin: 8px auto 0;
  opacity: .95;
}

/* arrow on right */
.service-arrow {
  flex: 0 0 28px;
  text-align: right;
  font-size: 20px;
  color: #bdbdbd;
  transition: transform .28s ease, color .28s ease;
}

/* active (first card) */
.wp-block-group.service-box.active,
.service-box.active {
  background: var(--c-primary, #E9204F) !important;
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}
.wp-block-group.service-box.active .service-title,
.service-box.active .service-title,
.wp-block-group.service-box.active .service-arrow,
.service-box.active .service-arrow {
  color: #fff !important;
}
.wp-block-group.service-box.active .service-icon img,
.service-box.active .service-icon img {
  /*filter: none !important;*/
}

/* hover for non-active */
.wp-block-group.service-box:hover,
.service-box:hover {
  background: var(--c-primary, #E9204F) !important;
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.45);
}
.wp-block-group.service-box:hover .service-title,
.service-box:hover .service-title,
.wp-block-group.service-box:hover .service-arrow,
.service-box:hover .service-arrow {
  color: #fff !important;
}
.wp-block-group.service-box:hover .service-icon img,
.service-box:hover .service-icon img {
  /*filter: none !important;*/
}
.wp-block-group.service-box:hover .service-arrow,
.service-box:hover .service-arrow {
  transform: translateX(6px);
}

/* responsive */
@media (max-width: 992px) {
  .wp-block-group.services-grid,
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .wp-block-group.services-grid,
  .services-grid {
    grid-template-columns: 1fr !important;
  }
  .wp-block-group.service-box,
  .service-box {
    flex-direction: row;
    padding: 18px;
  }
  .service-title { font-size: 16px; }
  .service-icon img { width: 22px; }
}

/* Portfolio grid wrapper */
/* Portfolio Section */
.portfolio-section {
    padding: 0;
}

/* Owl Carousel overrides */
.portfolio-grid .owl-nav button {
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    margin: 0 5px;
}
.portfolio-grid .owl-nav button:hover {
    color: #ff5b5b;
}

/* Portfolio Item */
.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    text-align: center;
    padding: 0;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    filter: saturate(0);
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.00005);
    opacity: 1;
    filter: none;
}

/* Overlay */
.portfolio-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E9204F;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover::before {
    opacity: 0;
}

/* Title */
.portfolio-title {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    opacity: 0;
    transform: translate(-50%, -50%) translateY(20px);
    transition: all 0.4s ease;
    z-index: 2;
    padding: 10px 15px;
}

.portfolio-item:hover .portfolio-title {
    opacity: 1;
    transform: translate(-50%, -50%) translateY(0);
}

/* Owl Carousel Dots Styling */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background: #ddd;
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none; /* remove default button border */
    outline: none; /* remove focus outline */
}

.owl-dot:hover {
    background: #fff;
}

.owl-dot.active {
    background: #E9204F; /* Gentium pink/red accent color */
    width: 14px;
    height: 14px;
}
.owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: #ddd;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.owl-dot.active span {
    background: #E9204F;
}

/* ===============================
   ABOUT SECTION
=================================*/
.about-section {
  padding: 100px 0;
}

/* ---------- Part 1: Intro ---------- */
.about-intro {
  margin-bottom: 80px;
  align-items: center;
}


.about-intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: #666;
}

/* ---------- Part 2: Images ---------- */
.about-images {
  margin-bottom: 80px;
  gap: 30px;
}

.about-main-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.about-side-image {
  margin-bottom: 30px;
}

.about-side-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ---------- Part 3: Features ---------- */
.about-features {
  gap: 30px;
  text-align: center;
}

.about-features .feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-features .feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  max-width: 300px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .about-intro,
  .about-images,
  .about-features {
    flex-direction: column !important;
  }

  .about-intro-text {
    font-size: 16px;
  }
}

/* ---------- Hover Effects on About Images ---------- */
.about-main-image,
.about-side-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.about-main-image img,
.about-side-image img {
  transition: transform 0.5s ease;
}

.about-main-image:hover img,
.about-side-image:hover img {
  transform: scale(1.1);
}

/* Optional dark overlay */
.about-main-image::after,
.about-side-image::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.about-main-image:hover::after,
.about-side-image:hover::after {
  opacity: 1;
}

/* ---------- Testimonial Section ---------- */
.testimonial-section {
  display: flex;
  align-items: center;
  margin: 0px auto;
  gap: 40px;
}

.testimonial-image {
  position: relative;
}

.testimonial-image img {
  border-radius: 12px 12px 0;
  width: 100%;
  height: auto;
}

/* Decorative shape below image (Gentium style) */
.testimonial-image::after {
    content: "";
    position: absolute;
    bottom: -3%;
    right: -3%;
    width: 25%;
    height: 10px;
    background: #E9204F;
    z-index: 20;
}
.testimonial-image::before {
    content: "";
    position: absolute;
    bottom: -3%;
    right: -3%;
    width: 10px;
    height: 25%;
    background: #E9204F;
    z-index: 20;
}
.testimonial-heading {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.testimonial-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial-separator {
  width: 60px;
  border: 2px solid #E9204F;
  margin: 20px 0;
}

.testimonial-client {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.clients-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap; /* makes it responsive */
}

.clients-logos .client-logo img {
  max-width: 120px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.clients-logos .client-logo img:hover {
  filter: grayscale(0%);
}

/* Contact Section Layout */
/* Overlay background */
#contact-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://digitalglobelinks.com/demo/wp-content/uploads/2025/09/banner.png') center/cover no-repeat,
    #000 !important;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Contact form container */
#contact-overlay .overlay-content {
  padding: 40px;
  max-width: 600px;
  width: 90%;
  position: relative;
  border-radius: 12px;
  margin: 0 auto;
  background: rgba(0,0,0,0.8);
}

/* Close button */
#close-contact {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  cursor: pointer;
  color: #333;
}

/* Animate overlay */
#contact-overlay.show {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Contact Section Layout */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
}

/* Left: Social Icons */
.contact-social-icons {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-icons li a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color:#fff;
  font-size:20px;
}

.contact-social-icons li a img {
  width: 20px;
  height: 20px;
  filter: invert(1); /* makes icons white */
}

.contact-social-icons li a:hover {
  background: #E9204F; /* Gentium accent color */
}

/* Center: Heading */
.contact-heading {
  font-size: 3rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
  flex: 1;
  color: #fff;
}

/* Right: Enquiry Button */
.enquiry-button .wp-block-button__link {
  background: transparent;
  border: 2px solid #f9f9f9;
  color: #fff;
  padding: 14px 28px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.enquiry-button .wp-block-button__link:hover {
  background: #E9204F;
  color: #fff;
  border-color: #E9204F;
}

/* Overlay background */
/* === Fullscreen dark overlay === */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 15, 15, 0.96); /* almost black */
  display: none;
  margin: 0 auto;
  z-index: 99999;
  overflow-y: auto;
  padding: 40px 20px;
}

.contact-overlay.is-open {
  display: block;
}

/* === Form container === */
.overlay-content {
  padding: 60px 50px;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  text-align: center;
}

/* === Big heading (Gentium-like) === */
.overlay-title {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0 0 10px;
}

/* === Subtitle (optional tagline) === */
.overlay-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #777;
  margin-bottom: 30px;
}

/* === CF7 form elements styled cleanly === */
.contact-form-wrap input[type="text"],
.contact-form-wrap input[type="email"],
.contact-form-wrap input[type="tel"],
.contact-form-wrap textarea {
  width: 100%;
  border: none;
  border-bottom: 2px solid #eee;
  padding: 12px 0;
  margin-bottom: 25px;
  font-size: 16px;
  background: transparent;
  transition: border-color 0.3s;
  color: #fff;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: #fff;
  outline: none;
}

/* Submit button */
.contact-form-wrap input[type="submit"] {
  background: #E9204F;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 32px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form-wrap input[type="submit"]:hover {
  background: #111; /* Gentium accent */
}

/* === Close button (X) === */
.contact-overlay-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.contact-overlay-close:hover {
  color: #E9204F;
}

.site-footer{ background: #111;}
.fcont{display: flex; justify-content: space-between; width: 90%; margin: 0 auto;}
.post, .page{margin: 0;}
.concon{width: 80%; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap;}
.emailcon{margin-bottom: 25px; padding: 10px;}
.emailcon {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
/* short underline under title */
.emailcon::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-primary, #E9204F) !important;
  margin-top: 8px;
  opacity: .95;
}
.phonecon{margin-bottom: 25px; padding: 10px;}
.phonecon {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}
/* short underline under title */
.phonecon::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--c-primary, #E9204F) !important;
  margin-top: 8px;
  opacity: .95;
}
.concon a{color: #fff; transition: .3s ease;}
.concon a:hover{color: #E9204F;}
    .banner-heading{font-size:60px; line-height:1.05;}
@media (max-width: 576px) {
    .contact-social-icons{justify-content:center;}
    .banner-heading{font-size:38px; line-height:1.5;}
}