html {
  font-size: 100%;
}

body {
  overflow-x: hidden;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #1E293B;
    overflow-x: hidden;
}


/* ================= HAMBURGER ICON ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1E293B;
  margin: 5px 0;
  transition: 0.3s;
}



/*===================Background Video(Shivani Part-1)===================*/
/* Video background */
.hero {
    position: relative;
    height: 100vh;      /* header height */
    overflow: hidden;
}

/* Video container */
.video-container {
    position: absolute;   
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}



/* Dark overlay for brightness control */
.video-container::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(0,0,0,0.5),
        rgba(0,0,0,0.5)
    ); /* opacity control */
}

/* Video itself */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video itself */
.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Content */
/* HERO CONTENT */
.content {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 120px;
    color: #ffffff;
    max-width: 900px;
}

/* Welcome text */
.content h4 {
    font-family: 'Segoe UI', sans-serif;
    font-size: 2.4rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Main heading */
.content h1 {
    font-family: 'Segoe UI', sans-serif;
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 500;
    line-height: 1.25;          /* 🔥 KEY FIX */
    letter-spacing: -0.5px;     /* 🔥 premium look */
    margin-bottom: 28px;
}

/* Button spacing */
.btn-box {
    margin: 18px 0 22px;
}

/* Button */
button {
    background: linear-gradient(135deg, #0d6efd, #084298);
    border: none;
    padding: 14px 36px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, 0.45);
}

/* Tagline */
.content p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 520px;
   
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}


/*=====================Slider(Shivani Part-2)=====================*/

.services-slider {
    max-width: 1200px;
    margin: 60px auto;
    background: #fff;
    padding: 40px 20px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.service-box {
    width: 30%;
    padding: 20px;
}

.service-box img {
    width: 70px;
    margin-bottom: 15px;
}

.service-box h3 {
    color: #086ad8;
    margin-bottom: 10px;
}

.service-box p {
    color: #666;
    font-size: 18px;
}

/* Dots */
.slider-dots {
    text-align: center;
    margin-top: 25px;
}

.dot {
    height: 10px;
    width: 10px;
    background: #cfcfcf;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
}

.dot.active {
    background: #086ad8;
}

/* Responsive */
@media (max-width: 768px) {
    .slide {
        flex-direction: column;
    }
    .service-box {
        width: 100%;
    }
}





/*========================Floating Images (Shivani Part-3)========================*/

/* SECTION */
.about-section {
    padding: 90px 0;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* LEFT */
.about-text {
    width: 40%;
}

.small-title {
    font-size: 13px;
    letter-spacing: 1.5px;
    color: #999;
}

.about-text h1 {
    font-size: 40px;
    margin: 20px 0;
    color: #222;
}

.about-text h1 span {
    color: #086ad8;
}

.about-text p {
    color: #555;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #086ad8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* RIGHT */
.about-media {
    width: 55%;
    position: relative;
}

/* VIDEO */
.video-box {
    height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #ccc;
}

.video-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #086ad8;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    animation: pulse 2s infinite;
}

/* pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(8,106,216,0.6); }
    70% { box-shadow: 0 0 0 30px rgba(8,106,216,0); }
    100% { box-shadow: 0 0 0 0 rgba(8,106,216,0); }
}

/* ================= IMAGES (SIZE INCREASED) ================= */

.image-box {
    position: absolute;
    width: 220px;     /* Increased from 160px */
    height: 150px;    /* Increased from 110px */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Updated positions */
.top-left {
    top: -70px;
    left: -70px;
}

.top-right {
    top: -70px;
    right: -70px;
}

.bottom-left {
    bottom: -70px;
    left: -70px;
}

.bottom-right {
    bottom: -70px;
    right: -70px;
}

/* FLOAT ANIMATION */
.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-container {
        flex-direction: column;
    }

    .about-text,
    .about-media {
        width: 100%;
    }

    .image-box {
        display: none;
    }
}



/*=================================Mayuri didi -1 ==============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f9f9f9;
  color: #333;
}

.services {
  padding: 70px 10%;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 18px;
  margin-bottom: 50px;
}

.subtitle span {
  color: #0d6efd;
  font-weight: bold;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  transition: 0.3s;
  text-align: left;

  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card.active {
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.card-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}


.icon {
  font-size: 36px;
  opacity: 0.85;
}

.content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.content a {
  color: #0d6efd;
  text-decoration: none;
  font-weight: bold;
}



/* Responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 50px 20px;
  }

  .services h2 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 16px;
  }
}


.icon {
  width: 64px;         
  height: 64px;
  flex-shrink: 0;
}

.icon img,
.icon svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* hover zoom */
.service-card:hover .icon img,
.service-card:hover .icon svg {
  transform: scale(1.25);
}


.content {
  display: flex;
  flex-direction: column;
}

.content h3 {
  margin-top: 2px;
}

.content p {
  margin-bottom: 14px;
  max-width: 95%;
  color:#eef0f4
}


.services-grid {
  align-items: stretch;
}

.service-card {
  height: 100%;
}


@media (max-width: 576px) {
  .card-header {
    flex-direction: column;
  }

  .icon {
    margin-bottom: 10px;
  }
}


/*--------- Shivani steps-----------------------*/
.process{
    padding:80px 10%;
}

.process h5{
    letter-spacing:2px;
    color:#777;
}

.process h1{
    margin:10px 0 60px;
    font-size:42px;
}

.process h1 span{
    color:#0066ff;
}

.steps{
    display:flex;
    justify-content:space-between;
    position:relative;
}

.steps::before{
    content:'';
    position:absolute;
    top:30px;
    left:0;
    width:100%;
    height:2px;
    background:#eee;
}

.step{
    width:22%;
    position:relative;
}

.circle{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#fff;
    border:2px solid #ccc;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
    position:relative;
    z-index:1;
    transition:0.4s;
}

/* Ripple circles */
.circle::before,
.circle::after{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:50%;
    border:2px solid #0066ff;
    opacity:0;
}

.step:hover .circle{
    background:#0066ff;
    color:#fff;
    border-color:#0066ff;
}

.step:hover .circle::before{
    animation:ripple 1.5s infinite;
}

.step:hover .circle::after{
    animation:ripple 1.5s infinite 0.5s;
}

@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    100%{
        transform:scale(2.2);
        opacity:0;
    }
}

.step h3{
    margin:25px 0 10px;
}

.step p{
    color:#777;
    font-size:17px;
    line-height:22px;
}

.step a{
    display:inline-block;
    margin-top:10px;
    text-decoration:none;
    color:#0066ff;
    font-weight:bold;
}


/* =======================shivani Black Bar=========================  */


/* CTA Banner */
.ctas{
    background:#4a4a4a;
    padding:70px 10%;
    position:relative;
    overflow:hidden;
}

/* Dotted Background */
.ctas::after{
    content:'';
    position:absolute;
    right:-100px;
    top:-50px;
    width:400px;
    height:400px;
    background:radial-gradient(#777 1px, transparent 1px);
    background-size:8px 8px;
    opacity:0.4;
}

/* Content Container */
.ctas-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#fff;
    position:relative;
    z-index:1;
}

/* Heading */
.ctas h1{
    font-size:36px;
    line-height:1.4;
}

.ctas h1 span{
    color:#d8b08c;
}

/* Buttons Container */
.ctas-buttons{
    display:flex;
    gap:15px;
}

/* Button Styles */
.btn1{
    padding:14px 26px;
    text-decoration:none;
    font-weight:600;
    border-radius:6px;
    transition:0.3s;
}

.btn1.outline1{
    background:#fff;
    color:#0066ff;
    border:2px solid #0066ff;
}


.btn1.outline1:hover{
    background:#0066ff;
    color:#fff;
}

.btn1.fill{
    background:#d8b08c;
    color:#fff;
}

.btn1.fill:hover{
    opacity:0.85;
}


/*-------------Project stand out shivani----------------- */

/* SECTION */
.case-studies {
  padding: 100px 8%;
  background: #ffffff;
}

/* HEADER */
.case-header {
  text-align: center;
  margin-bottom: 70px;
}

.small-title {
  letter-spacing: 3px;
  font-size: 14px;
  color: #999;
}

.case-header h2 {
  font-size: 42px;
  margin-top: 15px;
  color: #222;
}

.case-header h2 span {
  color: #0b5ed7;
}

/* CONTENT */
.case-content {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.case-text h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #222;
}

.tag {
  display: inline-block;
  color: #0b5ed7;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: 500;
}

.case-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  max-width: 520px;
}

/* IMAGE CONTAINER */
.case-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* IMAGE */
.case-image img {
  width: 85%;              /* Size reduced */
  max-height: 420px;       /* Smaller height */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* FLOAT EFFECT ON HOVER */
.case-image img:hover {
  animation: floatEffect 2s ease-in-out infinite;
  box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* FLOAT KEYFRAMES */
@keyframes floatEffect {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .case-header h2 {
    font-size: 30px;
  }

  .case-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .case-text h3 {
    font-size: 26px;
  }

  .case-image img {
    width: 100%;
    max-height: 350px;
  }
}

/* === Product===*/

/* SECTION */
.product{
  padding:80px 10%;
  background:#f4f8ff;
  font-family:'Segoe UI',sans-serif;
}

/* CASE HEADER */
.case-header{
  text-align:center;
  margin-bottom:60px;
}

.small-title{
  font-size:14px;
  letter-spacing:2px;
  color:#5c7cfa;
  font-weight:600;
}

.case-header h2{
  font-size:32px;
  margin-top:10px;
  color:#0a2540;
}

.case-header span{
  color:#0057b8;
}

/* PRODUCT CARD */
.product-container{
  max-width:900px;
  margin:auto;
  background:#ffffff;
  padding:50px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.1);
  text-align:center;

  animation:fadeUp 1s ease;
}

//* LOGO */
.logo-box{
  width:180px;
  height:180px;
  margin:auto;
  border-radius:50%;
  background:#f4f8ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:25px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);

  animation:floatRotate 5s ease-in-out infinite;
}

.logo-box img{
  width:50%;
  transition:transform 0.4s ease;
}

/* hover effect */
.logo-box:hover img{
  transform:scale(1.1) ;
}


/* TITLE */
.product-container h1{
  font-size:32px;
  color:#0057b8;
}

.product-container h3{
  font-weight:400;
  margin-bottom:30px;
  color:#555;
}

/* FEATURES */
.features{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin-bottom:40px;
}

.features span{
  background:#0057b8;
  color:#fff;
  padding:8px 16px;
  border-radius:25px;
  font-size:14px;
  transition:0.3s;
}

.features span:hover{
  background:#003e87;
  transform:scale(1.08);
}

/* DETAILS SECTION */
.product-details{
  display:flex;
  gap:40px;
  text-align:left;
}

.details,
.benefits{
  flex:1;
}

.product-details h2{
  color:#0057b8;
  margin-bottom:10px;
}

.product-details p{
  color:#444;
  line-height:1.7;
}

/* BENEFITS */
.benefits ul{
  padding-left:18px;
}

.benefits li{
  margin-bottom:8px;
  color:#333;
}

/* ANIMATIONS */

/* Fade Up */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Floating Logo */
@keyframes float{
  0%{transform:translateY(0);}
  50%{transform:translateY(-12px);}
  100%{transform:translateY(0);}
}

/* RESPONSIVE */
@media(max-width:768px){

  .product-details{
    flex-direction:column;
  }

  .product-container{
    padding:35px;
  }

}

/* ============================================================
   RESPONSIVE ADDITIONS — do not change layout, only make it work on mobile
   ============================================================ */

/* Hero content: was fixed 120px left padding — collapses on small screens */
@media (max-width: 768px) {
  .content {
    padding-left: 24px;
    padding-right: 24px;
    align-items: center;
    text-align: center;
  }

  .content h4 {
    font-size: 1.4rem;
  }

  .content h1 {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  /* About section: stack columns */
  .about-container {
    flex-direction: column;
    padding: 0 20px;
  }

  .about-text,
  .about-media {
    width: 100%;
  }

  /* Steps: stack vertically */
  .steps {
    flex-direction: column;
    gap: 30px;
  }

  .steps::before {
    display: none;
  }

  .step {
    width: 100%;
  }

  /* CTA bar: stack heading and button */
  .ctas-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .ctas h1 {
    font-size: 24px;
  }

  /* Product details: already has flex-direction:column at 768px — keep */
  .product-container {
    padding: 24px 16px;
  }

  /* Process section */
  .process {
    padding: 60px 6%;
  }

  .process h1 {
    font-size: 28px;
  }

  /* Services grid already handled above in existing media queries */
}

@media (max-width: 480px) {
  .hero {
    min-height: 100svh;
  }

  .content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .btn-box button {
    width: 100%;
  }

  .services-slider {
    margin: 30px 16px;
  }

  .about-section {
    padding: 50px 0;
  }

  .ctas {
    padding: 50px 6%;
  }

  .product {
    padding: 50px 6%;
  }
}
