
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #000;
    width: 900px; /* Increased width */
    display: flex;
    gap: 30px;
    padding: 15px 30px; /* Reduced padding for compact height */
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
    border: 1px solid #555;
    transform: translateY(10px); /* Start from a lower position */
    transition: all 0.3s ease-out;
}

/* Show Mega Menu on Hover */
.menu-item-has-children:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); /* Move to its original position */
}
.menu-item-has-children > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #FFD700, #FFC107, #FFA500); /* Gold Gradient */
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* When parent or mega-menu is hovered, show underline */
.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus-within > a::after {
    width: 100%;
}
/* Mega Menu Columns */
.mega-menu-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

/* Hover effect for individual service columns */
.mega-menu-column:hover {
    transform: scale(1.05);
    
    /* Slightly zoom in when hovered */
}

/* Parent needs position relative and proper text alignment */
.mega-menu-column a {
    color: #ffffff !important; /* Enforced white color for text */
    font-size: 14px; /* Reduced font size for better alignment */
    text-decoration: none; /* Removed underline */
    display: flex !important;
    align-items: center !important; /* Align icon and text horizontally */
    justify-content: flex-start  !important; /* Ensure items are left aligned */
    gap: 10px; /* Space between icon and text */
    padding: 10px 0; /* Added some vertical padding for better spacing */
    transition: all 0.4s ease; /* Smooth transition for all properties */
}

/* Hover effect on individual items */
.mega-menu-column a:hover {
    transform: translateX(10px); /* Push item towards the screen */
    background-color: rgba(255, 255, 255, 0.1); /* Light hover background */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Light shadow effect */
}
.mega-menu-column a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px; /* Thickness of underline */
    width: 0;
    background: linear-gradient(90deg, #e0ae31, #ffd700); /* Gold gradient */
    transition: width 0.4s ease;
    border-radius: 2px;
}

/* Expand the line on hover */
.mega-menu-column a:hover::after {
    width: 100%;
}
/* Icon Circle Effect with futuristic fluid animation */
.icon-circle {
    width: 50px; /* Increased icon size */
    height: 50px; /* Increased icon size */
    border-radius: 50%;
    background: linear-gradient(135deg, #000, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.6s ease-out;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4); /* Slight shadow for depth */
    transform: scale(1) translateZ(0); /* 3D effect */
}

.icon-circle:hover .menu-icon {
    color: #e0ae31; /* Apply gold color to the icon */
    transition: color 0.3s ease-out; /* Smooth transition for color */
    transform: scale(1.1) rotate(10deg); /* Slight scale and rotation for a metallic look */
    filter: brightness(1.2) saturate(1.5); /* Metallic effect (shine effect) */
}

/* Futuristic Hover effect with liquid morphing and color shift */
.icon-circle:hover {
    transform: scale(1.2) rotate(15deg) translateZ(10px); /* Fluid movement */

    animation: liquidMorph 1.2s infinite ease-out; /* Morphing animation */
}
/* Pulsing Glow Effect */
@keyframes liquidMorph {
    0% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 30px rgba(224, 174, 49, 0.6), 0 0 60px rgba(224, 174, 49, 0.4);
    }
    50% {
        transform: scale(1.15) rotate(15deg);
        box-shadow: 0 0 40px rgba(224, 174, 49, 0.8), 0 0 80px rgba(224, 174, 49, 0.5);
    }
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 30px rgba(224, 174, 49, 0.6), 0 0 60px rgba(224, 174, 49, 0.4);
    }
}

/* Icon Color */
.menu-icon {
    color: #fff;
    font-size: 22px; /* Increased icon font size */
    transition: color 0.3s ease-in-out; /* Smooth transition for color */
}

/* Hover color change for icons */
.mega-menu-column a:hover .menu-icon {
    color: #e0ae31; /* Gold color when hovered */
}

/* Dropdown Icon */
.dropdown-icon {
    margin-left: 8px;
    font-size: 14px;
    color: #ffffff;
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; /* Smooth transition for transform and color */
}

/* Hover effect on the dropdown icon */
.mega-menu-column a:hover .dropdown-icon {
    transform: rotate(180deg); /* Rotate the icon on hover */
    color: #e0ae31; /* Gold color */
}


#main-menu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px; /* small space between text and icon */
}/* Right-Side Info (Includes Get a Quote Button) */
.right-info {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    width: 100%;
    padding-right: 20px; /* Adjust spacing */
}

.right-info a, .right-info span {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.right-info a:hover {
    color: #ffcc00;
}

/* Live Chat Blinking Effect */
.blink-text {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% { color: #ffcc00; }
    50% { color: white; }
    100% { color: #ffcc00; }
}

/* Quotation Button */
.quote-btn {
    background: transparent;
    color: #ffcc00;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 5px;
    border: 2px solid;
    border-image: linear-gradient(to right, black, #ffcc00);
    border-image-slice: 1;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #fc00;
    color: whites;
}


/************************************************************************************************************* Core Servie Section ****************************************************************************/

.highlighted-heading {
  font-size: 2.5rem;
  color: #C0C0C0; /* silver metallic */
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
}

.highlighted-heading .gold-gradient {
background: linear-gradient(90deg, #ffd700, #ffd700); /* Single golden gradient */
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-weight: 800;
}

.core-services-section {
  background: var(--dark-bg); /* Black background */
  color: var(--white); /* White text color */
  padding: 60px 20px;
}

.core-services-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  align-items: center;
}

.core-services-section .left-column {
  flex: 1 1 40%;
}

.core-services-section .left-column p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.core-services-section .right-column {
  flex: 1 1 55%;
  text-align: center;
}

.core-services-section .atom-design {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
  z-index: 1;
  overflow: hidden;
}

.core-services-section .center-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--dark-bg);
  color: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: auto;
  padding: 30px;
  font-weight: 600;
  font-size: 1.5rem;
  z-index: 1;
}

.core-services-section .center-bubble small {
  margin-top: 8px;
  font-weight: normal;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.5;
}

.core-services-section .service-circle {
  position: absolute;
  width: 85px;
  height: 85px;
  background: radial-gradient(circle at 30% 30%, #333, var(--dark-bg));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  z-index: 2;
}

.core-services-section .service-circle:hover {
  transform: scale(1.15);
  background: radial-gradient(circle at 30% 30%, var(--gold3) 0%, var(--gold2) 50%, #7A552E 100%);
}

.core-services-section .service-circle.active {
  background: radial-gradient(circle at 30% 30%, #FFF2B0, #FFD700, #B8860B);
}

.core-services-section .service-circle i {
  font-size: 3rem;
  transition: background 0.3s ease;
}

.core-services-section .service-circle.active i {
  color: #000000; /* Black icon color when active */
}

.core-services-section .service-circle:hover i {
  background: linear-gradient(45deg, var(--gold3), var(--gold2), var(--gold1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes rotateOrbit {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes pulseBorder {
  0% {
    border-color: rgba(255, 255, 255, 0.5);
  }
  50% {
    border-color: rgba(218, 169, 83, 0.8); /* Gold shade */
  }
  100% {
    border-color: rgba(255, 255, 255, 0.5);
  }
}

.core-services-section .atom-design::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  animation: pulseBorder 3s ease-in-out infinite;
}

.core-services-section .service-circle:nth-child(2) {
  top: 30px;
  left: 30px;
}

.core-services-section .service-circle:nth-child(3) {
  top: 30px;
  right: 30px;
}

.core-services-section .service-circle:nth-child(4) {
  bottom: 30px;
  right: 30px;
}

.core-services-section .service-circle:nth-child(5) {
  bottom: 30px;
  left: 30px;
}

.bubble-subheading {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e3b433;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3), 0 1px 1px rgba(0, 0, 0, 0.1);
}


/***************************************************** digral COnsutalnt section *****************************************************************************************************************************/
.digital-consultant-section {
  padding: 120px 20px 0px;
  overflow: hidden;
  color: var(--white);
  background: #0a0a0a;
}

.digital-consultant-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
}

.digital-consultant-section .left-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.digital-consultant-section .highlight-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #FFD700, #DAA520, #B8860B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.digital-consultant-section .subtitle {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #fff;
}

.digital-consultant-section .description {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.digital-consultant-section .hero-btn-group-2 {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.digital-consultant-section .secondary-btn {
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  background: transparent;
  border: 2px solid var(--gold2, #DAA520);
  color: var(--gold2, #DAA520);
  transition: all 0.3s ease;
}

.digital-consultant-section .secondary-btn:hover {
  background: var(--gold2, #DAA520);
  color: #000;
}

.digital-consultant-section .right-lottie {
  flex: 1 1 45%;
  max-width: 500px;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.digital-consultant-section .right-lottie dotlottie-player {
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 300px;
}

/* Responsive */




.testimonialwrp .txtwrp {
    display: block;
    text-align: center;
}
.worldwrp .txtwrp {
    display: block;
    text-align: center;
}










  .guidance-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: black;
    color: white;
  }

  .lottie-bg {
    position: absolute;
    top: 50%;
    right: 0; /* moved to right side */
    transform: translateY(-50%);
    width: 350px; /* BIGGER size */
    height: 350px;
    opacity: 1; /* full original color */
    pointer-events: none; /* so it doesn't block buttons */
    z-index: 1;
  }

  .lottie-bg dotlottie-player {
    width: 100%;
    height: 100%;
  }

  .guidance-content {
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 2; /* stays on top of Lottie */
  }

  .guidance-content h1 {
    font-size: 2.5rem;
    color: white;
    line-height: 1.3;
  }

  .guidance-content p {
    font-size: 1.2rem;
    color: #E6E6E6;
    margin: 20px 0;
  }

  .highlight {
    color: #DCA629;
  }
.testimonial-quote .testimonial-quote-icon {
  color: silver;
}

.testimonial-quote .quote-text {
  color: silver;
}

.testimonial-content .star-rating i {
  color: silver; /* Default color for stars */
}

.testimonial-content .star-rating .filled {
  color: gold;
}

.testimonial-content small.Posted-review {
  color: #dea62b; /* Gold color for Posted reviews */
}

 /* Responsive Styles */
@media (max-width: 768px) {
  .guidance-content h1 {
    font-size: 2rem;
  }

  .guidance-content p {
    font-size: 1rem;
  }

  .primary-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .lottie-bg {
    display: none; /* Hide Lottie animation on mobile */
  }
}

@media (max-width: 480px) {
  .guidance-content h1 {
    font-size: 1.6rem;
  }

  .guidance-content p {
    font-size: 0.95rem;
  }

  .lottie-bg {
    display: none; /* Hide Lottie animation on mobile */
  }
}

@media screen and (max-width: 768px) {
  .digital-consultant-section .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 100px 20px 0px;
  }

  .digital-consultant-section .left-content,
  .digital-consultant-section .right-lottie {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .digital-consultant-section .highlight-title {
    font-size: 2rem;
  }

  .digital-consultant-section .subtitle {
    font-size: 1.4rem;
  }

  .digital-consultant-section .right-lottie {
    padding-top: 40px;
  }

  .digital-consultant-section .hero-btn-group-2 {
    justify-content: center;
  }
}







@media (max-width: 768px) {
  .core-services-section .container {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }

  .core-services-section .atom-design {
    width: 280px;
    height: 320px;
    max-width: 100%;
    position: relative;
    overflow: visible;
  }

  .core-services-section .atom-design::before {
    width: 320px;
    height: 320px;
  }

  .core-services-section .center-bubble {
    width: 90%;
    max-width: 240px;
    padding: 16px;
    font-size: 0.95rem;
  }

  .core-services-section .center-bubble p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .core-services-section .center-bubble small {
    font-size: 0.75rem;
  }

  .core-services-section .service-circle {
    width: 50px;
    height: 50px;
    font-size: 0.95rem;
  }

  .core-services-section .service-circle i {
    font-size: 1.5rem;
  }

  /* Position orbit icons slightly tighter */
  .core-services-section .service-circle:nth-child(2) {
    top: 8px;
    left: 8px;
  }

  .core-services-section .service-circle:nth-child(3) {
    top: 8px;
    right: 8px;
  }

  .core-services-section .service-circle:nth-child(4) {
    bottom: 8px;
    right: 8px;
  }

  .core-services-section .service-circle:nth-child(5) {
    bottom: 8px;
    left: 8px;
  }

  /* Disable rotate orbit animation for mobile */
  .core-services-section .atom-design::before {
    animation: none;
  }
}

/* Mobile screens (up to 480px) */
@media (max-width: 480px) {
  .highlighted-heading {
    font-size: 1.2rem;/* -----------------------------------------
   Google Reviews Section
----------------------------------------- */
.google-reviews-section {
  background-color: #000;
  color: #fff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.google-reviews h3 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 20px;
}

/* -----------------------------------------
   Mega Menu Styles
----------------------------------------- */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #000;
  width: 900px;
  display: flex;
  gap: 30px;
  padding: 15px 30px;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border-radius: 8px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.6);
  border: 1px solid #555;
  transform: translateY(10px);
  transition: all 0.3s ease-out;
}

.menu-item-has-children:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #FFD700, #FFC107, #FFA500);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.menu-item-has-children:hover > a::after,
.menu-item-has-children:focus-within > a::after {
  width: 100%;
}

.mega-menu-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transform: scale(0.95);
  transition: transform 0.3s ease-in-out;
}

.mega-menu-column:hover {
  transform: scale(1.05);
}

.mega-menu-column a {
  color: #ffffff !important;
  font-size: 14px;
  text-decoration: none;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px;
  padding: 10px 0;
  transition: all 0.4s ease;
  position: relative;
}

.mega-menu-column a:hover {
  transform: translateX(10px);
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.mega-menu-column a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #e0ae31, #ffd700);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.mega-menu-column a:hover::after {
  width: 100%;
}

/* -----------------------------------------
   Icon Circle with Futuristic Effects
----------------------------------------- */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000, #555);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  transition: all 0.6s ease-out;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
  transform: scale(1) translateZ(0);
}

.icon-circle:hover .menu-icon {
  color: #e0ae31;
  transition: color 0.3s ease-out;
  transform: scale(1.1) rotate(10deg);
  filter: brightness(1.2) saturate(1.5);
}

.icon-circle:hover {
  transform: scale(1.2) rotate(15deg) translateZ(10px);
  animation: liquidMorph 1.2s infinite ease-out;
}

@keyframes liquidMorph {
  0% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 30px rgba(224, 174, 49, 0.6), 0 0 60px rgba(224, 174, 49, 0.4);
  }
  50% {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 0 40px rgba(224, 174, 49, 0.8), 0 0 80px rgba(224, 174, 49, 0.5);
  }
  100% {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 0 30px rgba(224, 174, 49, 0.6), 0 0 60px rgba(224, 174, 49, 0.4);
  }
}

.menu-icon {
  color: #fff;
  font-size: 22px;
  transition: color 0.3s ease-in-out;
}

.mega-menu-column a:hover .menu-icon {
  color: #e0ae31;
}

.dropdown-icon {
  margin-left: 8px;
  font-size: 14px;
  color: #ffffff;
  transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.mega-menu-column a:hover .dropdown-icon {
  transform: rotate(180deg);
  color: #e0ae31;
}

#main-menu .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* -----------------------------------------
   Right Side Info (Get Quote, Live Chat)
----------------------------------------- */
.right-info {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  width: 100%;
  padding-right: 20px;
}

.right-info a,
.right-info span {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.right-info a:hover {
  color: #ffcc00;
}

.blink-text {
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% { color: #ffcc00; }
  50% { color: white; }
  100% { color: #ffcc00; }
}

.quote-btn {
  background: transparent;
  color: #ffcc00;
  padding: 8px 15px;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid;
  border-image: linear-gradient(to right, black, #ffcc00);
  border-image-slice: 1;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #fc0;
  color: white;
}

/* -----------------------------------------
   Core Services Section
----------------------------------------- */
.core-services-section {
  background: var(--dark-bg);
  color: var(--white);
  padding: 60px 20px;
}

.core-services-section .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  align-items: center;
}

.core-services-section .left-column {
  flex: 1 1 40%;
}

.core-services-section .left-column p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.core-services-section .right-column {
  flex: 1 1 55%;
  text-align: center;
}

.core-services-section .atom-design {
  position: relative;
  width: 500px;
  height: 500px;
  margin: auto;
  z-index: 1;
  overflow: hidden;
}

.core-services-section .center-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--dark-bg);
  color: var(--white);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 400px;
  height: auto;
  padding: 30px;
  font-weight: 600;
  font-size: 1.5rem;
  z-index: 1;
}

.core-services-section .center-bubble small {
  margin-top: 8px;
  font-weight: normal;
  color: #ddd;
  font-size: 1rem;
  line-height: 1.4;
}

.highlighted-heading {
  font-size: 2.5rem;
  color: #C0C0C0;
  font-weight: 600;
  text-align: left;
  line-height: 1.5;
}

.highlighted-heading .gold-gradient {
  background: linear-gradient(90deg, #ffd700, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

    line-height: 1.4;
    text-align: left;
  }
}

.google-reviews-section {
  background-color: #000; /* Dark black background */
  color: #fff; /* White text for contrast */
  padding-top: 60px;
  padding-bottom: 60px;
}

.google-reviews h3 {
  font-size: 2rem;
  color: #fff; /* White heading */
  margin-bottom: 20px;
}

.custom-counter-section {
  background-color: #000;
  padding: 80px 20px 100px 20px;
}

.custom-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.custom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -15px;
}

/* Full Width Centered Column */
.custom-col-center {
  width: 100%;
  max-width: 700px;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 50px;
}

/* Quarter Columns */
.custom-col-4 {
  width: 50%;
  padding: 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .custom-col-4 {
    width: 25%;
  }
}

/* Text and Counter Styles */
.custom-price-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dea62b;
  margin-bottom: 20px;
}

.custom-section-top h2 {
  color: #fff;
  font-size: 2.3rem;
  margin-bottom: 15px;
}

.custom-section-top p {
  color: #c0c0c0;
  font-size: 1.1rem;
  margin-top: 10px;
}

.custom-section-title-prices {
  text-align: center;
  margin-bottom: 40px;
}

.custom-counter-card {
  background: rgba(255, 215, 0, 0.05);
  border: 3px solid #dea62b;
  border-radius: 20px;
  padding: 30px 20px;
  transition: all 0.5s ease-in-out;
  position: relative;
}

.custom-counter-card:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 0 30px #dea62b;
}

.custom-counter-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: #dea62b;
  margin-bottom: 10px;
  transition: all 0.4s ease;
}

.plus-sign {
  color: #dea62b;
  font-size: 2.2rem;
  margin-left: 3px;
}

.custom-counter-text {
  color: #fff;
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* Hover Effects for Counter Number and Text */
.custom-counter-card:hover .custom-counter-number {
  font-size: 4rem;
  color: #fff;
}

.custom-counter-card:hover .custom-counter-text {
  font-size: 1.5rem;
  color: #dea62b;
  font-weight: 700;
}

/* Animations */
@keyframes counterAnimation {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.counter {
  visibility: hidden; 
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease;
}

.counter.visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.hypno-section {
  position: relative;
  overflow: hidden;
  background: #0a0a0a; /* Deep black background */
  padding: 160px 20px;
  text-align: center;
  color: #fff;
}

.bg-layer {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  opacity: 0.15; /* Black overlay opacity */
  z-index: 0;
}

.bg-layer.grid {
  background-image: linear-gradient(#8B7B35 1px, transparent 1px), linear-gradient(90deg, #8B7B35 1px, transparent 1px); /* Dark metallic gold grid */
  background-size: 100px 100px;
  animation: moveGrid 40s linear infinite;
}

.bg-layer.hexagons {
  background-image: url('https://www.transparenttextures.com/patterns/hexellence.png');
  background-repeat: repeat;
  animation: floatHex 30s ease-in-out infinite;
}

#vanta-distortion {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: transparent; /* Keep the background transparent for Vanta.js */
}


.footer-area {
    background: #131313; /* Slightly lighter dark background for upper footer */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    padding-top: 90px;
    border-top: 1px solid #DAA953; /* Thin professional border */
}

.footer-widget-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-widget-box {
    flex: 1 1 23%;
    min-width: 220px;
}

.footer-widget-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 5px;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #e7be3b, #f5c042);
}

.footer-logo img {
    width: 190px;
}

.footer-list li,
.footer-contact li {
    margin-bottom: 4px;
    font-size: 18px;
    line-height: 1.2;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
}

.footer-contact i {
    font-size: 22px;
    min-width: 22px;
}

.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}

.footer-social a {
    color: #ffffff;
    font-size: 30px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #f5f5f5;
}

.payment-methods img {
    width: 150px;
    margin-top: 10px;
}

.copyright {
    background: #0d0d0d; /* Darker background for bottom footer */
    padding: 10px 40px; /* Reduced padding */
    font-size: 16px; /* Smaller font size */
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: white;
}

.copyright-text {
    color: #fffb; /* Gold color for copyright text */
    margin: 5px 0;
    font-size: 14px; /* Smaller font size */
}

footer a {
    text-decoration: none; /* Remove default underline */
}

.copyright a {
    color: #e7be3b; /* Same color for both links */
    font-size: 16px;
    font-weight: normal; /* Normal font weight for the links */
}

.footer-menu {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}

.footer-menu a {
    color: #e7be3b; /* Same color for both links */
    font-size: 16px;
    font-weight: normal; /* Normal font weight */
    text-decoration: none; /* Remove underline */
}

/* Ensure AREZ TECH text is handled properly */
.arez-tech-logo {
    color: #e7be3b; /* Simple gold color without any gradient effect */
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(max-width: 1024px) {
    .footer-widget-wrapper {
        flex-direction: row;
        justify-content: space-evenly;
    }

    .footer-widget-box {
        width: 45%;
        text-align: center;
    }

    .footer-contact a {
        justify-content: center;
        flex-wrap: nowrap;
        gap: 8px;
    }

    .copyright {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-menu {
        justify-content: center;
        margin-top: 10px;
    }
}

@media(max-width: 768px) {
    .footer-widget-wrapper {
        flex-direction: column;
        align-items: flex-start; /* Ensuring left alignment on tablet screens */
        gap: 30px;
    }

    .footer-widget-box {
        width: 100%;
        text-align: left; /* Align the text to the left */
    }

    .footer-logo img {
        width: 150px;
    }

    .footer-contact a {
        justify-content: center;
        gap: 8px;
        font-size: 16px;
    }

    .footer-social {
        justify-content: flex-start; /* Align social icons to the left */
        gap: 12px;
    }

    .payment-methods img {
        width: 120px;
    }

    .footer-menu {
        justify-content: center;
        margin-top: 10px;
    }
}

@media(max-width: 480px) {
    .footer-widget-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .footer-widget-box {
        width: 100%;
    }

    .footer-menu {
        justify-content: center;
        gap: 15px;
    }

    .footer-contact a {
        font-size: 14px;
    }

    .footer-social a {
        font-size: 25px;
    }

    /* Mobile Footer Alignment to Left */
    .footer-widget-wrapper,
    .footer-logo,
    .footer-menu,
    .footer-social {
        text-align: left; /* Align everything to the left */
    }
}

/* Grid moves */
@keyframes moveGrid {
  from { transform: translate(0, 0); }
  to { transform: translate(-100px, -100px); }
}

/* Hexagons float */
@keyframes floatHex {
  0% { transform: translateY(0px); }
  50% { transform: translateY(50px); }
  100% { transform: translateY(0px); }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Contact Heading Section */
.contact-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
  animation: fadeInUp 1s ease-out forwards;
}

.contact-heading h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease-out forwards;
}

.contact-heading h2 .highlight-text {
  color: #e7be3b;
}

.contact-heading p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1.4s ease-out forwards;
}

/* Important Sections Highlighting in Gold */
.highlight-text {
  font-weight: bold;
  color: #e7be3b;
}

.mt-20 {
  margin-top: 20px;
}

/* Contact Section Styling */
.arez-contact-section {
  background-color: #1c1c1c;
  padding: 60px 0 100px;
  overflow: hidden;
}

/* Contact Wrapper */
.contact-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 0%;
  padding-right: 10%;
  animation: fadeIn 2s ease-out forwards;
}

/* Form Wrapper - Dark Background */
.contact-form-wrapper {
  width: 70%;
  display: flex;
  margin-left: 15%;
  background-color: #000000;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  padding: 40px;
  justify-content: space-between;
  position: relative;
  z-index: 11;
  min-height: 500px;
  margin: 0 auto;
  align-items: center;
  text-align: left;
  animation: fadeInUp 1.6s ease-out forwards;
}

/* Heading inside the form */
.contact-form-wrapper .contact-header {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 12;
  max-width: 100%;
}

.contact-form-wrapper .contact-header h2 {
  color: #e7be3b;
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInUp 2s ease-out forwards;
}

.contact-form-wrapper .contact-header p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 40px;
  padding-bottom: 15px;
  display: none;
}

/* Form Fields Container */
.form-body {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

/* Left Column */
.form-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.5;
  padding-right: 20px;
}

.form-left input,
.form-left select {
  background: #1c1c1c;
  border: 1px solid #e7e7e750;
  color: #ffffff;
  padding: 14px;
  font-size: 1rem;
  border-radius: 26px;
  width: 100%;
  height: 60px;
  animation: fadeIn 2.2s ease-out forwards;
}

.form-left select option {
  color: #fff;
}

/* Right Column */
.form-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 0.5;
  padding-left: 20px;
}

.form-right textarea {
  background: #1c1c1c;
  border: 1px solid #e7e7e750;
  color: #ffffff;
  padding: 14px;
  font-size: 1rem;
  resize: none;
  border-radius: 26px;
  height: 220px;
  margin-bottom: 25px;
  width: 85%;
  animation: fadeIn 2.4s ease-out forwards;
}

.form-right button {
  padding: 16px 34px;
  font-size: 1rem;
  background-color: transparent;
  color: #e7be3b;
  border: 2px solid #e7be3b;
  border-radius: 26px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 85%;
  animation: fadeIn 2.6s ease-out forwards;
}

/* Hover Effect */
.form-right button:hover {
  background-color: transparent;
  color: #000;
  border: 2px solid transparent;
  background: linear-gradient(90deg, #e7be3b, #f5cd4e);
}

/* Active/Pressed Effect */
.form-right button:active {
  transform: translateY(4px);
}

/* Message Icon Styling */
.form-right button .icon {
  margin-left: 10px;
  font-size: 1.5rem;
  color: #fff;
  display: none;
}

/* Show icon when button is clicked */
.form-right button.clicked .icon {
  display: inline-block;
}

/* Image */
.form-image {
  position: absolute;
  right: -140px;
  top: 50%;
  transform: translateY(-50%);
  height: 500px;
  animation: fadeIn 2.8s ease-out forwards;
}

.form-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

/* Footer overlap fix */
.arez-contact-section {
  margin-bottom: -180px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .contact-form-wrapper {
    flex-direction: column;
    width: 100%;
    padding: 30px;
    margin-left: 10%;
  }

  .form-left,
  .form-right {
    gap: 20px;
    display: flex;
    flex-direction: column;
  }

  .form-right textarea {
    height: 150px;
  }

  .form-image {
    display: none;
  }

  .contact-form-wrapper .contact-header {
    position: relative;
    top: 0;
    left: 0;
    max-width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }

  .contact-form-wrapper .contact-header h2 {
    font-size: 1.5rem;
  }

  .contact-form-wrapper .contact-header p.mobile-only {
    display: block;
  }
}

.content-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}
.subheading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff; /* Pure white text */
  margin-bottom: 1rem;
}

.main-heading {
  font-size: 4rem;
  font-weight: 900;
  color: #dea62b; /* Dark metallic gold */
  margin-bottom: 1.5rem;
}

.description {
  font-size: 1.3rem;
  line-height: 1.6;
  color: #fff; /* Pure white text */
  margin: 0 auto;
}

/* Darker Overlay */
.hypno-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* Deep black overlay */
  z-index: 1;
}

/* Disable heavy stuff for mobile */
@media (max-width: 768px) {
  .bg-layer, #vanta-distortion {
    display: none;
  }
}


/* Make it responsive */
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 40px;
  }

  .testimonial-slide {
    width: 80%;
    margin: 0 auto;
  }

  .google-reviews h3 {
    font-size: 1.5rem;
  }
}



/* Responsive Design */
@media (max-width: 991px) {
    .right-info {
        justify-content: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .right-info {
        flex-direction: column;
        gap: 10px;
    }
}

