:root {
  --dark-blue: #003366;
  --dark-blue-2: #005580;
}

.topbar {
  /* background-color: var(--dark-blue); */
  background-color: #e2ad0d;
  color: white;
  padding: 6px 0;
  font-size: 14px;
}

.topbar .social-icon {
  width: 32px;
  height: 32px;
  background: white;
  color: var(--dark-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
  text-decoration: none !important;
}

.topbar .social-icon:hover {
  transform: scale(1.1) rotate(8deg);
  background: var(--dark-blue-2);
  color: white;
}
/* ---------------------------------
   Base Navbar Appearance
---------------------------------- */
.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Make container flex so logo | nav | button space correctly */
.navbar .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo sizing safety */
.navbar-brand img {
  max-height: 60px;
  width: auto;
}

/* ---------------------------------
   Nav Links (base + hover)
---------------------------------- */
.navbar-nav {
  display: flex;
  justify-content: center;
  flex: 1; /* allow nav to stretch between logo & button */
}

.navbar-nav .nav-link {
  margin: 0 12px;
  font-weight: 600;
  color: #003366;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: #0059b3;
}

/* ---------------------------------
   Dropdown Styling
---------------------------------- */
.dropdown-menu {
  background-color: #f9f9f9;
  border-radius: 6px;
}

/* Secondary-level submenu base positioning (desktop overridden below) */
.dropdown-submenu .dropdown-menu {
  left: 100%;
  top: 0;
  margin-top: 0;
}

/* Caret rotate class (JS toggles .rotate) */
.submenu-toggle.rotate {
  transform: rotate(90deg);
  transition: transform 0.3s ease;
}

/* ---------------------------------
   Estimate Button
   (kept LAST version you used; matches your most recent look)
---------------------------------- */
/* .estimate-btn {
  background: linear-gradient(135deg, #003366, #0059b3);
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}

.estimate-btn:hover {
  background: linear-gradient(135deg, #002244, #004080);
  transform: scale(1.05);
} */

/* ---------------------------------
   Navbar Toggler Cleanup
---------------------------------- */
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------------------------------
   Mobile (<992px): submenu toggle mode
---------------------------------- */
@media (max-width: 991px) {
  /* Collapse layout: let Bootstrap stack items; align left */
  .navbar-nav {
    flex: unset;
    justify-content: flex-start;
  }

  .estimate-btn {
    margin-top: 10px;
    display: inline-block;
  }

  /* Hide submenus by default; shown by .show-submenu (JS) */
  .dropdown-submenu > .dropdown-menu {
    display: none;
    position: static;
    margin-left: 0;
    padding-left: 15px;
  }

  .dropdown-submenu.show-submenu > .dropdown-menu {
    display: block;
  }
}

/* ---------------------------------
   Desktop (>=992px): hover behavior
---------------------------------- */
@media (min-width: 992px) {
  /* Top-level dropdown open on hover */
  .navbar .nav-item.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Nested submenus open on hover */
  .navbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }

  /* Ensure proper absolute positioning for nested menus */
  .navbar .dropdown-submenu > .dropdown-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-top: 0;
    margin-left: 0;
  }
}

/* banner start */
/* Banner Section */
.video-banner {
  position: relative;
  width: 100%;
  height: 85vh; /* Reduced height */
  overflow: hidden;
}

.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  filter: brightness(0.6);
}

.banner-content-wrapper {
  position: relative;
  z-index: 2;
  height: 100vh; /* Increased from 100% to full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.get-quote-btn {
  padding: 12px 30px;
  font-size: 1rem;
  background-color: #e2ad0d;
  color: #fff;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(226, 173, 13, 0.4);
}

.get-quote-btn:hover {
  background-color: #c8960b;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }
  .banner-content p {
    font-size: 0.95rem;
  }
  
  /*.banner-left{*/
  /*    margin-top:-18px !important;*/
  /*}*/
}
/* banner end */

/*crousel start */
/* .carousel-inner {
  width: 100%;
}

.carousel-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-item {
  height: auto;
}

@media (max-width: 767px) {
  .carousel-item {
    max-height: 250px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-item {
    max-height: 400px;
  }
}

@media (min-width: 992px) {
  .carousel-item {
    max-height: 550px;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: #003366;
  transform: translateY(-50%) scale(1.1);
} */

.ml10 {
  position: relative;
  font-weight: 900;
  font-size: 3em;
  color: white;
}

.ml10 .text-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
}

.ml10 .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
}

.banner-section {
  position: relative;
  width: 100%;
  height: 85vh; /* reduced from 100vh */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: black;
}

.banner-section video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 40px 5%;
  flex-wrap: wrap;
}

.banner-left {
  color: #fff;
  max-width: 50%;
  margin-top: 90px;
  /*margin-top:-18px;*/
  
}

.banner-left h1 {
  font-size: 32px;
  margin-bottom: 15px;
  min-height: 58px;
  transition: all 0.5s ease-in-out;
}

.banner-left p {
  font-size: 20px;
  margin-bottom: 25px;
}

.banner-left .get-quote-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #ffc107;
  color: #000;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-left .get-quote-btn:hover {
  background-color: #e0a800;
}

.consult-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 16px; /* reduced from 24px */
  border-radius: 15px;
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 384px;
  max-height: 500px; /* limit the height */

  color: #fff;
}

.consult-form h2 {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 20px;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  /* padding: 12px 15px; */
  padding: 5px 15px;
  margin-bottom: 15px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 8px;
  /* color: #fff; */
  color: #000;
}

.consult-form input::placeholder,
.consult-form textarea::placeholder {
  color: #ccc;
}

.consult-form button {
  width: 100%;
  padding: 14px;
  background: #ffc107;
  border: none;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

.consult-form small {
  font-size: 12px;
  display: block;
  margin-top: 10px;
  color: #ccc;
}

/* ========== Responsive Styles ========== */
@media (max-width: 768px) {
  .banner-section {
    height: auto;
    padding: 80px 0;
  }

  .banner-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    margin-top: -70px;
  }

  .banner-left {
    max-width: 100%;
    margin-top: -18px;
  }

  .banner-left h1 {
    font-size: 28px;
  }

  .banner-left p {
    font-size: 16px;
  }

  .banner-left .get-quote-btn {
    margin-top: 10px;
    padding: 12px 25px;
    font-size: 15px;
  }

  .consult-form {
    max-width: 100%;
    padding: 20px;
  }

  .consult-form h2 {
    font-size: 20px;
  }
}

#rotatingText {
  display: inline-block;
  transition: all 0.6s ease-in-out;
  opacity: 1;
  transform: translateY(0) scale(1);
  will-change: transform, opacity;
}

#rotatingText.animate-out {
  opacity: 0;
  transform: translateY(-15px) scale(0.95);
}

#rotatingText.animate-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* crousel end  */

/* fixed buttons start */
.tiny-icon-slider {
  position: fixed;
  left: 10px;
  bottom: 20px;
  z-index: 999;
}

.toggle-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(90deg, #e91e63, #9c27b0);
  color: #fff;
  text-align: center;
  line-height: 48px;
  font-size: 18px;
  cursor: pointer;
}

/* Hide icon list by default */
.tiny-icon-slider ul {
  padding: 0;
  margin: 0;
  position: absolute;
  left: 0;
  bottom: 60px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* Show on click for all screens */
.tiny-icon-slider.active ul {
  opacity: 1;
  pointer-events: auto;
}

.tiny-icon-slider ul li {
  list-style: none;
  margin-bottom: 10px;
}

.tiny-icon-slider ul li .tiny-icon-link {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  color: white;
  font-size: 18px;
  border-radius: 50%;
}

/* Icon backgrounds */
.tiny-icon-slider li:nth-child(1) .tiny-icon-link {
  background: #25d366;
}

.tiny-icon-slider li:nth-child(2) .tiny-icon-link {
  background: #0072c6;
}

.tiny-icon-slider li:nth-child(3) .tiny-icon-link {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

.tiny-icon-slider li:nth-child(4) .tiny-icon-link {
  background: #3b5999;
}

@media (max-width: 767px) {
  .tiny-icon-slider {
    bottom: 80px;
  }
}

/* fixed buttons end */

/* form start */
.consultation-form-container {
  max-width: 400px;
  background-color: rgba(255, 255, 255, 0.1); /* transparent background */
  backdrop-filter: blur(12px); /* blur effect */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  overflow: hidden;
  position: absolute;
  top: 135px;
  right: 30px; /* align to right */
  z-index: 999;
  color: #fff; /* make text readable on dark background */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.consultation-form-container.hide {
  opacity: 0;
  visibility: hidden;
}
.consultation-form-header {
  background-color: #003366;
  color: #fff;
  padding: 25px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.consultation-form-body {
  padding: 25px 20px;
}

.consultation-input {
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
}

.consultation-textarea {
  resize: none;
}

.consultation-checkbox-label {
  font-size: 13px;
  color: #333;
}

.consultation-checkbox-label a {
  color: #007bff;
  text-decoration: none;
}

.consultation-checkbox-label a:hover {
  text-decoration: underline;
}

.consultation-submit-btn {
  width: 100%;
  background-color: #222;
  color: #fff;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 0;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.consultation-submit-btn:hover {
  background-color: #003366;
}

@media (max-width: 767px) {
  .consultation-form-container {
    top: 20px;
    right: 10px;
    left: 10px;
    max-height: 65vh; /* reduced overall height */
    overflow-y: auto;
    padding: 0px;
  }

  .consultation-form-header {
    font-size: 16px;
    padding: 15px;
  }

  .consultation-form-body {
    padding: 15px;
  }

  .consultation-input,
  .consultation-textarea {
    font-size: 13px;
    padding: 8px;
    margin-bottom: 10px;
  }

  .consultation-submit-btn {
    font-size: 14px;
    padding: 10px;
  }

  .consultation-checkbox-label {
    font-size: 12px;
  }
}
/* form end */

/* STEPS TO HOME CONSTRUCTION start */
.steps-section {
  background: linear-gradient(135deg, #e0f7fa, #e8f5e9);
  padding: 70px 15px;
  text-align: center;
}

.steps-section h2 {
  font-weight: 900;
  font-size: 34px;
  color: #003366;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.step-box {
  background: white;
  border-radius: 20px;
  padding: 40px 20px 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  border-top: 4px solid #00bcd4;
}

.step-box:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(to right, #00bcd4, #26c6da);
  color: white;
  font-weight: bold;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
  letter-spacing: 1px;
}

.step-box i {
  font-size: 38px;
  color: #00bcd4;
  margin-bottom: 15px;
  transition: transform 0.4s ease, color 0.3s ease;
}

.step-box:hover i {
  transform: scale(1.2) rotate(5deg);
  color: #003366;
}

.step-box h5 {
  font-size: 16px;
  font-weight: 900;
  color: #003366;
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

@media (max-width: 767px) {
  .steps-section h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .step-box {
    padding: 30px 15px;
  }

  .step-number {
    top: -20px;
    font-size: 13px;
    padding: 6px 16px;
  }

  .step-box i {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .step-box h5 {
    font-size: 14px;
  }
}
/* STEPS TO HOME CONSTRUCTION end */

/*company profile start*/

.company-profile-section {
  background: linear-gradient(130deg, #e0f7fa, #e3f2fd, #f9f9f9);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}

.company-profile-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #00bcd4 10%, transparent 70%);
  top: -100px;
  right: -150px;
  z-index: 0;
  opacity: 0.2;
}

.company-profile-section h2 {
  font-weight: 900;
  font-size: 38px;
  color: #003366;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.company-profile-section p {
  font-size: 17px;
  color: #444;
  margin-bottom: 25px;
  z-index: 2;
  position: relative;
}

.company-profile-section ul {
  padding: 0;
  list-style: none;
  z-index: 2;
  position: relative;
}

.company-profile-section ul li {
  font-size: 16px;
  color: #333;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  opacity: 0;
  animation: fadeInLeft 0.8s ease forwards;
}

.company-profile-section ul li:nth-child(1) {
  animation-delay: 0.2s;
}
.company-profile-section ul li:nth-child(2) {
  animation-delay: 0.4s;
}
.company-profile-section ul li:nth-child(3) {
  animation-delay: 0.6s;
}
.company-profile-section ul li:nth-child(4) {
  animation-delay: 0.8s;
}

.company-profile-section ul li i {
  color: #00bcd4;
  font-size: 18px;
  margin-right: 10px;
}

.profile-img-wrapper {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: zoomIn 1s ease forwards;
}

.profile-img-wrapper img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

.view-more-btn {
  margin-top: 25px;
  padding: 12px 30px;
  background: #e2ad0d;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 51, 102, 0.3);
  position: relative;
  z-index: 2;
}

.view-more-btn:hover {
  background: #005b99;
  transform: translateY(-2px);
}

/* Animations */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .company-profile-section {
    padding: 60px 15px;
  }

  .company-profile-section h2 {
    font-size: 28px;
  }

  .company-profile-section p,
  .company-profile-section ul li {
    font-size: 15px;
  }

  .view-more-btn {
    font-size: 14px;
    padding: 10px 24px;
  }
}
/* company profile end*/

/* service section start */
.services-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: #003366 !important;
  margin-bottom: 70px;
  position: relative;
  text-transform: uppercase;
}

.services-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #00bcd4 !important;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.premium-card {
  background: #fff !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08) !important;
}

.card-image {
  overflow: hidden;
  position: relative;
}

.card-image img {
  height: 240px;
  object-fit: cover;
  transition: transform 0.5s ease !important;
}

.premium-card:hover img {
  transform: scale(1.05) !important;
}

.icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #003366, #005f99);
  color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15) !important;
  z-index: 10 !important;
}
/* service section end */

/* choose us start */
.why-us-head {
  text-align: center;
  margin-bottom: 40px;
}

.why-us-head h2 {
  font-size: 36px;
  font-weight: 800;
  color: #002244;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

/* .why-us-head h2 span {
      border-bottom: 3px solid #00bcd4;
    } */

.choose-card {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.choose-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.choose-card:hover img {
  transform: scale(1.08);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    rgba(0, 34, 68, 0.8),
    rgba(0, 51, 102, 0.9)
  );
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  /* opacity: 1; */
  text-align: center;
}

.overlay-content {
  max-width: 90%;
}

.overlay-content h5 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
}

.overlay-content h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #00bcd4;
  margin: 10px auto 0;
}

.overlay-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #e0e0e0;
  /* opacity: 0; */
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.choose-card:hover .overlay-content p {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .choose-card img {
    height: 200px;
  }
  .overlay-content h5 {
    font-size: 18px;
  }
  .overlay-content p {
    font-size: 14px;
  }
}

/* choose us end */

/* stats section start */
.stats-section {
  padding: 0px 20px;
  /* background: linear-gradient(135deg, #e0f7fa, #ffffff); */
  position: relative;
  text-align: center;
}

.stats-section h2 {
  font-size: 42px;
  font-weight: 900;
  color: #003366;
  margin-bottom: 70px;
  position: relative;
}

.stats-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #00bcd4;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.stats-box {
  background: white;
  padding: 50px 20px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.stats-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.stats-icon {
  font-size: 40px;
  color: #00bcd4;
  margin-bottom: 20px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.stats-box:hover .stats-icon {
  transform: scale(1.1);
}

.counter {
  font-size: 40px;
  font-weight: 800;
  color: #003366;
}

.label {
  font-size: 16px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .stats-section h2 {
    font-size: 30px;
  }

  .counter {
    font-size: 34px;
  }

  .stats-icon {
    font-size: 30px;
  }

  .stats-box {
    padding: 30px 15px;
  }
}
/* stats section end */

/* project section start */
h2.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #003366;
  text-align: center;
  margin-top: 40px;
  position: relative;
  text-transform: uppercase;
}

h2.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #00bcd4;
  display: block;
  margin: 12px auto 30px;
  border-radius: 2px;
}

.filter-buttons {
  text-align: center;
  margin-bottom: 20px;
}

.filter-buttons .filter-btn {
  background: linear-gradient(135deg, #e2ad0d, #fcd200);
  color: #000;
  border: none;
  padding: 12px 30px;
  margin: 10px;
  border-radius: 50px;
  font-weight: bold;
  letter-spacing: 0.5px;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(226, 173, 13, 0.4);
  position: relative;
  overflow: hidden;
}

.filter-buttons .filter-btn:hover {
  background: linear-gradient(135deg, #fcd200, #ffdd33);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(226, 173, 13, 0.6);
  color: #000;
}

.filter-buttons .filter-btn.active {
  background: linear-gradient(135deg, #ffc107, #e2ad0d);
  box-shadow: 0 10px 25px rgba(226, 173, 13, 0.7);
}

.project-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: calc(25% - 15px);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  background: linear-gradient(to bottom right, #ffffff, #f1f1f1);
  text-align: center;
  position: relative;
  z-index: 2;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 8px;
}

.card-address {
  font-size: 14px;
  color: #555;
  transition: color 0.3s ease;
}

.card-address i {
  color: #00bcd4;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.gallery-item:hover .card-address i {
  transform: scale(1.2);
}

@media (max-width: 992px) {
  .gallery-item {
    width: calc(33.33% - 15px);
  }
}

@media (max-width: 768px) {
  .gallery-item {
    width: calc(50% - 15px);
  }
}

@media (max-width: 576px) {
  .gallery-item {
    width: 100%;
  }
}
/* project section end */

/* contact section start */
.contact_section .responsive-container-block {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: auto;
}

.contact_section .big-container {
  background: linear-gradient(rgba(0, 5, 20, 0.4), rgba(0, 34, 68, 0.92)),
    url("../assets/images/bgimg.jpg") no-repeat center center;
  background-size: cover;
   padding: 60px 50px; 
}

.contact_section .container {
  max-width: 1320px;
  margin: auto;
  width: 100%;
}

.contact_section .responsive-cell-block {
  padding: 10px;
  width: 100%;
}

.contact_section .wk-desk-6 {
  width: 50%;
}

.contact_section .left-one {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.contact_section .right-one {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.contact_section .content-box {
  max-width: 500px;
}

.contact_section .section-head {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.contact_section .section-subhead {
  font-size: 18px;
  color: #cccccc;
  margin-bottom: 30px;
}

.contact_section .icons-container {
  display: flex;
  gap: 15px;
}

.contact_section .icons-container img {
  width: 30px;
  height: 30px;
}

.contact_section .form-box {
  background-color: #001f3f;
  padding: 15px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
}

.contact_section .contactus-head {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact_section .contactus-subhead {
  font-size: 16px;
  color: #d4d4d4;
  margin-bottom: 25px;
}

.contact_section .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact_section .form-group input,
.contact_section .form-group textarea {
  width: 100%;
  background-color: #003366;
  border: none;
  border-radius: 5px;
  color: #fff;
  padding: 12px 15px 12px 45px;
  font-size: 16px;
}

.contact_section .form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #00bfff;
  font-size: 16px;
}

.contact_section .form-group textarea {
  height: 150px;
  resize: none;
}

.contact_section .submit-btn {
  width: 100%;
  background: linear-gradient(to right, #004080, #0066cc);
  border: none;
  border-radius: 5px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact_section .submit-btn:hover {
  background: linear-gradient(to right, #003366, #005bb5);
}

/* Responsive */
@media (max-width: 992px) {
  .contact_section .wk-desk-6 {
    width: 100%;
  }
  .contact_section .left-one {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .contact_section .section-head {
    font-size: 28px;
    line-height: 1.3;
  }

  .contact_section .form-box {
    padding: 20px;
  }

  .contact_section .submit-btn {
    font-size: 16px;
  }
}
/* contact section end */

/* footer start */
.parth-footer {
  background: linear-gradient(135deg, #003366, #004d66);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.parth-footer h4,
.parth-footer h5 {
  color: #fff;
  margin-bottom: 20px;
}

.parth-link {
  color: #ccc;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.parth-link:hover {
  color: #00bcd4;
  padding-left: 6px;
}

.parth-social-icons a {
  background: #00bcd4;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  margin-right: 10px;
  transition: 0.3s ease;
}

.parth-social-icons a:hover {
  background: #fff;
  color: #00bcd4;
  transform: scale(1.1);
}

.parth-scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #00bcd4;
  color: #fff;
  padding: 10px 12px;
  border-radius: 50%;
  font-size: 18px;
  display: none;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
  transition: all 0.3s ease;
}

.parth-scroll-top:hover {
  background: #fff;
  color: #00bcd4;
  transform: translateY(-4px);
}

.parth-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .parth-footer {
    text-align: center;
  }
  .parth-social-icons {
    justify-content: center;
  }
}

.company-link {
  color: #00bcd4;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.company-link:hover {
  color: #ffffff;
  padding-left: 6px;
}

/* footer end */

/* about page start */
.company-banner-section {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e")
      center/cover no-repeat;
  padding: 100px 0;
  position: relative;
  color: #fff;
  text-align: center;
}

.company-banner-heading {
  font-size: 48px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.company-breadcrumb {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 15px;
}

.company-breadcrumb a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-breadcrumb a:hover {
  color: #00bcd4;
}

.company-breadcrumb .crumb-separator {
  margin: 0 8px;
  color: #ccc;
}

@media (max-width: 768px) {
  .company-banner-heading {
    font-size: 32px;
  }
}

.parth-heading {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  margin: 40px auto;
  position: relative;
}

.parth-heading span {
  display: inline-block;
  background: linear-gradient(to right, #00bfff, #004080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.parth-heading::after {
  content: "";
  display: block;
  width: 150px;
  height: 4px;
  background: linear-gradient(to right, #00bfff, #004080);
  margin: 10px auto 0;
  border-radius: 2px;
  animation: slideIn 1.2s ease forwards;
}

@keyframes slideIn {
  0% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 150px;
    opacity: 1;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .parth-heading {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .parth-heading {
    font-size: 2rem;
  }
}
.about-split-section {
  /* padding: 35px 0; */
  background: #f4f9ff;
  overflow: hidden;
}

.about-img-wrapper {
  border-radius: 20px;
  overflow: hidden;
  animation: slideInLeft 1s ease forwards;
}

.about-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  min-height: 400px;
}

.about-content {
  padding-left: 30px;
  animation: fadeInUp 1.2s ease forwards;
}

.about-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
}
/* 
    .about-content h2::after {
      content: '';
      width: 70px;
      height: 4px;
      background: #00bcd4;
      display: block;
      margin-top: 10px;
      border-radius: 2px;
    } */
.about-text-wrapper {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  max-width: 1266px;
  margin: 0 auto;
  text-align: justify;
  padding: 20px;
  background: #fdfdfd;
  border-left: 4px solid #00bcd4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-radius: 8px;
}

.about-text-wrapper .highlight {
  color: #007bff;
  font-weight: 600;
}

.about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-content .btn {
  background: #00bcd4;
  border: none;
  padding: 10px 24px;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.about-content .btn:hover {
  background: #007c91;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .about-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  .about-content h2 {
    font-size: 30px;
  }
}

.our-mission-section {
  padding: 35px 0;
  background: linear-gradient(to right, #f4f9ff, #ffffff);
  overflow: hidden;
}

.mission-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideInLeft 1s ease forwards;
}

.mission-content {
  padding-left: 30px;
  animation: fadeInRight 1.2s ease forwards;
}

.mission-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
}

.mission-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00bcd4;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.mission-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Animations */
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .mission-content {
    padding-left: 0;
    margin-top: 30px;
    text-align: center;
  }
  .mission-content h2 {
    font-size: 28px;
  }
  .mission-img {
    margin-bottom: 20px;
  }
}

.our-vision-section {
  padding: 35px 0;
  background: linear-gradient(to left, #f4f9ff, #ffffff);
  overflow: hidden;
}

.vision-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: slideInRight 1s ease forwards;
}

.vision-content {
  padding-right: 30px;
  animation: fadeInLeft 1.2s ease forwards;
}

.vision-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
}

.vision-content h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #00bcd4;
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.vision-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

/* Animations */
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  .vision-content {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .vision-content h2 {
    font-size: 28px;
  }
  .vision-img {
    margin-top: 20px;
  }
}
/* about page end */

/* contact form start */
.custom-contact-section {
  padding: 60px 0;
  /* background: linear-gradient(135deg, #003366, #005580); */
  background: #eefaff;
  color: #fff;
}

.custom-form-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInLeft 1s ease-in-out;
}

.custom-form-wrapper h3 {
  color: #003366;
  font-weight: 700;
  margin-bottom: 25px;
}

.custom-form-group {
  position: relative;
  margin-bottom: 20px;
}

.custom-form-group i {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #003366;
  font-size: 18px;
}

.custom-input {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding-left: 40px;
  height: 45px;
}

textarea.custom-input {
  height: auto;
  padding-top: 12px;
}

.custom-btn {
  background: linear-gradient(to right, #003366, #005580);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: linear-gradient(to left, #003366, #005580);
  transform: scale(1.05);
}

.custom-map-wrapper {
  height: 100%;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  animation: fadeInRight 1s ease-in-out;
}

@keyframes fadeInLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .custom-form-wrapper,
  .custom-map-wrapper {
    margin-bottom: 30px;
  }
}
/* contact form end */

/* 2d designinng start */
.creative-2d-heading {
  font-family: "Orbitron", sans-serif;
  font-size: 52px;
  font-weight: 600;
  text-align: center;
  margin: 60px 0;
  position: relative;
  z-index: 1;
}

.creative-2d-heading span {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5, #004080);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  animation: shimmer 4s infinite linear;
  position: relative;
  padding: 12px 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.creative-2d-heading span:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.7);
}

.creative-2d-heading i {
  margin-right: 12px;
  color: #00e6ff;
  animation: glowIcon 2s infinite ease-in-out;
}

@keyframes shimmer {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 300%;
  }
}

@keyframes glowIcon {
  0%,
  100% {
    text-shadow: 0 0 6px #00e6ff;
  }
  50% {
    text-shadow: 0 0 15px #00e6ff;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .creative-2d-heading {
    font-size: 34px;
  }

  .creative-2d-heading span {
    padding: 10px 20px;
  }
}

.styled-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  /* margin-top: 30px; */
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #dca90d, #e2ad0d, #f1c232);
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(226, 173, 13, 0.3);
  transition: all 0.3s ease;
}

.styled-whatsapp-btn i {
  font-size: 22px;
}

.styled-whatsapp-btn:hover {
  background: linear-gradient(135deg, #002244, #004080);
  box-shadow: 0 8px 20px rgba(0, 51, 102, 0.4);
  transform: translateY(-2px);
}

.two-d-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1px 10%;
  gap: 60px;
  flex-wrap: wrap;
  /* background-color: #f9f9f9; */
}

.two-d-image {
  flex: 1 1 45%;
  max-width: 500px;
  animation: fadeInLeft 1s ease-in;
}

.two-d-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.two-d-image img:hover {
  transform: scale(1.03);
}

.two-d-content {
  flex: 1 1 45%;
  animation: fadeInRight 1s ease-in;
}

.two-d-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
  background: linear-gradient(to right, #003366, #0077cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.two-d-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.two-d-content .btn {
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(to right, #004080, #0066cc);
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.2);
}

.two-d-content .btn:hover {
  background: linear-gradient(to right, #002855, #0055aa);
}

@media (max-width: 768px) {
  .two-d-section {
    flex-direction: column;
    padding: 50px 20px;
  }

  .two-d-content h2,
  .two-d-content p {
    text-align: center;
  }

  .two-d-content .btn {
    display: block;
    margin: 0 auto;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px; /* More space between cards */
  max-width: 1300px; /* Wider container */
  margin: auto;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  width: 400px; /* Increased width */
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 51, 102, 0.25);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card-content {
  padding: 26px;
  color: #003366;
  flex-grow: 1;
}

.card-content h3 {
  margin-top: 0;
  font-size: 24px;
  font-weight: 600;
  color: #003366;
  margin-bottom: 14px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: #003366;
  text-align: justify;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e2ad0d;
  color: white;
  padding: 10px 26px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.view-more-btn:hover {
  background-color: #e2ad0d;
  transform: translateY(-2px);
}

.button-wrapper {
  text-align: center;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
  }
}
/* 2d designing end */

/* get estimate start */
.estimate-btn {
  background: linear-gradient(to right, #dca90d, #e2ad0d, #f1c232);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 51, 102, 0.25);
}

.estimate-btn:hover {
  background: linear-gradient(to right, #dca90d, #e2ad0d);
  transform: translateY(-2px);
}

/* get estimate end */

/* contact button start */
.custom-btn {
  background: linear-gradient(135deg, #e2ad0d, #fcd200); /* Yellow gradient */
  color: #000;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 204, 0, 0.5);
}

.custom-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 204, 0, 0.6);
  background: linear-gradient(135deg, #fcd200, #e2ad0d); /* reverse gradient */
}

/* contact button end */
