/* @import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Text:ital,wght@0,400..800;1,400..800&display=swap'); */

*{
  font-family:'poppins',sans-serif !important;
}
html, body {
  overflow-x: hidden;
}


.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  /* transition: all 0.5s; */
  z-index: 997;
}
.ListNone {
  text-decoration: none;
}
/* Remove all animation/transition delays */
.navmenu,
.navmenu ul,
.navmenu a,
.mobile-nav-active .navmenu {
  transition: none !important;
}

.header .header-container {
  background: var(--surface-color);
  border-radius: 50px;
  padding: 5px 25px 5px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  background-color: #1e1850;
  border-radius: 30px;
  color: #f8e019;
}

.header .logo {
  line-height: 2;
}

.header .logo img {
  max-height: 80px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
    background-color: #1e1850;
  }

  .header .logo {
    border: 2;
  }



  .header .navmenu {
    border: 3;
  }

}
.mobile-nav-toggle{
  display: none;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #fff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}

/* Navmenu - Mobile */
@media (max-width: 1199px) {


  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 85px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }



  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
  
}


@media (max-width:720px){
    .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
    .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 100px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }
 .mobile-nav-toggle{
  display: block;
 } 
}
/* By default hide mobile-only, show desktop-only */
.mobile-only {
  display: none;
}

.desktop-only {
  display: inline-block;
}

/* On small screens */


/* Dropdown Fade Slide */
@keyframes fadeInDropdown {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navmenu .dropdown:hover > ul {
  animation: fadeInDropdown 0.3s ease forwards;
}

/* Bounce Hover Button */
@keyframes bounceHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-getstarted:hover {
  animation: bounceHover 0.4s ease;
}

/* Fixed Get Started Button Style */
.btn-getstarted,
.btn-getstarted:focus {
  color: #000;
  background: #f8e019;
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
  font-weight: 600;
  text-decoration: none;
}

/* Hover bounce animation */
@keyframes bounceHover {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.btn-getstarted:hover,
.btn-getstarted:focus:hover {
  color: #000;
  background: #f8e019;
  animation: bounceHover 0.4s ease;
}

/* hero section */

/* .hero {
  padding: 80px 0;
} */
.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}
.highlight {
    color: #ff4d4d; /* change to your highlight color */
}
#heading-dynamic {
    transition: opacity 0.5s ease-in-out;
}
#hero .row{
  flex-direction: row !important;

}
.hero .hero-content {
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .hero .hero-content {
    margin-bottom: 0;
  }
}

 .hero-tag {
  display: inline-flex;
  align-items: center;
  background-color: #1e1850 !important;
  color: #f8e019;
  padding: 0.5rem 1rem ;
  border-radius: 50px;
  margin-bottom: 1rem;
  max-width: 14rem;
}

 .hero-tag i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

 .hero-tag span {
  color: var(--accent-color);
  font-weight: 600;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h1 .highlight {
  color: #f8e019;
}
.hero-content{
  padding: 20px;
}
@media (min-width: 992px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  #hero .row{
    flex-direction: column;
    justify-content: center;
    
  }
}

.hero .lead {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1.5rem;
}

.hero .hero-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.hero .hero-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.hero .hero-features li i {
  color: #f8e019;
  margin-right: 0.5rem;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero .hero-cta .btn-primary {
  background-color: #f8e019;
  border-color: var(--accent-color);
  color: #1e1850;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-cta .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
  border-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.hero .hero-cta .btn-link {
  color: var(--heading-color);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.hero .hero-cta .btn-link i {
  margin-right: 0.5rem;
}

.hero .hero-cta .btn-link:hover {
  color: var(--accent-color);
}

.hero .hero-image-wrapper {
  position: relative;
  padding: 0 40px;
}

.hero .hero-image-wrapper .hero-image {
  border-radius: 10px;
}

.hero .hero-image-wrapper .stat-card {
  position: absolute;
  background-color: #1e1850;
  color: #f8e019;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 150px;
}

.hero .hero-image-wrapper .stat-card.top-right {
  top: 40px;
  right: 0px;
}

.hero .hero-image-wrapper .stat-card.bottom-left {
  bottom: 40px;
  left: 0px;
}

.hero .hero-image-wrapper .stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.25rem;
}

.hero .hero-image-wrapper .stat-card .stat-label {
  font-size: 0.875rem;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

.hero .hero-image-wrapper .stat-card .stat-icon {
  align-self: flex-end;
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

/* ===== Responsive Fix for Banner Section ===== */

@media (max-width: 992px) {
  .hero-section .row {
    flex-direction: column-reverse ;
    gap: 30px;
  }

  .hero-section .col-lg-6 {
    width: 100% !important;
    max-width: 100%;
    padding: 0 15px;
  }

  .hero-section h1 {
    font-size: 26px !important;
    text-align: center;
  }

  .hero-section p {
    text-align: center;
  }

  .hero-section ul {
    text-align: center;
    padding-left: 0;
  }

  .hero-section ul li {
    display: inline-block;
    margin: 8px 10px;
    font-size: 14px;
  }

  .hero-section .d-flex {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-section .d-flex .btn {
    width: 100%;
    text-align: center;
  }

  .hero-section .hero-form {
    width: 100%;
  }
  #hero .row{
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 22px !important;
  }

  .hero-section .btn {
    font-size: 14px;
    padding: 10px 16px;
  }

  .hero-section .call-now {
    font-size: 14px;
  }
}

.heroTop {
  background-color: rgb(237 237 237);
  color: black;
  padding-top: 117px;
}
.cTop {
  padding: 60px 0px;

}
.heroBg {
}
.padT {
  background-color: white !important;
}

@media (max-width: 1024px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  #hero .row{
    gap: 20%;
  }
}
/* Key animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(1deg);
  }
  75% {
    transform: rotate(-1deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes zoomIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.wiggle {
  animation: wiggle 4s ease-in-out infinite;
}

.pulse {
  animation: bounce 1.5s ease-in-out infinite;
}

.bounce {
  animation: bounce 1.3s ease-in-out infinite;
}

.slide-in {
  position: relative;
  animation: slideIn 1.2s ease-out forwards;
}

.zoom-in-delay {
  opacity: 0;
  animation: zoomIn 1.4s ease-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-fade-in {
  opacity: 0;
  animation: fadeInUp 1.2s ease-out forwards;
  animation-delay: 0.3s;
}

#about{
  padding: 60px 0;
}
.about .section-heading {
  font-size: 2.5rem;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 1rem;
  font-weight: 700;
}

.about .section-heading:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 3px;
  background: var(--accent-color);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.about .lead {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 2rem;  max-width: 800px;
 margin: auto;
}

.about .feature-box {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .feature-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: color-mix(in srgb, #1e1850, transparent 92%);
  z-index: -1;
  transition: height 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  border-radius: 12px;
}

.about .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: none;
}

.about .feature-box:hover:before {
  height: 100%;
}

.about .feature-box:hover .icon-container {
  background: #1e1850;
  color: #f8e019;
}

.about .feature-box .icon-container {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: color-mix(in srgb, #1e1850, transparent 90%);
  color: #1e1850;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, #1e1850, transparent 85%);
}

.about .feature-box h4 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.about .feature-box p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about .about-content-box {
  padding: 2rem;
}

.about .about-content-box h3 {
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
}

.about .about-content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about .about-content-box .progress-item {
  margin-bottom: 1.2rem;
}

.about .about-content-box .progress-item .progress-title {
  font-weight: 600;
  color: var(--heading-color);
  font-size: 1rem;
}

.about .about-content-box .progress-item .progress-percent {
  font-weight: 700;
  color: var(--accent-color);
}

.about .about-content-box .progress-item .progress {
  height: 8px;
  border-radius: 4px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  margin-top: 0.5rem;
  overflow: hidden;
}

.about .about-content-box .progress-item .progress .progress-bar {
  background-color: #f8e019;
  border-radius: 4px;
}

.about .about-content-box .btn-discover {
  background: #1e1850;
  color: #f8e019;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about .about-content-box .btn-discover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: color-mix(in srgb, #1e1850, #000 15%);
  transition: width 0.3s ease;
  z-index: -1;
  border-radius: 30px;
}

.about .about-content-box .btn-discover:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, #f8e019, transparent 80%);
}

.about .about-content-box .btn-discover:hover:before {
  width: 100%;
}

.about .about-image-grid {
  position: relative;
  height: 540px;
  margin: 0 2rem;
}

.about .about-image-grid .img-grid-main {
  position: absolute;
  top: 0;
  right: 0;
  width: 70%;
  height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.about .about-image-grid .img-grid-secondary {
  position: absolute;
  bottom: 0;
  right: 30%;
  width: 50%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.about .about-image-grid .img-grid-tertiary {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 40%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.about .about-image-grid .experience-badge {
  position: absolute;
  right: 10px;
  bottom: 30px;
  width: 120px;
  height: 120px;
  background: #1e1850;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #f8e019;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 4;
}

.about .about-image-grid .experience-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.about .about-image-grid .experience-badge .text {
  font-size: 0.8rem;
  text-align: center;
  max-width: 90px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .about .about-image-grid {
    height: 480px;
  }

  .about .about-image-grid .img-grid-main {
    height: 300px;
  }

  .about .about-image-grid .img-grid-secondary {
    height: 200px;
  }

  .about .about-image-grid .img-grid-tertiary {
    height: 220px;
  }
}

@media (max-width: 991px) {
  .about .section-heading {
    font-size: 2.2rem;
  }

  .about .about-content-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }

  .about .about-content-box h3 {
    font-size: 1.8rem;
  }

  .about .about-image-grid {
    height: 450px;
    margin: 0 auto;
    max-width: 500px;
  }

  .about .about-image-grid .experience-badge {
    width: 100px;
    height: 100px;
  }

  .about .about-image-grid .experience-badge .years {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .about .section-heading {
    font-size: 1.8rem;
  }

  .about .feature-box {
    padding: 1.8rem 1rem;
  }

  .about .feature-box .icon-container {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .about .about-image-grid {
    height: 400px;
    margin-bottom: 2rem;
  }

  .about .about-image-grid .img-grid-main {
    width: 75%;
    height: 250px;
  }

  .about .about-image-grid .img-grid-secondary {
    width: 55%;
    height: 180px;
  }

  .about .about-image-grid .img-grid-tertiary {
    width: 40%;
    height: 180px;
  }
}

.progress-bar {
  transition: width 1s ease;
}

.feature-box,
.about-content-box,
.img-grid-main,
.img-grid-secondary,
.img-grid-tertiary,
.experience-badge {
  transition: transform 0.5s ease, opacity 0.6s ease;
}


.section-title {
  text-align: center;
  margin-bottom: 60px;
  
}
.section-title h2 {
  color: #1e1850;
}

.section-title p {
  color: #1e1850;
}

.services .services-row {
  position: relative;
}

.services .services-headline .services-subtitle {
  color: #1e1850;
  border-bottom: 2px solid #f8e019;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.services .services-headline .services-title {
  color: var(--heading-color);
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700 !important;
  margin-bottom: 20px;
}

.services .services-description {
  margin-bottom: 30px;
}

.services .services-description p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.services .services-image-container {
  position: relative;
  margin-bottom: 30px;
}

.services .services-image-container .services-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 460px;
}

.services .services-image-container .services-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services .services-grid {
  margin-left: 50px;
}

@media (max-width: 991px) {
  .services .services-grid {
    margin-left: 0;
    margin-top: 70px;
  }
}

.services .service-card {
  background-color: color-mix(in srgb, #1e1850, transparent 92%);
  border-radius: 25px;
  padding: 30px 25px;
  margin-bottom: 25px;
  border: 1px solid rgba(154, 154, 154, 0.3);
  transition: all 0.3s ease;
  height: 100%;
}

.services .service-card:hover {
  background-color: #1e1850;
  transform: translateY(-5px);
}

.services .service-card:hover .service-icon {
  color: #f8e019;
  transform: scale(0.95);
}

.services .service-card:hover .service-info h3 a,
.services .service-card:hover .service-info p {
  color: #f8e019;
  transform: scale(0.95);
}

.services .service-card:hover .service-content .read-more-btn {
  background-color: #f8e019;
  color: #1e1850;
}

.services .service-content .service-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  margin: 0 auto;
  font-size: 48px;
  color: var(--heading-color);
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 {
  font-size: 1.4rem;
  margin: 15px 0;
  transition: all 0.3s ease;
}

.services .service-content .service-info h3 a {
  color: var(--heading-color);
  text-decoration: none;
}

.services .service-content .service-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.services .service-content .service-action {
  margin-top: 20px;
}

.services .service-content .service-action .read-more-btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.services .service-content .service-action .read-more-btn:hover {
  transform: translateX(5px);
}

.services .service-content .service-action .read-more-btn i {
  margin-left: 5px;
}

@media (max-width: 767px) {
  .services .services-headline .services-title {
    font-size: 2rem;
  }

  .services .services-image-container .services-image {
    height: 350px;
  }

  .services .services-image-container .circular-btn {
    bottom: -40px;
    right: 50%;
    transform: translateX(50%);
  }

  .services .services-image-container .circular-btn .circular-link {
    width: 130px;
    height: 130px;
    font-size: 0.9rem;
  }
}

/* Entrance bounce-in animation */
@keyframes bounceIn {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }
  60% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

.services-title,
.services-subtitle,
.services-description p {
  animation: bounceIn 1s ease forwards;
}

/* Card hover effects */
.service-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border-radius: 12px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

/* Service icons pop effect */
.service-icon {
  font-size: 36px;
  transition: transform 0.3s ease;
  color: #0d6efd;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

/* Smooth fade-ins */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 1s;
  transition-timing-function: ease-out;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Link hover animation */
.read-more-btn {
  position: relative;
  transition: color 0.3s;
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(5px);
}

section {
  scroll-margin-top: 100px;
}
.section-title p{
  padding: 20px !important;
}
.contact {
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
}

.contact .container {
  max-width: 1200px;
}

.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 400px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}
.groupI input {
  border-bottom: 1px solid #00003f;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: 1fr;
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, #1e1850, transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;

  color: #1e1850;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1e1850;
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: #f8e019;
  border-radius: 2px;
}

.contact .contact-form-container > p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px
    color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}



.footer .sitename {
  font-weight: 600;
  color: #f8c146;
}

.footer a:hover {
  text-decoration: underline;
}

.footer i {
  transition: transform 0.2s ease;
}

.footer i:hover {
  transform: scale(1.2);
  color: #f8c146;
}

/* contact */

.contact h2,
.contact p,
.contact-card,
.contact-form-container {
  transition: all 0.5s ease-in-out;
}

.contact-card {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

.contact-card:nth-child(1) {
  animation-delay: 0.3s;
}

.contact-card:nth-child(2) {
  animation-delay: 0.6s;
}

.contact-card:nth-child(3) {
  animation-delay: 0.9s;
}

.contact-card:nth-child(4) {
  animation-delay: 1.2s;
}

.contact-form-container {
  animation: zoomIn 1s ease forwards;
  opacity: 0;
  animation-delay: 1.4s;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.form-submit button {
  background: #007bff;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.form-submit button:hover {
  transform: scale(1.05);
  background: #0056b3;
}

.social-links a {
  display: inline-block;
  margin: 0 8px;
  font-size: 1.4rem;
  color: #555;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: rotate(10deg) scale(1.2);
  color: #007bff;
}

/* Optional AOS Fallbacks */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

.btnC {
  background-color: #1e1850;
  color: #f8e019;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
  border-radius: 0.3rem;
}

.card:hover .card-img-top {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.viewBtn {
  background-color: #1e1850;
  color: #f8e019;
  padding: 6px 15px;
  text-decoration: none;
  border-radius: 15px;
}

.getBtn {
  background-color: #f8e019;
  color: #1e1850;
  padding: 6px 20px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 15px;
}

.card-img-top {
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 0.5rem;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

.card {
  overflow: hidden;
  position: relative;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
  transform: scale(1);
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.viewBtn:hover,
.getBtn:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #6610f2, #ff00dd);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  color: #fff;
}
/* General Card Styling */
.card {
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Image Styling with Hover Zoom */
.card-img-top {
  transition: transform 0.5s ease;
  object-fit: cover;
  height: 250px;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Card Title */
.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Card Text */
.card-text {
  font-size: 0.95rem;
  color: #555;
}


/* form */

@import url(https://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}






.quote-form-wrapper {
  max-width: 500px !important;
  background: #fff;
  border-radius: 20px;
  padding: 30px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.form-header {
  margin-bottom: 20px;
  position: relative;
}

.form-header h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.form-header p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.pointer-icon {
  font-size: 40px;
  position: absolute;
  top: -10px;
  right: -15px;
  transform: rotateZ(88deg);
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"] {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  outline: none;
}

.quote-form input:focus {
  border-color: #999;
}

#consult-label {
  width: 100%;
  padding: 14px;
  font-size: 14px;
  margin-bottom: 15px;
  border-radius: 12px;
  border: 1px solid #ddd;
  background: #f8f8f8;
  outline: none;
  min-height: 120px;
  resize: none;
}

.radio-group {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.radio-group label {
  font-size: 14px;
}

.quote-form button {
  background: #000;
  color: #fff;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.quote-form button:hover {
  background: #333;
}


/* service */
.service-card {
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.3s;
  background-color: #fff;
 
}

.service-card:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 24px;
}

.service-title {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.serVice {
  padding-top: 30px;
}

.carousel-inner{
  overflow:unset !important;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 60%;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
padding: 20px;
}
.carousel-nav-top-right{
  top: -60px;
}
.carousel-nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.carousel-nav-btn:hover {
  background-color: #0b5ed7; /* Darker primary */
}

.carousel-nav-btn i {
  font-size: 16px;
}



#case-studies {
  background: #fff;
}
#container {
  max-width: 1200px !important;
  margin: 0 auto;
  padding:  60px 0;
  background-color:#fff;
}
h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #333;
  text-align: center;
}
h5 {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
  text-align: center;
}
#case-studies p {
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #555;
  text-align: center;
}
.swiper-container {
  width: 100%;
  height: 500px;
  /* perspective: 1200px; */
  overflow: visible;
  padding: 30px;
  background-color:  #f9fafb;
  border-radius: 10px;
}
.swiper-wrapper{
  max-width: 1100px !important;
}
.swiper-slide {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}
.slide-content {
padding: 20PX;
  display: flex;
  flex-direction: row;
  height: 100%;
  gap: 8%;
  align-items: center;
}
.portfolio-img{
  /* height: 500px; */
  width: 100%;

}
.slide-content img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 20px;
}
.slide-content h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.slide-content p {
  margin-bottom: 10px;
  font-size: 1rem;
}
.swiper-button-prev, .swiper-button-next {
  color: #333;
  background: rgba(255,255,255,0.8);
  border-radius: 10%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 20px;
}
.swiper-button-prev:after, .swiper-button-next:after {
  font-size: 1rem !important;
  font-weight: bold;
}

.portfolio-content{
  width: 100%;
}
.portfolio-content h2{
    text-align: left !important; 
}
.portfolio-content p{
  text-align: left !important;
}
@media (max-width:670px) {
  .slide-content{
    flex-direction: column;
  }
}
#hero{
background-color: rgb(237 237 237) ;

}
.hero-main {
  display: flex;
  min-height: 100vh;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  max-width: 1320px;
  margin:  auto;
   padding-top:7rem ;
}
.hero-left {
  flex: 1;
  color: #fff;
  padding: 64px 4vw 32px 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: transparent;
}
.hero-subtitle {
  color: #ffe16a;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.hero-title {

  font-size: 3.1rem;
  line-height: 1.04;
  font-weight: 900;
  margin-bottom: 1.3rem;
  color: #183152;

}
.hero-title .highlight {
  color: #ff4a7a;
  display: inline-block;
}
.hero-desc {
  font-size: 1.17rem;
  color: black;
  margin-bottom: 2.5rem;
  max-width: 520px;
  font-weight: 400;
}
.cta-btn {
  background: linear-gradient(144deg, #ff4a7a 0%, #a259f7 100%);
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 18px ;
  font-size: 1.15rem;
  width: 190px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(127, 60, 255, 0.18);
  cursor: pointer;

  transition: background 0.2s, box-shadow 0.2s;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #a259f7 0%, #ff4a7a 100%);
  box-shadow: 0 12px 32px rgba(127, 60, 255, 0.26);
}


.social-row {
  display: flex;
  gap: 18px;
  margin-top: 26px;
}
.social-row img {
  width: 28px;
  height: 28px;
filter: invert(0);
  opacity: 0.74;
  transition: opacity 0.2s;

}
.social-row img:hover {
  opacity: 1;
}

.hero-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  padding: 0 3vw 0 0;
  /* margin-top: 22rem; */
}
 
.billboard-card {
  background-size: contain;
  position: relative;
  background: linear-gradient(135deg, #1fe4f5 0%, #a259f7 100%) ;
  border-radius: 36px;
  padding: 10px;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 10px 38px rgba(31, 228, 245, 0.13), 0 2px 8px rgba(0,0,0,0.08);
  margin-left: auto;
  margin-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 600px;
  border-radius: 15px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease-in-out;
   position: relative;
     border: 5px solid transparent
}
.billboard-img {
  width: 100%;
  border-radius: 28px;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: 0;

}
.billboard-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
height: 100%;
  padding: 38px 30px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content:end;

}
.billboard-offer {
  text-align: center;
  margin-bottom: 12px;
}
.offer-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  color: #183152;
  letter-spacing: 1.5px;
  padding: 10px 20px;
  background: #ffffff;
  border-radius: 8px;
}
.offer-highlight {
  font-size: 1.3rem;
  font-weight: 800;
  color: #183152;
  background: #ffe16a;
  border-radius: 8px;
  padding: 2px 16px;
  display: inline-block;
  margin-top: 8px;
  letter-spacing: 1.2px;
  box-shadow: 0 2px 8px rgba(255,225,106,0.09);
}
.billboard-years {
  font-size: 1.13rem;
  color: #fff;
  background: rgba(26, 35, 126, 0.77);
  font-weight: 700;
  border-radius: 8px;
  padding: 4px 18px;
  margin-bottom: 14px;
  text-align: center;
  display: inline-block;
}
.billboard-list {
  color: black;
  font-size: 1rem;
  margin-bottom: 20px;
  list-style: disc inside;
  padding-left: 0;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.13);
}
.billboard-list li {
  margin-bottom: 2px;
}
.billboard-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #232b3b;
  border-radius: 24px;
  padding: 12px 0;
  font-size: 1.5rem;
  font-weight: 900;
  gap: 14px;
  margin-top: 8px;
  box-shadow: 0 2px 14px rgba(31, 228, 245, 0.13);

}
.phone-icon {
  font-size: 1.5rem;
}

@media (max-width: 1100px) {
  .hero-main { flex-direction: column;
  }
  .hero-left, .hero-right { padding: 30px 4vw; }
  .billboard-card { margin: 30px auto 0 auto; }
}
@media (max-width: 700px) {
  .hero-main{
    height: 100% !important;  }
  .hero-title { font-size: 2.4rem; }
  .billboard-card { max-width: 95vw; }
  .billboard-overlay { padding: 18px 10px 14px 10px; }
  .hero-left { padding: 30px 4vw  4vw; }
  
}
/* Animation keyframes */
@keyframes hero-left {
  0% {
    opacity: 0;
    transform: translateX(-80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-right {
  0% {
    opacity: 0;
    transform: translateX(80px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Animation classes */
.hero-left {
  animation: hero-left 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.hero-right {
  animation: hero-right 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.1s both;
}

.whatsapp-bubble {
  display: flex;
  align-items: center;
  position: fixed;
  left: 20px; /* Fixed distance from left edge */
  bottom: 20px; /* Fixed distance from bottom */
 
  color: #fff;
  /* border-radius: 32px; */
  padding: 12px 26px 12px 14px;
  font-size: 1.15rem;
  font-weight: 600;
  z-index: 999; /* Ensure it stays on top of other elements */
  text-decoration: none;
  gap: 10px;
  transition: all 0.3s ease;
}

.whatsapp-bubble:hover {
  transform: translateY(-5px);

}

.whatsapp-bubble img {
  width: 40px;
  height: 40px;

border-radius: 50px;
background-color: #25d366;
}
.whatsapp-bubble span{
 color:#25d366;
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem; /* Even smaller for mobile phones */
    line-height: 1.2;
  }
  .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .cta-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  .whatsapp-bubble {
    padding: 8px 16px 8px 10px;
    font-size: 0.9rem;
  }
  .whatsapp-bubble img {
    width: 20px;
    height: 20px;
  }
  .billboard-overlay {
    padding: 15px 10px 10px 10px; /* Tighter padding for very small screens */
  }
  .offer-title {
    font-size: 1.2rem;
  }
  .offer-highlight {
    font-size: 0.95rem;
    padding: 1px 8px;
  }
  .billboard-years {
    font-size: 0.9rem;
    padding: 2px 10px;
  }
  .billboard-list {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  .billboard-phone {
    font-size: 1.1rem;
    padding: 8px 0;
  }
}


.service-section {
  background-color: #ededed;
  padding: 60px 0;
  color: black;
  font-size: 1.2rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-box {
  background-color: #f5f5f5;
  color: #000;
  padding: 60px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.3);

}

.service-box:hover {
  transform: translateY(-5px);
}

.service-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: rgb(114 114 114 / 10%);
  position: absolute;
  top: 15px;
  left: 35px;
}

.service-box h4 {
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 40px;
}

.service-box::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  background-color: rgb(248 224 25);
  clip-path: polygon(100% 100%, 70% 100%, 100% 20%);
  transition: all 0.3s ease;
}

.service-box:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.8;
}
.service-box {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white; /* text ko contrast me rakhne ke liye */
  padding: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.service-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* contrast overlay */
  z-index: 1;
}

.service-box > * {
  position: relative;
  z-index: 2; /* text overlay ke upar */
}

/* Har service-box ke liye alag background image */
.service-box:nth-child(1) { background-image: url('/image/viny\ printing1.jpg'); }
.service-box:nth-child(2) { background-image: url('/image/standee2.jpg'); }
.service-box:nth-child(3) { background-image: url('/image/digital3.jpeg'); }
.service-box:nth-child(4) { background-image: url('/image/Uv\ printing4.webp'); }
.service-box:nth-child(5) { background-image: url('/image/service05.jpeg'); }
.service-box:nth-child(6) { background-image: url('/image/service06.jpeg'); }
.service-box:nth-child(7) { background-image: url('/image/Hoarding-2-scaled07.jpg'); }
.service-box:nth-child(8) { background-image: url('/image/pole8.webp'); }
.service-box:nth-child(9) { background-image: url('/image/service09.jpeg'); }
.service-box:nth-child(10) { background-image: url('/image/service010.jpeg'); }
.service-box:nth-child(11) { background-image: url('/image/service011.jpeg'); }
.service-box:nth-child(12) { background-image: url('/image/service012.png'); }
.service-box:nth-child(13) { background-image: url('/image/service013.webp'); }
.service-box:nth-child(14) { background-image: url('/image/Promotinal\ van014.jpg'); }
.service-box:nth-child(15) { background-image: url('/image/S.S\ \ M.S\ \ fabrication015.jpg'); }

@media (max-width: 450px) {
  /* .nav-icons{
    display: flex;
    flex-direction: column;
    gap: 5px;
    align-items: right;
  }
  .btn-getstarted{
    margin: 0;
  } */
           .header .header-container{
            flex-direction: column;
           }
           .header .logo img{
            max-height: 50px;
           }
}


#clients{
  background-color: #ededed;
  padding: 60px 0;
}

.sec-heading {
  margin-bottom: 50px;

}
.sec-heading h2 {
  text-align: center;
  font-family: allura;
  font-size: 80px;
    font-size: 2.5rem;
  font-weight: 700;
}

.box {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 60%;
  height: auto;
  transition: transform 0.5s ease-in;
  margin: 8px auto;
}
.box img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
}
.owl-carousel .owl-item img{
  width: 56% !important;
}
 
.box:hover {
  transform: scale(1.2);
}
.logo-box{
  padding-top: 1.5em !important;
}
@media (max-width: 990px) {
.logo-box{
  padding-top: 0.5 em;
}
}