@charset "utf-8";
/* CSS Document */

body {
  
}

/* FLOATING SEO IMAGES */
.floating-icon {
    position: absolute;
    width: 60px;
    opacity: 0.6;
    animation: floatSEO 12s infinite ease-in-out;
    z-index: 1;
}

.i1 { top: 12%; left: 6%; animation-duration: 14s; }
.i2 { top: 70%; left: 88%; animation-duration: 18s; }
.i3 { top: 42%; left: 13%; animation-duration: 15s; }
.i4 { top: 78%; left: 60%; animation-duration: 19s; }
.i5 { top: 18%; left: 78%; animation-duration: 21s; }
.i6 { top: 55%; left: 35%; animation-duration: 16s; }

@keyframes floatSEO {
    0% { transform: translateY(0) translateX(0) scale(1); opacity: .5; }
    50% { transform: translateY(-50px) translateX(20px) scale(1.1); opacity: .9; }
    100% { transform: translateY(0) translateX(0) scale(1); opacity: .5; }
}

/* Title */
.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 60px;
    color: #e62639;
    font-weight: 700;
    position: relative;
    z-index: 5;
}

/* 3 COLUMN GRID */
.services-container {
    width: 90%;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 5;
}

/* SERVICE BOX */
.service-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    position: relative;
    text-align: center;
    opacity: 0;
    animation-duration: 1.3s;
    animation-fill-mode: forwards;
}

.image-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform 0.1s ease-out;
}

.image-circle img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    pointer-events: none;
}



/* Entrance Animations (Left, Top, Right repeating) */
.service-box:nth-child(3n+1) { animation-name: fromLeft; }
.service-box:nth-child(3n+2) { animation-name: fromTop; }
.service-box:nth-child(3n+3) { animation-name: fromRight; }

@keyframes fromLeft {
    0% { opacity:0; transform: translateX(-80px); }
    100% { opacity:1; transform: translateX(0); }
}
@keyframes fromTop {
    0% { opacity:0; transform: translateY(-80px); }
    100% { opacity:1; transform: translateY(0); }
}
@keyframes fromRight {
    0% { opacity:0; transform: translateX(80px); }
    100% { opacity:1; transform: translateX(0); }
}

/* Hover effect */
.service-box:hover {
    transform: translateY(-10px);
    transition: 0.4s;
}

/* ICON CIRCLE */
.icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: rgba(230, 38, 57, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconFloat 4s infinite ease-in-out;
}

.icon-box i {
    font-size: 35px;
    color: #e62639;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

/* TEXT */
.service-box h3 {
    font-size: 22px;
    color: #e62639;
    margin-bottom: 15px;
}

.service-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* LIST BULLETS */
.service-box ul {
    text-align: left;
    padding-left: 0;
}

.service-box ul li {
    list-style: none;
    margin-bottom: 6px;
    font-size: 15px;
    color: #444;
}

.service-box ul li:before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #e62639;
}

/* SHAKE EFFECT ON MOUSE MOVE */
.service-box {
    transition: transform 0.15s ease-out;
}
p
{
text-align:justify
}





/* Second wave for depth */
.wave2 {
    opacity: 0.4;
    animation-duration: 18s;
    animation-direction: reverse;
}

/* Animation */
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


.service-box.shake {
    transform: translateX(-8px) rotate(-1deg);
}

.service-box.shake2 {
    transform: translateX(8px) rotate(1deg);
}

/* ICON SHAKE + WHITE SHADOW */
.icon-box i {
    transition: transform 0.15s ease-out, filter 0.3s ease-out;
}

.icon-box.glow i {
    transform: rotate(8deg) scale(1.1);
    filter: drop-shadow(0 0 12px white);
}


/* RESPONSIVE */
@media(max-width: 900px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}



/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    margin: 0;
    padding: 0;
    color: #222;
}

.section-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    padding: 40px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #e62737;
}

.section-sub {
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* LAYOUT */
.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

/* CARD */
.service-card {
    flex: 1;
    min-width: 350px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    transition: transform .5s ease;
}

.service-card:hover {
    transform: scale(1.02);
}

/* ===== IMAGE WITH WHITE ROUND BACKGROUND ===== */
.card-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.card-image .round-box {
    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: transform 1s ease;
}

.service-card:hover .round-box {
    transform: scale(1.08);
}

.card-image img {
    width: 120%;
    height: auto;
    transition: transform 1.2s ease;
}

.service-card:hover .round-box img {
    transform: scale(1.12);
}

/* CONTENT */
.card-content {
    padding: 25px;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #e62737;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.card-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ICON LIST */
.icon-list {
    margin-top: 15px;
}

.icon-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.icon-shape {
    width: 38px;
    height: 38px;
    background: #e62737;
    transform: rotate(45deg);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .5s ease;
}

.icon-shape i {
    transform: rotate(-45deg);
    color: #fff;
    font-size: 18px;
}

.icon-item:hover .icon-shape {
    transform: rotate(45deg) scale(1.15);
}











/* ANIMATION */
.from-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all .9s ease;
}

.from-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all .9s ease;
}

.animate {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.circle-container {
    width: 220px;
    height: 220px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomInOut 4s ease-in-out infinite;
}

@keyframes zoomInOut {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* RESPONSIVE */
@media(max-width: 900px){
    .service-row {
        flex-direction: column;
    }
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px); /* 2 columns with gap considered */
    min-width: 300px;
}
@media(max-width: 900px){
    .service-card {
        flex: 1 1 100%; /* stack on mobile */
    }
}

  .card-image1 {
  position: relative;
  width: 200px; /* adjust as needed */
  margin: 50px auto;
  border-radius: 50%;
}

.card-image1 img {
  width: 100%;
  border-radius: 50%;
  display: block;
}

/* Grey orbit circle */
.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  border: 2px solid lightgrey;
  border-radius: 50%;
}

/* Dot style */
.dot {
  width: 12px;
  height: 12px;
  background-color: #e52636;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center;
}







.animated-underline,
.white-animated-underline {
  position: relative;
  font-size: 36px;
  padding-bottom: 8px;
  text-align: center;
  display: inline-block;
}

/* RED UNDERLINE */
.animated-underline {
  color: #e52636;
}

.animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(#e52636 25%, transparent 25%);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  animation: moveDots 1s linear infinite;
}

/* WHITE UNDERLINE */
.white-animated-underline {
  color: #ffffff;
}

.white-animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-image: radial-gradient(#ffffff 25%, transparent 25%);
  background-size: 12px 4px;
  background-repeat: repeat-x;
  animation: moveDotsWhite 1s linear infinite;
}

/* Keyframes */
@keyframes moveDots {
  0% { background-position: 0 0; }
  100% { background-position: 12px 0; }
}

@keyframes moveDotsWhite {
  0% { background-position: 0 0; }
  100% { background-position: 12px 0; }
}

/* 📱 Mobile (Perfect Size) */
@media (max-width: 600px) {
  .animated-underline,
  .white-animated-underline {
    font-size: 24px;
	line-height:1.7;       /* smaller title */
    padding-bottom: 6px; 
	  /* adjust underline spacing */
  }

  .animated-underline::after,
  .white-animated-underline::after {
    height: 3px;
    background-size: 10px 3px; /* scaled dot size */
  }
}

/* 📲 Small Phones (optional) */
@media (max-width: 400px) {
  .animated-underline,
  .white-animated-underline {
    font-size: 20px;
  }
}


/* Animated paragraph */
  .white-animated-para {
    color: #ffffff;               /* white text */
    font-size: 20px;
    line-height: 1.7;
    max-width: 650px;

    opacity: 0;                    /* start invisible */
    transform: translateY(20px);   /* start lower */

    animation: fadeUp 2s ease-out forwards;
    /* forwards = stays in final position, no revert */
  }

  /* Fade + slide animation */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);  /* final position */
    }
  }
  
  
  .container1 {
        width: 90%;
        max-width: 1150px;
        margin: auto;
        padding: 40px 0;
    }

    /* ========= HEADER ROW ========= */
    .header-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-bottom: 60px;
        text-align: center;
    }

    .heading {
        font-size: 42px;
        font-weight: 900;
        color: #e62737;
        animation: shake 2s infinite ease-in-out;
        display: inline-block;
        position: relative;
    }

    .heading .underline {
        border-bottom: 3px dotted #e62737;
        padding-bottom: 6px;
        position: relative;
    }

    .heading .underline::after {
        content: "";
        position: absolute;
        left: -100%;
        bottom: -3px;
        height: 3px;
        width: 100%;
        background: #e62737;
        animation: underlineMove 3s linear infinite;
    }

    @keyframes underlineMove {
        0% { left: -100%; }
        100% { left: 100%; }
    }

    @keyframes shake {
        0%, 100% { transform: translateX(0); }
        25% { transform: translateX(-3px); }
        50% { transform: translateX(3px); }
        75% { transform: translateX(-3px); }
    }

    .typing {
        font-size: 20px;
        font-weight: 600;
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid #e62737;
        animation: typing 4.5s steps(40) infinite, blink 0.7s infinite;
    }

    @keyframes typing {
        0% { width: 0; }
        40% { width: 100%; }
        60% { width: 100%; }
        100% { width: 0; }
    }

    @keyframes blink {
        0%, 100% { border-color: transparent; }
        50% { border-color: #e62737; }
    }

    /* ======== SECTION STYLING ======== */
    .section-box {
        margin: 50px 0;
        padding: 50px 25px;
        background: linear-gradient(135deg, #ffffff, #f7f7f7);
        border-radius: 30px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        position: relative;
        overflow: hidden;
    }

    .section-box::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 140px;
        background: url("https://i.ibb.co/9Zf1vR8/wave-bottom.png");
        background-size: cover;
        opacity: 0.3;
    }

    .row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        align-items: center;
    }

    .col-left,
    .col-right {
        flex: 1;
        min-width: 280px;
        overflow: hidden;
    }

    /* IMAGE SHAPE & ANIMATION */
    .section-img {
        width: 100%;
        border-radius: 50% 20% 50% 20%; /* unique shape */
        box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        animation: zoomInOut 6s ease-in-out infinite;
    }

    @keyframes zoomInOut {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.05); }
    }

    /* FLY IN ANIMATION */
    .fly-left {
        opacity: 0;
        transform: translateX(-50px);
        animation: flyLeft 1s forwards;
    }

    .fly-right {
        opacity: 0;
        transform: translateX(50px);
        animation: flyRight 1s forwards;
    }

    @keyframes flyLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes flyRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    h2 {
        color: #e62737;
        margin-bottom: 12px;
    }

    ul { padding-left: 20px; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
        .header-row { flex-direction: column; text-align: center; }
        .heading { font-size: 32px; }
        .typing { font-size: 18px; }
    }
	
	
	




body {
   
}

/* Section */
.process-section {
    padding: 20px 30px;
    max-width: 100%;
    margin: auto;
    text-align: center;
}

/* Main Heading */
.process-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.process-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #e62737;
    display: block;
    margin: 10px auto 0;
    border-radius: 3px;
}

/* Intro Paragraph Box */
.intro-box {
    max-width: 900px;
    margin: 20px auto 50px;
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
}

/* Swiper */
.swiper {
    width: 100%;
    padding-bottom: 60px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

/* Card */
.process-card {
    width: 100%;
    max-width: 360px;
	height:auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   
    transform-origin: center;
}

.process-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
    text-align: left;
}

.card-body h3 {
    font-size: 22px;
    margin: 0 0 10px 0;
    font-weight: 700;
}

/* Dotted Line */
.dotted-line {
    width: 100%;
    height: 2px;
    background: repeating-linear-gradient(to right, #999 0 6px, transparent 6px 12px);
    background-size: 200% 100%;
    animation: moveDots 2s linear infinite;
    margin: 12px 0;
}

@keyframes moveDots {
    0% { background-position: 0 0; }
    100% { background-position: 200% 0; }
}

/* Custom Bullet List */
.card-body ul {
    padding-left: 0;
    list-style: none;
    margin: 10px 0;
}

.card-body ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 22px;
    line-height: 1.6;
}

/* Custom red dot bullet */
.card-body ul li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
    color: #e62737;
    font-size: 14px;
}

/* Shake Animation */
@keyframes shakeCard {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.shake {
    animation: shakeCard 3s ease-in-out infinite;
}


    /* Curved Image */
    .curved-img {
        width: 400px;
        border-radius: 30px;
        overflow: hidden;
        opacity: 0;
        animation: zoomOutSlow 6s ease-in-out forwards;
        animation-delay: 0.3s;
    }

    /* Fade In + Slow Zoom Out + STAY VISIBLE */
    @keyframes zoomOutSlow {
        0% {
            opacity: 0;
            transform: scale(1.15);
        }
        20% {
            opacity: 1;
            transform: scale(1.1);
        }
        70% {
            opacity: 1;
            transform: scale(1.02);
        }
        100% {
            opacity: 1;    /* stays visible */
            transform: scale(1);  /* final position */
        }
    }


.processSectionX {
  background: #e62737;
  padding: 50px 20px;
  overflow: hidden;
  color: #fff;
}

.sliderViewportX {
  overflow: hidden;
  width: 100%;
}

.sliderTrackX {
  display: flex;
  transition: transform 0.6s ease;
}

.sliderItemX {
  flex: 0 0 25%; /* 4 items visible */
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  position: relative;
}

/* Vertical dotted line between items except every 4th */
.sliderItemX:not(:nth-child(4n))::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 0;
  border-right: 2px dotted rgba(255,255,255,0.7);
}

.iconCircleX {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #e62737;
}

.headingTypeX {
  font-size: 22px;
  font-weight: 700;
  color:#FFFFFF;
  margin-bottom: 10px;
}

.sliderItemX p {
  color: #fff;
  opacity: 0.95;
  margin-top: 10px;
}

/* Fade effect */
@keyframes fadeX {
  from {opacity:0; transform: translateY(20px);}
  to {opacity:1; transform: translateY(0);}
}


.imageShakeHoverX {
  display: inline-block;
  border-radius: 15px; /* Rounded corners */
  transition: transform 0.2s;
  cursor: pointer;
}

/* Shake animation only on hover */
.imageShakeHoverX:hover {
  animation: shakeHoverX 0.5s;
  animation-iteration-count: infinite;
}

/* Keyframes for shake effect */
@keyframes shakeHoverX {
  0% { transform: translateX(0); }
  10% { transform: translateX(-5px) rotate(-2deg); }
  20% { transform: translateX(5px) rotate(2deg); }
  30% { transform: translateX(-5px) rotate(-2deg); }
  40% { transform: translateX(5px) rotate(2deg); }
  50% { transform: translateX(-5px) rotate(-2deg); }
  60% { transform: translateX(5px) rotate(2deg); }
  70% { transform: translateX(-5px) rotate(-2deg); }
  80% { transform: translateX(5px) rotate(2deg); }
  90% { transform: translateX(-5px) rotate(-2deg); }
  100% { transform: translateX(0) rotate(0deg); }
}
.socialIconsX {
  display: flex;
  gap: 20px;
  justify-content: center; /* Center by default */
  flex-wrap: wrap;
}

.socialIconsX a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  color: #e62737;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  position: relative;
}

/* Bounce effect on hover */
.socialIconsX a:hover {
  animation: bounceX 0.6s;
  transform: scale(1.2);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Tooltip label */
.socialIconsX a::after {
  content: attr(data-label);
  position: absolute;
  bottom: -25px;
  font-size: 12px;
  color: #333;
  opacity: 0;
  transition: opacity 0.3s;
}

.socialIconsX a:hover::after {
  opacity: 1;
}

/* Bounce keyframes */
@keyframes bounceX {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* 📱 Mobile Responsiveness */
@media (max-width: 600px) {
  .socialIconsX {
    justify-content: center; /* ensure center alignment */
    gap: 15px; /* slightly smaller spacing */
  }

  .socialIconsX a {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}



.faqSectionX {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.faqSectionX h1 {
  text-align: center;
  color: #e62737;
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: bold;
}

.accordionItemX {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.accordionHeaderX {
  cursor: pointer;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  color: #333;
  transition: background 0.3s;
}

.accordionHeaderX:hover {
  background: #fdf0f0;
}

.accordionHeaderX i {
  position: absolute;
  right: 25px;
  font-size: 20px;
  color: #e62737;
  transition: transform 0.3s;
}

.accordionContentX {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 25px;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordionContentX.open {
  padding: 20px 25px;
}

.accordionHeaderX.active i {
  transform: rotate(45deg);
}

.accordionContentX ul {
  padding-left: 20px;
  margin: 10px 0;
}

.accordionContentX li {
  margin-bottom: 8px;
}

.accordionContentX p {
  margin: 0 0 10px 0;
}

/* Section styling */
.consultationSectionX {
  position: relative;
  background: #e62737;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* Animated bubbles */
.bubbleX {
  position: absolute;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  animation: rise 10s infinite;
}

@keyframes rise {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0.5; }
  50% { opacity: 1; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

/* Text container */
.consultationContentX {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease forwards;
}

/* Animation */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.consultationContentX h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}

.consultationContentX p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Contact info */
.contactInfoX {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.contactInfoX div {
  display: flex;
  align-items: center;
  font-size: 18px;
  gap: 10px;
  transition: transform 0.3s;
}

.contactInfoX div:hover {
  transform: scale(1.1);
}

/* Icons */
.contactInfoX i {
  font-size: 24px;
  color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
  .consultationContentX h2 { font-size: 28px; }
  .consultationContentX p { font-size: 16px; }
  .contactInfoX { flex-direction: column; gap: 20px; }
}

/* Optional button style */
.consultationContentX a.buttonX {
  display: inline-block;
  background: #fff;
  color: #e62737;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.consultationContentX a.buttonX:hover {
  background: rgba(255,255,255,0.8);
  color: #e62737;
}

/* Sticky Call Button Container */
/* Sticky Call Button Container */
/* Sticky Call Button Container */
.callButtonContainerX {

}

/* Call Button Styling */
.callButtonX {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e62737;
  color: #fff;
  font-weight: bold;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(230, 39, 55, 0.6);
  animation: pulseX 1.5s infinite;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

/* Hover Effect */
.callButtonX:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(230, 39, 55, 0.9);
  color: #fff;
}

/* Lock link color for active/focus */
.callButtonX:active,
.callButtonX:focus {
  color: #fff;
  background: #e62737;
  text-decoration: none;
}

/* Icon inside the button */
.callButtonX i {
  font-size: 24px;
  animation: blinkIconX 1s infinite;
  color: #fff;
}

/* Pulse animation for the button */
@keyframes pulseX {
  0% { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
  50% { box-shadow: 0 0 25px rgba(255,255,255,0.8); }
  100% { box-shadow: 0 0 10px rgba(255,255,255,0.3); }
}

/* Blinking icon animation */
@keyframes blinkIconX {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Optional: bounce icon on hover */
.callButtonX:hover i {
  animation: bounceIconX 0.5s infinite alternate;
}

@keyframes bounceIconX {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

/* ====== Responsive ====== */
@media (max-width: 480px) {
  .callButtonContainerX {
    bottom: 20px;
    right: 50%;  /* center horizontally */
    transform: translateX(50%); /* center */
  }

  .callButtonX {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 40px;
    gap: 6px;
  }

  .callButtonX i {
    font-size: 18px;
  }
}


/* Mobile navbar toggler background */
.navbar-toggler {
    background-color: #e62639 !important;
    border: none !important;
    padding: 8px 10px;
    border-radius: 5px;
}

/* Make the toggler icon bars white */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


.processSectionX {
  background: #e62737;
  padding: 50px 20px;
  overflow: hidden;
  color: #fff;
}

.sliderViewportX {
  overflow: hidden;
  width: 100%;
}

.sliderTrackX {
  display: flex;
  transition: transform 0.6s ease;
}

.sliderItemX {
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
  position: relative;
  flex: 0 0 25%; /* Desktop: 4 items */
}

/* dotted line divider */
.sliderItemX:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 0;
  border-right: 2px dotted rgba(255,255,255,0.6);
}

/* Circle icon */
.iconCircleX {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 40px;
  color: #e62737;
}

/* ========== RESPONSIVE BREAKPOINTS ========== */

@media (max-width: 992px) {  /* Tablet */
  .sliderItemX {
    flex: 0 0 50%; /* 2 items */
  }
}

@media (max-width: 600px) {  /* Mobile */
  .sliderItemX {
    flex: 0 0 100%; /* 1 item */
  }
  
  .sliderItemX:not(:last-child)::after {
    display: none !important;
  }
}

  .container2 {
        display: flex;
        flex-wrap: wrap;
        padding: 60px 8%;
        align-items: center;
        min-height: 100vh;
        position: relative;
    }

    /* LEFT COLUMN */
    .left {
        flex: 1;
       min-width: 50%;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .abstract-img {
        width: 75%;
        max-width: 420px;
        animation: floatImage 5s ease-in-out infinite;
        border-radius: 25px;
        filter: drop-shadow(0 0 25px rgba(230, 39, 55, 0.35));
    }

    @keyframes floatImage {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-18px); }
        100% { transform: translateY(0px); }
    }

    /* BACKGROUND SHAPES */
    .shape {
        position: absolute;
        border-radius: 50%;
        background: rgba(230, 39, 55, 0.08);
        animation: shapeMove 8s infinite ease-in-out;
        z-index: -1;
    }

    .shape:nth-child(1) { width: 150px; height: 150px; top: 40px; left: 10%; animation-delay: 0s; }
    .shape:nth-child(2) { width: 220px; height: 220px; bottom: 20px; right: 5%; animation-delay: 2s; }
    .shape:nth-child(3) { width: 100px; height: 100px; top: 60%; left: 55%; animation-delay: 4s; }

    @keyframes shapeMove {
        0% { transform: scale(1) translateY(0); opacity: 0.45; }
        50% { transform: scale(1.2) translateY(-20px); opacity: 0.7; }
        100% { transform: scale(1) translateY(0); opacity: 0.45; }
    }

    /* RIGHT CONTENT */
    .right {
        flex: 1;
        min-width: 50%;
        padding: 20px 40px;
        animation: fadeInRight 1.5s ease;
    }

    @keyframes fadeInRight {
        from { opacity: 0; transform: translateX(40px); }
        to { opacity: 1; transform: translateX(0); }
    }

    /* MAIN TITLE */
    .title {
        font-size: 38px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #e62737;
        position: relative;
        display: inline-block;
        padding-bottom: 8px;
    }

    /* ANIMATED DOTTED UNDERLINE */
    .title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 150px;
        height: 3px;
        border-bottom: 3px dotted #e62737;
        animation: dashMove 1.4s infinite linear;
    }

    @keyframes dashMove {
        0% { background-position: 0 0; }
        100% { background-position: 20px 0; }
    }

    .subtitle {
        font-size: 24px;
        margin-bottom: 25px;
        font-weight: 600;
        color: #e62737;
        position: relative;
        display: inline-block;
        padding-bottom: 6px;
    }

    .subtitle::after {
        content: "";
        position: absolute;
        width: 100px;
        height: 3px;
        left: 0;
        bottom: 0;
        border-bottom: 3px dotted #e62737;
        animation: dashMove 1.4s infinite linear;
    }

   
    /* FOOTER BUBBLES */
    .footer-bubbles {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 170px;
        overflow: hidden;
        z-index: -5;
    }

    .bubble {
        position: absolute;
        bottom: -50px;
        background: rgba(230, 39, 55, 0.2);
        border-radius: 50%;
        animation: bubbleFloat 8s linear infinite;
    }

    @keyframes bubbleFloat {
        0% { transform: translateY(0) scale(1); opacity: 0.2; }
        100% { transform: translateY(-220px) scale(1.4); opacity: 0.2; }
    }

    @media(max-width: 920px) {
        .container2 {
            flex-direction: column;
            text-align: center;
        }
        .right { padding: 20px; }
        .abstract-img { width: 70%; }
    }
	
	 .typing-box {
        font-size: 18px;
        font-weight: 700;
        color: #e62737;
        width: fit-content;
        white-space: nowrap;
        overflow: hidden;
        border-right: 3px solid #e62737;   /* Cursor */
        animation: typing 6s steps(60, end), blinkCursor .7s infinite;
    }

    /* Typing Animation */
    @keyframes typing {
        from { width: 0; }
        to { width: 100%; }
    }

    /* Cursor Blink */
    @keyframes blinkCursor {
        0% { border-color: #e62737; }
        50% { border-color: transparent; }
        100% { border-color: #e62737; }
    }
    .section {
        padding: 30px 8%;
        text-align: center;
    }

    .main-title {
        font-size: 40px;
        color: #e62737;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    /* Animated dotted underline */
    .main-title::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 3px;
        border-bottom: 3px dotted #e62737;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        animation: dottedMove 1.4s infinite linear;
    }

    @keyframes dottedMove {
        0% { background-position: 0 0; }
        100% { background-position: 30px 0; }
    }

    /* GRID LAYOUT */
    .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        margin-top: 40px;
    }

    @media(max-width: 1100px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width: 680px) {
        .grid {
            grid-template-columns: 1fr;
        }
    }

    .section {
        padding: 30px 8%;
        text-align: center;
    }

    .main-title {
        font-size: 40px;
        color: #e62737;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .main-title::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 3px;
        border-bottom: 3px dotted #e62737;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        animation: dottedMove 1.4s infinite linear;
    }

    @keyframes dottedMove {
        0% { background-position: 0 0; }
        100% { background-position: 30px 0; }
    }

    /* GRID */
    .grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
        margin-top: 40px;
    }

    @media(max-width: 1100px) {
        .grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media(max-width: 680px) {
        .grid { grid-template-columns: 1fr; }
    }

    /* CARD */
    .card {
        background: #ffffff;
        padding: 32px 26px;
        border-radius: 14px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.1);
        text-align: left;
        transition: transform .3s ease, box-shadow .3s ease;
        position: relative;
        animation: fadeUp 1.2s ease;
        overflow: hidden;
    }

    .card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.18);
    }

    /* ICON ANIMATION */
    .icon svg {
        width: 60px;
        height: 60px;
        fill: #e62737;
        margin-bottom: 18px;
        transition: all .35s ease;
        animation: floatIcon 3.5s ease-in-out infinite;
    }

    .card:hover .icon svg {
        transform: scale(1.18);
        filter: drop-shadow(0 0 12px rgba(230,39,55,0.45));
    }

    @keyframes floatIcon {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-6px); }
        100% { transform: translateY(0px); }
    }

    h3 {
        font-size: 22px;
        color: #e62737;
        margin-bottom: 12px;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
        color: #555;
    }

    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(40px); }
        to { opacity: 1; transform: translateY(0); }
    }
	
	
	
	    /* SECTION */
    .approach-section {
        padding: 80px 8%;
    }

    .main-title {
        font-size: 40px;
        font-weight: 700;
        color: #e62737;
        text-align: center;
        margin-bottom: 45px;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
        padding-bottom: 10px;
    }

    .main-title::after {
        content: "";
        position: absolute;
        width: 160px;
        height: 3px;
        border-bottom: 3px dotted #e62737;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        animation: dottedMove 1.2s infinite linear;
    }

    @keyframes dottedMove {
        from { background-position: 0; }
        to { background-position: 20px; }
    }

    /* TWO COLUMN LAYOUT */
    .row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        flex-wrap: wrap;
    }

    .col-text, .col-img {
        flex: 1 1 450px;
    }

    .col-img img {
        width: 100%;
        max-width: 520px;
        border-radius: 16px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        animation: floatImg 6s ease-in-out infinite;
    }

    @keyframes floatImg {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
        100% { transform: translateY(0px); }
    }

    .step-box {
        margin-bottom: 22px;
        padding: 18px 20px;
        border-left: 5px solid #e62737;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        opacity: 0;
        animation: fadeUp 1.2s forwards;
    }

    /* Step Animations */
    .step-box:nth-child(1) { animation-delay: .1s; }
    .step-box:nth-child(2) { animation-delay: .3s; }
    .step-box:nth-child(3) { animation-delay: .5s; }
    .step-box:nth-child(4) { animation-delay: .7s; }

    @keyframes fadeUp {
        from { transform: translateY(40px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    /* WHY CHOOSE US GRID */
    .why-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-top: 60px;
    }

    @media(max-width: 900px) {
        .why-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media(max-width: 600px) {
        .why-grid { grid-template-columns: 1fr; }
    }

    .why-card {
        background: #fff;
        padding: 28px 20px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.10);
        text-align: center;
        position: relative;
        overflow: hidden;
        opacity: 0;
        animation: fadeIn 1.5s forwards;
        transition: transform .3s ease;
    }

    .why-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.15);
    }

    .why-card:nth-child(1) { animation-delay: .2s; }
    .why-card:nth-child(2) { animation-delay: .4s; }
    .why-card:nth-child(3) { animation-delay: .6s; }
    .why-card:nth-child(4) { animation-delay: .8s; }
    .why-card:nth-child(5) { animation-delay: 1.0s; }
    .why-card:nth-child(6) { animation-delay: 1.2s; }

    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }

    /* ICON STYLE */
    .why-icon svg {
        width: 60px;
        height: 60px;
        fill: #e62737;
        margin-bottom: 15px;
        animation: iconFloat 3.5s infinite ease-in-out;
        transition: 0.3s;
    }

    .why-card:hover svg {
        transform: scale(1.15);
        filter: drop-shadow(0 0 12px rgba(230, 39, 55, 0.4));
    }

    @keyframes iconFloat {
        0% { transform: translateY(0); }
        50% { transform: translateY(-6px); }
        100% { transform: translateY(0); }
    }
	
	.section111 {
    padding:10px 6%;
}
.main-title {
    font-size:36px;
    color:#e62737;
    text-align:center;
    margin-bottom:50px;
    position:relative;
    display:inline-block;
}
.main-title::after {
    content:"";
    position:absolute;
    width:120px;
    height:3px;
    border-bottom:3px dotted #e62737;
    left:50%;
    transform:translateX(-50%);
    bottom:-6px;
    animation:dottedMove 1.2s infinite linear;
}
@keyframes dottedMove {0%{background-position:0;}100%{background-position:20px;}}

/* TWO COLUMN CURVED BOXES */
.row {
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}
.curved-box {
    flex:1 1 350px;
    background: #f9f9f9;
    border-radius: 30px 10px 30px 10px;
    padding:30px 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow:hidden;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 1s forwards;
}
.curved-box:nth-child(1){animation-delay:0.2s;}
.curved-box:nth-child(2){animation-delay:0.4s;}

@keyframes fadeUp{
    to{opacity:1; transform:translateY(0);}
}

/* VALUES GRID */
.values-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}
.value-card {
    background:#f9f9f9;
    padding:25px 20px;
    border-radius:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
    text-align:center;
    opacity:0;
    transform:translateY(20px);
    animation:fadeIn 1s forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}
.value-card:hover {transform:translateY(-8px); box-shadow:0 12px 28px rgba(0,0,0,0.15);}
.value-card:nth-child(1){animation-delay:.2s;}
.value-card:nth-child(2){animation-delay:.4s;}
.value-card:nth-child(3){animation-delay:.6s;}
.value-card:nth-child(4){animation-delay:.8s;}
.value-card:nth-child(5){animation-delay:1s;}

.value-card h3 {
    font-size:20px;
    color:#e62737;
    margin-bottom:12px;
}
.value-card p {
    font-size:16px;
    line-height:1.6;
}

@keyframes fadeIn{to{opacity:1; transform:translateY(0);}}

/* RESPONSIVE */
@media(max-width:900px){
    .row {flex-direction:column;}
    .curved-box{flex:1 1 100%;}
}


/* Shake animation */
.animated-shake {
    width:200px; /* adjust size */
    height:auto;
    animation:shakeEffect 0.5s infinite;
}

/* Keyframes for shaking */
@keyframes shakeEffect {
    0% { transform: translate(0px, 0px) rotate(0deg); }
    10% { transform: translate(-5px, 2px) rotate(-2deg); }
    20% { transform: translate(3px, -2px) rotate(2deg); }
    30% { transform: translate(-3px, 1px) rotate(-1deg); }
    40% { transform: translate(2px, -1px) rotate(1deg); }
    50% { transform: translate(-2px, 1px) rotate(-1deg); }
    60% { transform: translate(2px, -1px) rotate(1deg); }
    70% { transform: translate(-1px, 2px) rotate(-1deg); }
    80% { transform: translate(1px, -1px) rotate(1deg); }
    90% { transform: translate(-1px, 1px) rotate(-1deg); }
    100% { transform: translate(0px, 0px) rotate(0deg); }
}

/* Optional: Hover to intensify */
.animated-shake:hover {
    animation:shakeEffect 0.3s infinite;
}

.disclaimer-section {
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
}
.disclaimer-section h2 {
    font-size:28px;
    color:#e62737;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}
.disclaimer-section h2::after {
    content:"";
    position:absolute;
    width:80px;
    height:3px;
    border-bottom:3px dotted #e62737;
    bottom:-8px;
    left:0;
    animation:underlineAnim 1s infinite linear;
}
@keyframes underlineAnim {
    0%{background-position:0;}
    100%{background-position:20px;}
}
.disclaimer-card {
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 0.8s forwards;
}
.disclaimer-card svg {
    width:40px;
    height:40px;
    fill:#e62737;
    flex-shrink:0;
}
.disclaimer-card-content {
    flex:1;
}
.disclaimer-card-content p, .disclaimer-card-content ul {
    margin:8px 0 0 0;
}
.disclaimer-card-content ul li {
    margin-bottom:5px;
}
@keyframes fadeUp {
    to {opacity:1; transform:translateY(0);}
}
.disclaimer-card:nth-child(1){animation-delay:0.1s;}
.disclaimer-card:nth-child(2){animation-delay:0.2s;}
.disclaimer-card:nth-child(3){animation-delay:0.3s;}
.disclaimer-card:nth-child(4){animation-delay:0.4s;}
.disclaimer-card:nth-child(5){animation-delay:0.5s;}
.disclaimer-card:nth-child(6){animation-delay:0.6s;}
.disclaimer-card:nth-child(7){animation-delay:0.7s;}
.disclaimer-card:nth-child(8){animation-delay:0.8s;}
.disclaimer-card:nth-child(9){animation-delay:0.9s;}
.disclaimer-card:nth-child(10){animation-delay:1s;}
.disclaimer-card:nth-child(11){animation-delay:1.1s;}
.disclaimer-card:nth-child(12){animation-delay:1.2s;}
.disclaimer-card:nth-child(13){animation-delay:1.3s;}
@media(max-width:768px){
    .disclaimer-card {flex-direction:column; align-items:flex-start;}
}



a {color:#e62737; text-decoration:none;}
a:hover {text-decoration:underline;}

.terms-section {
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
}
.terms-section h2 {
    font-size:28px;
    color:#e62737;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}
.terms-section h2::after {
    content:"";
    position:absolute;
    width:80px;
    height:3px;
    border-bottom:3px dotted #e62737;
    bottom:-8px;
    left:0;
    animation:underlineAnim 1s infinite linear;
}
@keyframes underlineAnim {
    0%{background-position:0;}
    100%{background-position:20px;}
}
.terms-card {
    margin-bottom:30px;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 0.8s forwards;
}
.terms-card-content p, 
.terms-card-content ul {
    margin:8px 0;
}
.terms-card-content ul {
    list-style:none;
    padding-left:0;
}
.terms-card-content ul li {
    margin-bottom:8px;
}
.terms-card-content ul li::before {
    content: '';
    display: inline-block;
    width:16px;
    height:16px;
    margin-right:8px;
    vertical-align:middle;
    background: url('data:image/svg+xml;utf8,<svg fill="%23e62737" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12"/></svg>') no-repeat center;
}
@keyframes fadeUp {
    to {opacity:1; transform:translateY(0);}
}
/* staggered animation */
.terms-card:nth-child(1){animation-delay:0.1s;}
.terms-card:nth-child(2){animation-delay:0.2s;}
.terms-card:nth-child(3){animation-delay:0.3s;}
.terms-card:nth-child(4){animation-delay:0.4s;}
.terms-card:nth-child(5){animation-delay:0.5s;}
.terms-card:nth-child(6){animation-delay:0.6s;}
.terms-card:nth-child(7){animation-delay:0.7s;}
.terms-card:nth-child(8){animation-delay:0.8s;}
.terms-card:nth-child(9){animation-delay:0.9s;}
.terms-card:nth-child(10){animation-delay:1s;}
.terms-card:nth-child(11){animation-delay:1.1s;}
.terms-card:nth-child(12){animation-delay:1.2s;}
.terms-card:nth-child(13){animation-delay:1.3s;}
.terms-card:nth-child(14){animation-delay:1.4s;}
.terms-card:nth-child(15){animation-delay:1.5s;}
.terms-card:nth-child(16){animation-delay:1.6s;}
@media(max-width:768px){
    .terms-card {flex-direction:column;}
}

.privacy-section {
    max-width:1200px;
    margin:50px auto;
    padding:0 20px;
}
.privacy-section h2 {
    font-size:28px;
    color:#e62737;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}
.privacy-section h2::after {
    content:"";
    position:absolute;
    width:80px;
    height:3px;
    border-bottom:3px dotted #e62737;
    bottom:-8px;
    left:0;
    animation:underlineAnim 1s infinite linear;
}
@keyframes underlineAnim {
    0%{background-position:0;}
    100%{background-position:20px;}
}
.privacy-card {
    margin-bottom:30px;
    opacity:0;
    transform:translateY(20px);
    animation:fadeUp 0.8s forwards;
}
.privacy-card-content p, 
.privacy-card-content ul {
    margin:8px 0;
}
.privacy-card-content ul {
    list-style:none;
    padding-left:0;
}
.privacy-card-content ul li {
    margin-bottom:8px;
}
.privacy-card-content ul li::before {
    content: '';
    display: inline-block;
    width:16px;
    height:16px;
    margin-right:8px;
    vertical-align:middle;
    background: url('data:image/svg+xml;utf8,<svg fill="%23e62737" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="12"/></svg>') no-repeat center;
}
@keyframes fadeUp {
    to {opacity:1; transform:translateY(0);}
}
/* staggered animation */
.privacy-card:nth-child(1){animation-delay:0.1s;}
.privacy-card:nth-child(2){animation-delay:0.2s;}
.privacy-card:nth-child(3){animation-delay:0.3s;}
.privacy-card:nth-child(4){animation-delay:0.4s;}
.privacy-card:nth-child(5){animation-delay:0.5s;}
.privacy-card:nth-child(6){animation-delay:0.6s;}
.privacy-card:nth-child(7){animation-delay:0.7s;}
.privacy-card:nth-child(8){animation-delay:0.8s;}
.privacy-card:nth-child(9){animation-delay:0.9s;}
.privacy-card:nth-child(10){animation-delay:1s;}
.privacy-card:nth-child(11){animation-delay:1.1s;}
.privacy-card:nth-child(12){animation-delay:1.2s;}
.privacy-card:nth-child(13){animation-delay:1.3s;}
@media(max-width:768px){
    .privacy-card {flex-direction:column;}
}


  
  
  
.hero-section{
    position:relative;
    height: 60vh;
    padding-top:6rem;
    text-align:center;
    overflow:hidden;
    background:linear-gradient(120deg, #ff004f, #e62737, #ff6f61, #ff004f);
    background-size:300% 300%;
    animation:heroBg 10s infinite alternate ease-in-out;
}

/* Animated gradient */
@keyframes heroBg {
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

/* Light Rays */
.light-rays{
    position:absolute;
    top:-50%;
    left:0;
    width:200%;
    height:200%;
    background:radial-gradient(
        circle,
        rgba(255,255,255,0.15) 0%,
        rgba(255,255,255,0) 60%
    );
    animation:spinRays 18s linear infinite;
    transform-origin:center;
}
@keyframes spinRays {
    100%{transform:rotate(360deg);}
}

/* 3D Rising Bubbles */
.bubbleX{
    position:absolute;
    bottom:-150px;
    width:80px;
    height:80px;
    background:rgba(255,255,255,0.2);
    border-radius:50%;
    animation:rise 10s infinite ease-in-out;
}
@keyframes rise{
    0%{transform:translateY(0) scale(1); opacity:0.25;}
    50%{transform:translateY(-300px) scale(1.3); opacity:0.35;}
    100%{transform:translateY(-600px) scale(1); opacity:0.20;}
}

/* Floating Icons */
.float-icon{
    position:absolute;
    width:65px;
    animation:floatIcon 6s infinite ease-in-out;
    opacity:0.9;
}
@keyframes floatIcon{
    0%,100%{transform:translateY(0) rotate(0deg);}
    50%{transform:translateY(-20px) rotate(8deg);}
}

/* Glass Box */
.hero-glass{
    backdrop-filter:blur(10px);
    background:rgba(255,255,255,0.10);
    padding:2.5rem 2rem;
    width:85%;
    max-width:900px;
    margin:auto;
    border-radius:20px;
    border:1px solid rgba(255,255,255,0.25);
    box-shadow:0 0 35px rgba(255,255,255,0.25);
    animation:fadeInUp 1.3s ease;
}

/* Typing Animation */
.typing-text{
    font-size:30px;
    font-weight:700;
    color:#fff;
    text-shadow:0 0 25px rgba(255,255,255,0.6);
    white-space:nowrap;
    overflow:hidden;
    border-right:4px solid #fff;
    width:0;
    animation:typing 5s steps(40) forwards, blink 0.8s infinite;
}

@keyframes typing {
    0%{width:0;}
    100%{width:100%;}
}
@keyframes blink {
    50%{border-color:transparent;}
}

/* Subheading */
.hero-sub{
    margin-top:1rem;
    font-size:1.2rem;
    color:#fff;
    opacity:0;
    animation:fadeIn 3s ease 1.5s forwards;
}

@keyframes fadeIn {
    100%{opacity:1;}
}

/* CTA Button */
.cta-btn{
    margin-top:1.4rem;
    display:inline-block;
    padding:0.8rem 1.8rem;
    background:#fff;
    color:#e62737;
    border-radius:40px;
    font-weight:700;
    font-size:1.1rem;
    transition:0.3s ease;
    box-shadow:0 0 15px rgba(255,255,255,0.6);
}
.cta-btn:hover{
    background:#e62737;
    color:#fff;
    box-shadow:0 0 25px rgba(255,255,255,0.9);
    transform:translateY(-3px);
}

/* ================== Body ================== */
.body-blobs {
 
  background: #ffffff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  position: relative;
}

/* ================== Animated Background Blobs ================== */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(200, 200, 200, 0.2); /* light grey 20% opacity */
  animation: blobMove 30s ease-in-out infinite alternate;
}

.bg-blob:nth-child(1) {
  width: 400px; height: 400px;
  top: -100px; left: -150px;
  animation-duration: 40s;
}
.bg-blob:nth-child(2) {
  width: 500px; height: 500px;
  top: 300px; left: 60%;
  animation-duration: 50s;
}
.bg-blob:nth-child(3) {
  width: 350px; height: 350px;
  top: 600px; left: 20%;
  animation-duration: 45s;
}

@keyframes blobMove {
  0% { transform: translate(0,0) scale(1); }
  50% { transform: translate(50px,-30px) scale(1.05); }
  100% { transform: translate(-50px,20px) scale(1); }
}

/* ================== Section ================== */
.section-blobs {
  position: relative;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
  z-index: 1;
}

.section-blobs h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #333;
}

/* ================== Cards ================== */
.cards-blobs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card-blobs {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  width: 300px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  animation: fadeInUpBlobs 1s forwards;
}

.card-blobs:nth-child(1) { animation-delay: 0.2s; }
.card-blobs:nth-child(2) { animation-delay: 0.4s; }
.card-blobs:nth-child(3) { animation-delay: 0.6s; }
.card-blobs:nth-child(4) { animation-delay: 0.8s; }
.card-blobs:nth-child(5) { animation-delay: 1s; }
.card-blobs:nth-child(6) { animation-delay: 1.2s; }

.card-blobs:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.card-blobs i {
  font-size: 40px;
  color: #e62737;
  margin-bottom: 15px;
}

.card-blobs h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.card-blobs p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

@keyframes fadeInUpBlobs {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ================== Responsive ================== */
@media(max-width: 992px){
  .cards-blobs {
    flex-direction: column;
    align-items: center;
  }
}


/* ================== Background Bubbles ================== */
.bg-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,200,200,0.1); /* very light grey */
  animation: bubbleShake linear infinite;
}

.bg-bubble:nth-child(1) { width: 400px; height: 400px; top: -50px; left: -100px; animation-duration: 20s; }
.bg-bubble:nth-child(2) { width: 500px; height: 500px; top: 100px; left: 60%; animation-duration: 25s; }
.bg-bubble:nth-child(3) { width: 350px; height: 350px; top: 400px; left: 20%; animation-duration: 30s; }

@keyframes bubbleShake {
  0% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(20px, -10px) rotate(5deg); }
  50% { transform: translate(-15px, 15px) rotate(-5deg); }
  75% { transform: translate(10px, -5px) rotate(3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* ================== Section Header ================== */
.section-slider {
  max-width: 1300px;
  margin: 0 auto 40px auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.section-slider h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #333;
}

/* ================== Slider ================== */
.slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 1;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px; /* gap between cards */
}

/* ================== Cards ================== */
.slider-card {
  background: #fff;
  flex: 0 0 300px;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.slider-card i {
  font-size: 60px; /* big icon */
  color: #e62737;
  margin-bottom: 20px;
}

.slider-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.slider-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  flex-grow: 1;
}

/* ================== Arrows ================== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #e62737;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  z-index: 2;
}

.slider-btn.prev {
  left: 10px;
}

.slider-btn.next {
  right: 10px;
}

.slider-btn:hover {
  background: #c0212e;
}

/* ================== Responsive ================== */
@media(max-width: 992px){
  .slider-card { flex: 0 0 250px; }
}

@media(max-width: 600px){
  .slider-card { flex: 0 0 200px; padding: 20px; }
}

/* ================= Background Bubbles ================= */
.bg-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,200,200,0.1);
  animation: bubbleShake linear infinite;
  z-index: 0;
}

.bg-bubble:nth-child(1) { width: 400px; height: 400px; top: -50px; left: -100px; animation-duration: 25s; }
.bg-bubble:nth-child(2) { width: 500px; height: 500px; top: 200px; left: 60%; animation-duration: 30s; }
.bg-bubble:nth-child(3) { width: 350px; height: 350px; top: 500px; left: 20%; animation-duration: 35s; }

@keyframes bubbleShake {
  0% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(20px, -10px) rotate(5deg); }
  50% { transform: translate(-15px, 15px) rotate(-5deg); }
  75% { transform: translate(10px, -5px) rotate(3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* ================= Section Headers ================= */
.section-header {
  text-align: center;
  margin: 10px 20px 30px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 36px;
  color: #333;
}

.section-header p {
  font-size: 18px;
  color: #666;
  margin-top: 10px;
}

/* ================= Subjects Cards ================= */
.subjects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 1;
}

.subject-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 30px;
  width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.subject-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 30px rgba(0,0,0,0.2);
}

.subject-card i {
  font-size: 50px;
  color: #e62737;
  margin-bottom: 20px;
}

.subject-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

/* ================= Process Steps ================= */
.process-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 100px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.process-step i {
  font-size: 40px;
  color: #e62737;
  flex-shrink: 0;
}

.process-step div {
  flex: 1;
}

.process-step div h4 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.process-step div p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* ================= Animations ================= */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

.subject-card, .process-step {
  animation: fadeInUp 1s ease forwards;
}

/* ================= Responsive ================= */
@media(max-width: 768px){
  .subjects-container {
    flex-direction: column;
    align-items: center;
  }
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  .process-step i {
    margin-bottom: 10px;
  }
}

/* ================= Background Bubbles ================= */
.tm-bg-bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,200,200,0.1);
  animation: tm-bubbleMove linear infinite;
  z-index: 0;
}

.tm-bg-bubble:nth-child(1) { width: 400px; height: 400px; top: -50px; left: -100px; animation-duration: 25s; }
.tm-bg-bubble:nth-child(2) { width: 500px; height: 500px; top: 200px; left: 60%; animation-duration: 30s; }
.tm-bg-bubble:nth-child(3) { width: 350px; height: 350px; top: 500px; left: 20%; animation-duration: 35s; }

@keyframes tm-bubbleMove {
  0% { transform: translate(0,0) rotate(0deg); }
  25% { transform: translate(20px, -10px) rotate(5deg); }
  50% { transform: translate(-15px, 15px) rotate(-5deg); }
  75% { transform: translate(10px, -5px) rotate(3deg); }
  100% { transform: translate(0,0) rotate(0deg); }
}

/* ================= Section Header ================= */
.tm-section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.tm-section-header h2 {
  font-size: 36px;
  color: #333;
}

/* ================= Two Column Row ================= */
.tm-row {
  display: flex;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 100px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.tm-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================= Boxes ================= */
.tm-box {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: tm-fadeInUp 1s ease forwards;
}

.tm-box:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

/* ================= Left Column List with Icons ================= */
.tm-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 10px 0;
}

.tm-box ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #666;
  font-size: 16px;
}

.tm-box ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: #e62737;
  font-size: 18px;
}

/* Paragraph */
.tm-box p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ================= Animation ================= */
@keyframes tm-fadeInUp {
  0% { opacity: 0; transform: translateY(20px);}
  100% { opacity: 1; transform: translateY(0);}
}

/* ================= Responsive ================= */
@media(max-width: 992px){
  .tm-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
  }
  .tm-column {
    min-width: 100%;
    gap: 15px;
  }
  .tm-box {
    padding: 20px;
    box-shadow: 0 8px 15px rgba(0,0,0,0.08);
  }
  .tm-box:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 15px 20px rgba(0,0,0,0.12);
  }
  .tm-box ul li {
    font-size: 15px;
    padding-left: 25px;
  }
  .tm-box ul li::before {
    font-size: 16px;
  }
  .tm-box p {
    font-size: 15px;
  }
}

/* Extra small screens (mobile) */
@media(max-width: 600px){
  .tm-row {
    margin-bottom: 40px;
    gap: 15px;
	width:95%;
  }
  .tm-box {
    padding: 15px;
	width:95%;
  }
  .tm-box p,
  .tm-box ul li {
    font-size: 14px;
  }
  .tm-box ul li::before {
    font-size: 14px;
    left: -2px;
    top: 2px;
  }
}



/* Accordion Container */
.accordion-container {
  max-width: 900px;
  margin: 20px auto;
  padding: 0 15px;
}

/* Accordion Item */
.accordion-item {
  background: #fff;
  margin-bottom: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s;
}

.accordion-item:hover {
  transform: translateY(-2px);
}

/* Accordion Header */
.accordion-header {
  padding: 18px 20px;
  cursor: pointer;
 
  font-size: 18px;
  font-weight: bold;
  color: #e62737;
  display: flex;
  justify-content: space-between;
  text-align:left;
 
  transition: background 0.3s;
}

.accordion-header:hover {
  background: rgba(230, 39, 55, 0.1);
}

.accordion-header .arrow {
  transition: transform 0.3s;
}

.accordion-header.active .arrow {
  transform: rotate(180deg);
}

/* Accordion Content */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #fff;
}

.accordion-content p,
.accordion-content ul {
  margin: 10px 0;
  line-height: 1.6;
}

.accordion-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.accordion-content li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 600px) {
  .accordion-header {
    font-size: 16px;
  }
  .accordion-content {
    padding: 8px 15px;
  }
}
 
  
  
  
  
  
  
  
  
  
  
    .containerr {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
  }

  h1 {
    text-align: center;
    color: #e62737;
    margin-bottom: 30px;
  }

  .roadmap {
    position: relative;
    margin-left: 40px;
    padding-left: 20px;
    border-left: 4px solid #e62737;
  }

  .roadmap-step {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    align-items: flex-start;
  }

  .roadmap-step:last-child {
    margin-bottom: 0;
  }

  .roadmap-step-icon {
    position: absolute;
    left: -42px;
    background: #e62737;
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .roadmap-step-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .roadmap-step-content:hover {
    transform: translateY(-3px);
  }

  .roadmap-step-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #e62737;
  }

  .roadmap-step-content p {
    margin: 5px 0;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
    .roadmap {
      margin-left: 20px;
      padding-left: 10px;
      border-left: 3px solid #e62737;
    }

    .roadmap-step-icon {
      left: -35px;
      width: 35px;
      height: 35px;
      line-height: 35px;
      font-size: 18px;
    }
  }
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  .mv-section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease;
}

.mv-section h2 {
  text-align: center;
  color: #e62737;
  font-size: 32px;
  margin-bottom: 20px;
}

.mv-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
  text-align: center;
}

/* BULLET LIST */
.mv-list {
  margin: 20px auto 40px auto;
  max-width: 700px;
  padding-left: 0;
  list-style: none;
}

.mv-list li {
  position: relative;
  background: #f7f7f7;
  margin: 12px 0;
  padding: 12px 15px 12px 45px;
  border-radius: 8px;
  font-size: 16px;
  color: #444;
  transition: transform .3s, box-shadow .3s;
}

.mv-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mv-list li:before {
  content: "✔";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #e62737;
  font-size: 18px;
  font-weight: bold;
}

/* PROMISE BOX */
.promise-box {
  background: linear-gradient(135deg, #ffffff, #fbe9e9);
  border-left: 6px solid #e62737;
  padding: 30px 20px;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  animation: slideUp 0.8s ease;
}

.promise-box h3 {
  color: #e62737;
  font-size: 26px;
  margin-bottom: 15px;
  text-align: center;
}

.promise-box p {
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 18px;
  text-align: justify;
}

/* ANIMATIONS */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideUp {
  from {opacity: 0; transform: translateY(40px);}
  to {opacity: 1; transform: translateY(0);}
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .mv-section h2 {font-size: 26px;}
  .promise-box h3 {font-size: 22px;}
  .mv-list li {font-size: 15px;}
}
  
  .process-section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.process-section h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.process-intro {
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  color: #555;
}

.timeline {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #007bff;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: 10px;
}

.container33 {
  padding: 20px 40px;
  position: relative;
  width: 50%;
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.left { left: 0; }
.right { left: 50%; }

.container33::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: #fff;
  border: 4px solid #007bff;
  top: 30px;
  border-radius: 50%;
  z-index: 1;
}

.right::after {
  left: -13px;
}

.content33 {
  padding: 25px;
  background: #fff;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.content i {
  font-size: 35px;
  color: #007bff;
  margin-bottom: 15px;
}

.content h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

@keyframes fadeIn {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after { left: 30px; }

  .container33 {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .container33::after {
    left: 15px;
  }

  .right { left: 0; }
}









/* -------------------- ANIMATED BUBBLES -------------------- */
.tech-bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 0;
}

.tech-bubbles span {
  position: absolute;
  display: block;
  width: 30px; 
  height: 30px;
  background: linear-gradient(45deg, #e62737, #ff9aa2);
  border-radius: 50%;
  animation: tech-bubble 12s linear infinite;
  bottom: -150px;
  opacity: 0.6;
}

/* Different sizes and speeds for variety */
.tech-bubbles span:nth-child(1) { left: 10%; width: 60px; height:60px; animation-duration: 15s;}
.tech-bubbles span:nth-child(2) { left: 20%; width: 40px; height:40px; animation-duration: 12s; animation-delay:2s;}
.tech-bubbles span:nth-child(3) { left: 35%; width: 50px; height:50px; animation-duration: 14s; animation-delay:4s;}
.tech-bubbles span:nth-child(4) { left: 50%; width: 70px; height:70px; animation-duration: 16s; animation-delay:1s;}
.tech-bubbles span:nth-child(5) { left: 65%; width: 45px; height:45px; animation-duration: 13s; animation-delay:3s;}
.tech-bubbles span:nth-child(6) { left: 80%; width: 55px; height:55px; animation-duration: 17s; animation-delay:5s;}
.tech-bubbles span:nth-child(7) { left: 90%; width: 35px; height:35px; animation-duration: 12s; animation-delay:2s;}

@keyframes tech-bubble {
  0% { transform: translateY(0) translateX(0) scale(1);}
  25% { transform: translateY(-300px) translateX(20px) scale(1.1);}
  50% { transform: translateY(-600px) translateX(-20px) scale(1.2);}
  75% { transform: translateY(-900px) translateX(15px) scale(1.1);}
  100% { transform: translateY(-1200px) translateX(0) scale(0);}
}

/* -------------------- SECTION -------------------- */
.tech-process-section {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: left;
}

.tech-process-section h2 {
  font-size: 32px;
  color: #e62737;
  text-align: center;
  margin-bottom: 15px;
}

.tech-process-section p.tech-intro {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

/* -------------------- ROADMAP -------------------- */
.tech-roadmap {
  position: relative;
  margin-left: 40px;
  padding-left: 40px;
  border-left: 4px solid #e62737;
}

.tech-step {
  position: relative;
  margin-bottom: 40px;
}

.tech-step .tech-circle {
  position: absolute;
  left: -60px;
  top: 0;
  width: 50px;
  height: 50px;
  background: #fff;
  border: 4px solid #e62737;
  border-radius: 50%;
  color: #e62737;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.tech-step-content {
  background: #fff0f1;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}

.tech-step-content h3 {
  margin: 0 0 8px 0;
  color: #e62737;
}

.tech-step-content p {
  margin: 0;
  line-height: 1.5;
  color: #333;
  font-size: 14.5px;
}

/* -------------------- AOS ANIMATION -------------------- */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* -------------------- RESPONSIVE -------------------- */
@media screen and (max-width: 768px) {
  .tech-roadmap {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 3px solid #e62737;
  }

  .tech-step .tech-circle {
    left: -40px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.tech-ind-header h2 {
  text-align: center;
  color: #e62737;
  font-size: 32px;
}

.tech-ind-header p {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

.tech-ind-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.tech-ind-card {
  background: #fff;
  padding: 25px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}

.tech-ind-card i {
  font-size: 36px;
  margin-bottom: 10px;
  color: #e62737;
}

.tech-ind-card h3 {
  font-size: 18px;
  color: #444;
  margin: 0;
}

.tech-ind-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}
}

    .tm-header-area-new {
        background: var(--tm-main);
        padding: 30px;
        text-align: center;
        color: #fff;
    }

    .tm-header-title-new {
        font-size: 2.3rem;
        margin: 0;
        font-weight: bold;
    }

    /* ----- GRID WRAPPER ----- */
    .tm-grid-wrapper {
        max-width: 1300px;
        margin: 40px auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 25px;
        padding: 0 20px;
    }

    /* ----- ANIMATED BOX ----- */
    .tm-box {
        background: #fff;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0px 4px 12px var(--tm-box-shadow);
        transition: all 0.35s ease;
        position: relative;
        overflow: hidden;
    }

    .tm-box:hover {
        transform: translateY(-10px);
        box-shadow: 0px 8px 22px rgba(0,0,0,0.25);
    }

    .tm-box:before {
        content: "";
        position: absolute;
        top: -150px;
        left: -150px;
        width: 300px;
        height: 300px;
        background: var(--tm-main);
        border-radius: 50%;
        opacity: 0.08;
        transition: all 0.4s ease;
    }

    .tm-box:hover:before {
        top: -100px;
        left: -100px;
        opacity: 0.16;
    }

    .tm-title-new {
        font-size: 1.8rem;
        margin-bottom: 15px;
        font-weight: 700;
        color: var(--tm-main);
        border-left: 5px solid var(--tm-main);
        padding-left: 10px;
    }

    .tm-tag-new {
        color: var(--tm-main);
        font-weight: bold;
    }

    .tm-list-new {
        margin-left: 20px;
        line-height: 1.7;
    }

    .tm-footer-area-new {
        background: var(--tm-dark);
        color: #fff;
        text-align: center;
        padding: 25px;
        margin-top: 40px;
    }
  :root {
        --tm-main: #e62737;
        --tm-bg: #f5f5f5;
        --tm-dark: #242424;
        --tm-font: #333;
        --tm-box-shadow: rgba(0,0,0,0.15);
    }
	
	
	.section-digital-marketing {
  padding: 60px 20px;
  background: #f8f9fa;
}
.dm-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}
.dm-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.dm-card i {
  font-size: 40px;
  color: #e52636;
  margin-bottom: 15px;
}
.dm-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.dm-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}
.dm-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Load FontAwesome CSS if not already loaded */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Remove default list style */
.service-card ul {
  list-style: none;
  padding-left: 1.4em; /* spacing for icon */
}

.service-card ul li {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1.8em; /* space for icon */
  font-weight: 500;
  color: #333;
}

/* Icon before each li */
.service-card ul li::before {
  content: "\f00c"; /* FontAwesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2em;
  color: #e52636;
  font-size: 1em;

  /* Animation: pulse */
  animation: pulseIcon 2s infinite;
}

/* Pulse animation */
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}
.logo-services-grid {
  padding: 60px 20px;
}

.logo-services-grid h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.grid-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* GRID SYSTEM */
.grid-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARDS */
.grid-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  border-top: 5px solid #e62737;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s ease;
  animation: zoomIn 0.8s ease;
}

/* ZOOM HOVER */
.grid-card:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 22px rgba(0,0,0,0.2);
}

/* ICONS */
.grid-icon {
  font-size: 48px;
  color: #e62737;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

/* ICON ANIMATION */
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* FADE/ZOOM FOR SECOND ROW */
.animation-delayed {
  animation: floatUp 1.2s ease forwards;
}

@keyframes floatUp {
  from { transform: translateY(25px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-container {
    grid-template-columns: repeat(1, 1fr);
  }
}


/* ============================ */
@media (max-width: 1024px) {
    .animated-underline.section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .animated-underline.section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .animated-underline.section-title {
        font-size: 1.5rem;
    }
}

/* ============================ */
/* TECH Madhav Section Styling  */
/* ============================ */
.tech-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.tech-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

/* Left Column: Image */
.tech-col.tech-image {
    flex: 1 1 45%;
    text-align: center;
}

.tech-col.tech-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    
}

/* Right Column: Content Box */
.tech-col.tech-content {
    flex: 1 1 50%;
}

.tech-box {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.tech-box h2 {
    font-size: 2rem;
    color: #222;
    margin-bottom: 20px;
}

.tech-box p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ============================ */
/* Image Float Animation        */
/* ============================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ============================ */
/* Responsive Breakpoints       */
/* ============================ */
@media (max-width: 1024px) {
    .tech-row {
        gap: 30px;
    }
    .tech-col.tech-content, 
    .tech-col.tech-image {
        flex: 1 1 100%;
    }
    .tech-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .tech-box {
        padding: 25px 20px;
    }
    .tech-box h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .tech-box {
        padding: 20px 15px;
    }
    .tech-box h2 {
        font-size: 1.4rem;
    }
    .tech-box p {
        font-size: 0.95rem;
    }
}
/* ============================ */
/* SEO Section Styling           */
/* ============================ */
.seo-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.seo-section-title {
    font-size: 2.8rem;
    text-align: center;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    position: relative;
}

.seo-intro {
    font-size: 1.1rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #555;
}

/* ============================ */
/* SEO Cards Layout             */
/* ============================ */
.seo-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.seo-card {
    flex: 1 1 48%;
    background: linear-gradient(145deg, #fff, #f7f7f7);
    border-radius: 20px 20px 5px 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    text-align: left;
}

.seo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ============================ */
/* SEO Icon on Top               */
/* ============================ */
.seo-icon {
    margin-bottom: 20px;
}

.seo-icon img {
    width: 300px;
    height: 300px;
    animation: float 3s ease-in-out infinite;
}

/* ============================ */
/* Content inside card           */
/* ============================ */
.seo-content h3 {
    font-size: 1.6rem;
    color: #222;
    margin-bottom: 15px;
}

.seo-content p, .seo-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.seo-content ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

.seo-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.seo-content ul li::before {
    content: "✔"; /* custom bullet icon */
    position: absolute;
    left: 0;
    color: #ff4a57; /* accent color */
    font-weight: bold;
    animation: pulse 1.5s infinite;
}

/* ============================ */
/* Animations                    */
/* ============================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}

/* ============================ */
/* Responsive Breakpoints       */
/* ============================ */
@media (max-width: 1024px) {
    .seo-card {
        flex: 1 1 100%;
    }
    .seo-section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .seo-card {
        padding: 25px 20px;
    }
    .seo-icon img {
        width: 70px;
        height: 70px;
    }
    .seo-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .seo-card {
        padding: 20px 15px;
    }
    .seo-icon img {
        width: 60px;
        height: 60px;
    }
    .seo-section-title {
        font-size: 1.8rem;
    }
    .seo-content h3 {
        font-size: 1.4rem;
    }
    .seo-content p, .seo-content ul li {
        font-size: 0.95rem;
    }
}
@media (max-width: 768px) {
    .seo-icon img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .seo-icon img {
        width: 60px;
        height: 60px;
    }
}

/* Wave animation for h4 text */
h4 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #ff4a57 20%, #ffb347 50%, #ff4a57 80%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: wave-text 2s linear infinite;
}

@keyframes wave-text {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}


.mage {
    animation: energy-pulse 1s infinite ease-in-out;
	width:280px
}

@keyframes energy-pulse {
    0% {
        transform: scale(1) translate(0,0);
        filter: drop-shadow(0 0 0px #fee1e4);
    }
    30% {
        transform: scale(1.05) translate(-2px,2px);
        filter: drop-shadow(0 0 8px #fee1e4);
    }
    60% {
        transform: scale(0.98) translate(2px,-2px);
        filter: drop-shadow(0 0 4px #fee1e4);
    }
    100% {
        transform: scale(1) translate(0,0);
        filter: drop-shadow(0 0 0px #fee1e4);
    }
}

.mage2 {
    animation: energy-pulse 1s infinite ease-in-out;
}

@keyframes energy-pulse {
    0% {
        transform: scale(1) translate(0,0);
        filter: drop-shadow(0 0 0px #6ae4ff);
    }
    30% {
        transform: scale(1.05) translate(-2px,2px);
        filter: drop-shadow(0 0 8px #6ae4ff);
    }
    60% {
        transform: scale(0.98) translate(2px,-2px);
        filter: drop-shadow(0 0 4px #6ae4ff);
    }
    100% {
        transform: scale(1) translate(0,0);
        filter: drop-shadow(0 0 0px #6ae4ff);
    }
}



/* Shaking box effect */
.shake-box {
  width: 90%;
  max-width: 700px;
  margin: 40px auto;
  padding: 25px;
  background: #ffffff;
  border: 2px solid #e62737;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
  animation: shake 2s infinite ease-in-out;
  position: relative;
}

/* Title */
.shake-title {
  text-align: center;
  color: #e62737;
  margin-bottom: 20px;
  font-size: 26px;
}

/* List styling */
.shake-list {
  list-style: none;
  padding: 0;
  text-align:left
}
.style1
{
font-size:13px;
text-align:left;
}

.shake-list li {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  animation: fadeInUp 0.9s ease both;
}

/* Bullet icon */
.shake-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 18px;
  color: #e62737;
  font-weight: bold;
}

/* Shaking keyframes */
@keyframes shake {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3px, 2px); }
  40% { transform: translate(3px, -2px); }
  60% { transform: translate(-3px, -3px); }
  80% { transform: translate(3px, 2px); }
}

/* Fade-in list animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-list {
  list-style: none;
  padding-left: 0;
  font-size:13px;
  text-align:left
}

.faq-list li {
  margin-bottom: 8px;
  padding-left: 25px;
  position: relative;
  font-size: 16px;
}

.faq-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e62737;
  font-weight: bold;
}
.custom-footer {
  position: relative;
  background-color: #000;
  color: white;
  padding: 80px 20px 15px; /* increased top padding to give space for wave */
  overflow: hidden;
  font-family: Arial, sans-serif;
  min-height: 70px;
  box-sizing: border-box;
}

/* Wave container is absolute, inside footer */
.wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}

.wave-svg {
  width: 200%;
  height: 100%;
  display: block;
}

.footer-content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 20;
}

.footer-left {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-right ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-right ul li {
  margin-left: 20px;
}

.footer-right ul li:first-child {
  margin-left: 0;
}

.footer-right ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right ul li a:hover {
  color: #b7001c;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-right ul {
    justify-content: center;
    margin-top: 10px;
  }
  .footer-right ul li {
    margin: 0 10px;
  }
}


.floating-shadow-img {
  display: inline-block;
  border-radius: 10px;
  animation: floatShadow 4s ease-in-out infinite;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.3s ease;
}

@keyframes floatShadow {
  0% {
    transform: translateY(0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
  25% {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
  }
  50% {
    transform: translateY(-15px);
    box-shadow: 0 16px 25px rgba(0, 0, 0, 0.4);
  }
  75% {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.35);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
  }
}
/* Common Button Style */
.footer-btn {
    position: fixed;
    bottom: 20px;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    z-index: 9999;
}

/* Call Button (Left Footer) */
.call-btn {
    left: 20px;
    background: linear-gradient(135deg, #007bff, #00c6ff);
}

/* WhatsApp Button (Right Footer) */
.whatsapp-btn {
    right: 20px;
    background: linear-gradient(135deg, #25D366, #1ebc59);
}

/* Icon Size */
.footer-btn i {
    font-size: 18px;
}

/* Hover Effect */
.footer-btn:hover {
    transform: scale(1.06);
    opacity: 0.95;
}

/* Mobile Optimization */
@media (max-width: 480px) {
    .footer-btn {
        font-size: 14px;
        padding: 10px 18px;
    }
}