/********** Template CSS **********/
:root {
    --primary: #AA0065;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #113f65;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;   /* थोडं left shift करायला कमी केलं */
    padding: 20px 0;     /* vertical padding थोडी कमी */
    color: #FFFFFF;
    font-size: 18px;     /* proper readable size */
    font-weight: 700;
    outline: none;
    transition: 0.3s;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: #FF6A00;      /* Bootstrap primary color */
    transform: translateY(-2px);
    text-shadow: 0 0 5px (#FF6A00);
}
.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}
.navbar-brand img {
    height: 150px;   /* fct logo chi height */
    width: auto;     /* proportion maintain rahil */
}

.navbar {
    min-height: 70px; /* navbar chi default height jasti hou deu naye */
    align-items: center; /* logo center align rahil */
}
.text-light i {
    background: linear-gradient(45deg, #FF6A00);
    background-clip: text;
    -webkit-background-clip: text;   /* for Chrome, Edge, Safari */
    color: transparent;
    -webkit-text-fill-color: transparent;
}
/* Navbar text styling */
.custom-nav {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin-left: 50px;
    transition: all 0.3s ease;
}

/* Hover effect */
.custom-nav:hover {
    color: #0d6efd; /* Bootstrap primary color */
    text-shadow: 0 0 8px rgba(13, 110, 253, 0.5);
    transform: translateY(-2px);
}

/* Navbar contact button */
.btn-primary {
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(13, 110, 253, 0.5);
}
/* vision mission*/
:root{
  --primary:#AA0065; /* change to brand color */
  --muted:#6c757d;
  --card-bg: rgba(255,255,255,0.75);
  --glass-border: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
}

body { font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial; }

/* Section background */
.about-values{
  background: linear-gradient(180deg, rgba(245,247,250,1) 0%, rgba(238,246,255,1) 100%);
  padding: 4.5rem 0;
}

/* Header styles */
.about-values .text-primary{
  color: var(--primary) !important;
  font-weight:700;
  letter-spacing:0.2px;
}

.position-relative.h-100 img {
  transition: all 0.5s ease-in-out;
  transform: scale(1);
  filter: brightness(100%);
}
/* about image */
/* Container styling */
.about-img {
  overflow: hidden;
  border-radius: 10px;
}

/* Image styling */
.about-img img {
  width: 100%;
  height: auto;              /* keep aspect ratio */
  object-fit: cover;         /* fills area naturally */
  transition: all 0.5s ease; /* smooth hover */
}

/* Hover zoom */
.about-img:hover img {
  transform: scale(1.1);
  filter: brightness(85%);
}

/* Responsive */
@media (max-width: 768px) {
  .about-img {
    border-radius: 8px;
  }
}
.about-text {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.3px;
  word-spacing: 2px;
  color: #333;
  text-align: justify;
  padding: 10px 5px;
}

@media (max-width: 768px) {
  .about-text {
    font-size: 16px;
    line-height: 1.9;
    word-spacing: 1.5px;
    padding: 8px 6px;
  }
}


/* Card design */
.value-card{
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 16px;
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18,38,63,0.08);
  transition: transform .36s cubic-bezier(.2,.9,.3,1), box-shadow .36s, backdrop-filter .36s;
  backdrop-filter: blur(6px) saturate(130%);
  -webkit-backdrop-filter: blur(6px) saturate(130%);
  min-height: 160px;
}

/* Accent stripe (top-left) */
.value-card::before{
  content: "";
  position: absolute;
  left: -40%;
  top: -55%;
  width: 180%;
  height: 120%;
  background: linear-gradient(120deg, rgba(13,110,253,0.08), rgba(0,199,255,0.04));
  transform: rotate(12deg);
  pointer-events:none;
}

/* Icon style */
.value-card h5{
  display:flex;
  align-items:center;
  gap:0.6rem;
  font-size:1.05rem;
  margin-bottom:0.6rem;
}
.value-card h5 .val-icon{
  display:inline-grid;
  place-items:center;
  width:44px;
  height:44px;
  border-radius:10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.85), rgba(255,255,255,0.6));
  box-shadow: 0 4px 12px rgba(13,110,253,0.08);
  font-size:1.05rem;
}

/* Text */
.value-card p{
  color: #344050;
  margin:0;
  font-size:0.95rem;
  line-height:1.5;
}

/* Hover effect */
.value-card:hover{
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(18,38,63,0.15);
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.85);
}

/* ✨ Extra hover glow + shimmer effect */
.value-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.25), rgba(255,255,255,0.05), rgba(255,255,255,0));
  transform: skewX(-25deg);
  opacity: 0;
  transition: all 0.8s ease;
}

.value-card:hover::after {
  left: 130%;
  opacity: 1;
}

/* Slight icon animation on hover */
.value-card:hover h5 .val-icon {
  background: linear-gradient(180deg, var(--primary), #ff4f93);
  color: #fff;
  transform: rotate(5deg);
  transition: all 0.4s ease;
}

/* Make headings slightly larger on screens */
@media (min-width:768px){
  .about-values .lead{ font-size:1.05rem; }
  .value-card{ min-height:170px; }
}

/* Responsive tweaks for smaller devices */
@media (max-width:575.98px){
  .value-card{ padding:1.2rem; border-radius:12px; }
  .value-card h5 .val-icon{ width:40px; height:40px; }
}

/***vision mission end***/
.card-hover {
  transition: all 0.4s ease;
}
.card-hover:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

/* Gradient backgrounds */
.bg-gradient-primary {
  background: linear-gradient(135deg, #007bff, #00b4d8);
}
.bg-gradient-secondary {
  background: linear-gradient(135deg, #6f42c1, #d63384);
}
.bg-gradient-tertiary {
  background: linear-gradient(135deg, #198754, #20c997);
}
/*** vision mission End ***/
/*** Carousel ***//* Overlay background */
#header-carousel .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Image sizing */
#header-carousel .carousel-item img {
  width: 100%;
  height: 100vh; /* full height for desktop */
  object-fit: cover;
}

/* Center caption text perfectly */
#header-carousel .carousel-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}

/* Text style adjustments */
#header-carousel .carousel-caption h1,
#header-carousel .carousel-caption h5 {
  color: #fff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  #header-carousel .carousel-item img {
    height: 60vh; /* shorter height for mobile */
  }

  #header-carousel .carousel-caption h1 {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  #header-carousel .carousel-caption h5 {
    font-size: 0.9rem;
  }
}

/* For mobile view only */
@media (max-width: 768px) {
  #header-carousel .carousel-item img {
    height: 450px; /* Increase image height */
    object-fit: cover; /* Keep image aspect ratio */
  }

  #header-carousel .carousel-caption {
    bottom: 10%; /* Move text slightly upward */
    padding: 0 15px;
  }

  #header-carousel h1 {
    font-size: 1.8rem; /* Adjust heading size */
    line-height: 1.3;
  }

  #header-carousel h5 {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% { left: 0; } 
    50% { left: 145px; } 
    100% { left: 0; }
}
@keyframes section-title-run {
    0% { left: 0; } 
    50% { left: 145px; } 
    100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 
    50% { left: 50%; margin-left: 45px; } 
    100% { left: 50%; margin-left: -75px; }
}
@keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 
    50% { left: 50%; margin-left: 45px; } 
    100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% { left: 0; } 
    50% { left: 85px; } 
    100% { left: 0; }
}
@keyframes section-title-run-sm {
    0% { left: 0; } 
    50% { left: 85px; } 
    100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}
 .glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.4s, box-shadow 0.4s;
  }

  .glass-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  }

  .service-icon {
    font-size: 40px;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    color: #fff;
    display: inline-block;
    transition: transform 0.4s, background 0.4s;
  }

  .gradient-icon {
    background: linear-gradient(135deg, #AA0065, #FF4081);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .glass-card:hover .gradient-icon {
    transform: rotate(10deg) scale(1.2);
  }

  .service-card h4 {
    font-weight: 600;
    margin-top: 15px;
    color: #222;
  }

  .service-card p {
    color: #555;
    margin-top: 10px;
  }

  .btn-outline-primary {
    border: 2px solid #AA0065;
    color: #AA0065;
    transition: all 0.3s;
  }

  .btn-outline-primary:hover {
    background: #AA0065;
    color: #fff;
  }

/***product/solution ***/
.solutions-section1 {
  background: url('img/background.jpg') center center/cover no-repeat;
  position: relative;
  color: #fff;
}

.solutions-section1 .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.solutions-section1 .container {
  position: relative;
  z-index: 2;
}

.solution-card1 {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.solution-card1:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.solution-card1 .icon i {
  transition: 0.4s;
}

.solution-card1:hover .icon i {
  transform: scale(1.1);
  color: #00b4d8;
}

/*** product/soltion ***/
@media (max-width: 768px) {
    .solutions-section1 {
        background-size: contain;
        background-position: center top;
    }
}
.solutions-section1 {
  position: relative;
  background-position: center;
  background-size: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.solutions-section1:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.solutions-section1:hover .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

/*** product/soltion end  ***/

/* contact form */
  /* Contact form labels black color */
  .contact-section .form-floating label {
    color: #000 !important;
  }
  /* Default (Desktop) */
.contact-section iframe {
  height: 100%;
  min-height: 450px;
}

/* Mobile view fix */
@media (max-width: 767px) {
  .contact-section iframe {
    height: 300px; /* mobile साठी proper height */
  }
}

/* contact form end */

/* Testimonial*/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--light);
    border-color: var(--primary);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact-page {
        max-width: 100% !important;
    }

    .contact-page .contact-form  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-page .contact-form  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}
/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(../img/carousel-3.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}
/* Contact*/
/* ===== CONTACT BOX ===== */
.contact-box {
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
  min-height: 270px; /* same height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}

/* Hover Effects */
.contact-box:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== ICON CIRCLE ===== */
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #AA0065;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #AA0065;
  font-size: 26px;
  transition: all 0.4s ease;
  animation: popIn 1s ease forwards;
}
.contact-box:hover .icon-circle {
  background-color: #AA0065;
  color: #fff;
  transform: rotate(10deg) scale(1.1);
}

/* Hover Text Effect */
.contact-box:hover h5 {
  color: #AA0065;
  transition: color 0.3s ease;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ===== EQUAL HEIGHT COLUMNS ===== */
.row.g-4 > [class*='col-'] {
  display: flex;
}
.row.g-4 > [class*='col-'] > .contact-box {
  flex: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-box {
    min-height: 230px;
  }
}

/* solutions*/
.solution-card {
  background: linear-gradient(135deg, #ffffff, #f0f3ff);
  color: #333;
  transition: all 0.4s ease;
  cursor: pointer;
  border-top: 4px solid transparent;
}

.solution-card:hover {
  transform: translateY(-10px);
  background: linear-gradient(135deg,#AA0065);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-top: 4px solid #fff;
}

.solution-card .icon {
  color: #FF5722;
  transition: color 0.4s ease, transform 0.4s ease;
}

.solution-card:hover .icon {
  color: #fff;
  transform: scale(1.2);
}

.badge.bg-gradient {
  font-size: 16px;
  font-weight: 600;
  border: none;
}
/* project management*/
.management-card {
  background: linear-gradient(145deg, #ffffff, #e6f0ff);
  transition: all 0.4s ease;
  cursor: pointer;
}
.management-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
background: linear-gradient(135deg, #ff9a9e, #fad0c4);




}
.icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}
.management-card:hover .icon-circle {
  transform: scale(1.2);
  background-color: #b48521;
  color: #fff;
}
@media (max-width: 768px) {
  .management-card {
    text-align: center;
  }
  .icon-circle {
    margin: 0 auto 20px auto;
  }
}
/* feature image*/
#feature-image-1 img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

#feature-image-1 img:hover {
  transform: scale(1.1); /* zoom effect */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); /* shadow effect */
}
/* Common floating button style */
/*Whatsapp btn */
/* Call Button */
.float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 135px;   /* वर */
    right: 20px;     /* सर्व बटणांसाठी समान */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* WhatsApp Button */
.floata {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 75px;    /* Call च्या खाली */
    right: 20px;     /* back-to-top सारखं align */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 15px;    /* WhatsApp च्या खाली */
    right: 20px;     /* एकाच vertical line मध्ये */
    background-color: #AA0065;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 26px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Icon size */
.float i,
.floata i,
.back-to-top i {
    color: white;
    font-size: 24px;
}
