* { box-sizing: border-box; margin: 0; padding: 0; }
body {margin:0;font-family:Arial, sans-serif;}
    a {text-decoration:none;color:#002244;}

    /* --------- Topbar --------- */
    .topbar {
      background:#002244;
      color:#fff;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:6px 50px;
      font-size:14px;
    }
    .topbar .left span {margin-right:20px;}
    .topbar .right a {margin-left:12px;color:#fff;font-size:16px;transition:0.3s;}
    .topbar .right a:hover {color:#ff7b54;}

    /* --------- Navbar --------- */
    .navbar {
      background:#fff;
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:12px 40px;
      position:sticky;
      top:0;
      z-index:1000;
      box-shadow:0 2px 4px rgba(0,0,0,0.1);
    }
    .navbar .logo {font-size:20px;font-weight:bold;color:#002244;}
    .navbar .menu {
      display:flex;
      gap:10px;
      align-items:center;
    }
    .navbar .menu li {
      list-style:none;
      position:relative;
    }
    .navbar .menu li a {
      font-size:16px;
     font-weight:500;
      display:flex;
      align-items:center;
      gap:6px;
      padding:6px 0;
    }

    /* Dropdown */
    .navbar .menu li .dropdown {
      display:none;
      position:absolute;
      top:100%;
      left:0;
      background:#fff;
      box-shadow:0 2px 8px rgba(0,0,0,0.15);
      min-width:200px;
      border-radius:6px;
      overflow:hidden;
    }
    .navbar .menu li .dropdown a {
      display:block;
      padding:10px 15px;
      font-size:15px;
      border-bottom:1px solid #f0f0f0;
      transition:0.3s;
    }
    .navbar .menu li .dropdown a:hover {
      background:#f7faff;
      color:#ff7b54;
    }
    .navbar .menu li:hover .dropdown {display:block;}
    .navbar .menu li .arrow {
      font-size:25px;
      transition:transform 0.3s;
    }
    .navbar .menu li:hover .arrow {transform:rotate(180deg);}

    /* --------- Mobile --------- */
    .menu-toggle {
      display:none;
      font-size:28px;
      cursor:pointer;
      color:#002244;
    }
    .mobile-menu {
      position:fixed;
      top:0;
      right:-100%;
      width:280px;
      height:100%;
      background:#fff;
      box-shadow:-2px 0 8px rgba(0,0,0,0.2);
      padding:20px;
      transition:0.3s;
      z-index:2000;
      overflow-y:auto;
    }
    .mobile-menu.active {right:0;}
    .mobile-menu .close {
      text-align:right;
      font-size:30px;
      cursor:pointer;
      margin-bottom:15px;
      color:#002244;
    }
    .mobile-menu ul {list-style:none;padding:0;margin:0;}
    .mobile-menu ul li {margin-bottom:12px;}
    .mobile-menu ul li a {
      font-size:16px;
      display:flex;
      align-items:center;
      gap:8px;
      font-weight:600;
      padding:8px 0;
    }
    .mobile-menu ul li .dropdown {
      display:none;
      padding-left:15px;
      flex-direction:column;
    }
    .mobile-menu ul li.active .dropdown {display:flex;}
    .mobile-menu ul li .arrow {
      margin-left:auto;
      transition:transform 0.3s;
    }
    .mobile-menu ul li.active .arrow {transform:rotate(180deg);}
    .mobile-extra {
      margin-top:20px;
      border-top:1px solid #ddd;
      padding-top:15px;
    }
    .mobile-extra div {margin-bottom:10px;font-size:14px;}
    .mobile-extra .social a {margin-right:12px;font-size:18px;color:#002244;transition:0.3s;}
    .mobile-extra .social a:hover {color:#ff7b54;}

    /* --------- Responsive --------- */
    @media(max-width:992px) {
      .topbar {display:none;}
      .navbar .menu {display:none;}
      .menu-toggle {display:block;}
    }

  .get_strat {
 display: inline-block;
 width: 150px;
 height: 50px;
 border-radius: 10px;
 border: 1px solid #03045e;
 position: relative;
 overflow: hidden;
 transition: all 0.5s ease-in;
 z-index: 1;
}

.get_strat::before,
.get_strat::after {
 content: '';
 position: absolute;
 top: 0;
 width: 0;
 height: 100%;
 transform: skew(15deg);
 transition: all 0.5s;
 overflow: hidden;
 z-index: -1;
}

.get_strat::before {
 left: -10px;
 background: #240046;
}

.get_strat::after {
 right: -10px;
 background: #5a189a;
}

.get_strat:hover::before,
.get_strat:hover::after {
 width: 58%;
}

.get_strat:hover span {
 color: #e0aaff;
 transition: 0.3s;
}

.get_strat span {
 color: #03045e;
 font-size: 18px;
 transition: all 0.3s ease-in;
}


/*  */
  .carousel{
      position: relative;
      width: 100%;
      max-height: 700px;  
      overflow: hidden;
      background:#000; /* gap aaye to black background */
      z-index: 1;
    }
    .carousel-inner{
      display: flex;
      transition: transform 0.6s ease-in-out;
    }
    .carousel-item{
      flex: 0 0 100%;
      text-align: center;
    }
    .carousel-item img{
      width: 100%;
      height: auto;          
      object-fit: contain;   
    }

    /* Arrows */
    .carousel-arrow{
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      background:rgba(0,0,0,0.5);
      color:#fff;
      font-size:24px;
      border-radius:50%;
      width:40px;
      height:40px;
      display:flex;
      align-items:center;
      justify-content:center;
      cursor:pointer;
      user-select:none;
      z-index:10;
    }
    .carousel-arrow:hover{background:#fff;color:#333;}
    .carousel-arrow.left{left:40px;}
    .carousel-arrow.right{right:40px;}

    /* Indicators */
    .carousel-indicators{
      position:absolute;
      bottom:25px;
      left:50%;
      transform:translateX(-50%);
      display:flex;
      gap:10px;
      z-index:10;
    }
    .carousel-indicators span{
      width:12px;
      height:12px;
      border-radius:50%;
      background:rgba(255,255,255,0.6);
      cursor:pointer;
      transition:0.3s;
    }
    .carousel-indicators .active{
      background:#fff;
      width:14px;
      height:14px;
    }

    /* ===== Left Side Social Icons (Fixed + Expand on Hover) ===== */
    .social-icons{
      position: fixed;
      top: 40%;
      left: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 9999;   /* Navbar se upar */
    }
    .social-icons a{
      text-decoration: none;
      color: #fff;
      background: #020b91;
      padding: 12px;
      border-radius: 0 30px 30px 0;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      width: 50px;
      overflow: hidden;
      transition: all 0.4s ease;
      font-size: 16px;
    }
    .social-icons a i{
      font-size: 20px;
      min-width: 20px;
      text-align: center;
    }
    .social-icons a span{
      margin-left: 10px;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.3s ease;
    }
    .social-icons a:hover{
      width: 160px;
    }
    .social-icons a:hover span{
      opacity: 1;
      transform: translateX(0);
    }

    /* Colors */
    .facebook{background:#3b5998;}
    .whatsapp{background:#25d366;}
    .cart{background:#ff9800;}
    .share{background:#2196f3;}

    .sec-heading{
      text-align: center;
      font-size: 40px;
      padding :15px;
    }







    /*  */
    /*  */
    .head-two{
      font-size: 2rem;
      font-family: sans-serif;
      text-align: center;
      padding: 20px;
      font-weight: bold;

    }




     .slider-section {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 20px;
      max-width: 1200px;
      margin: 40px auto;
      flex-wrap: wrap;
      padding: 0 15px;
    }

    .left-sliders {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
      min-width: 280px;
    }

    .slider-container {
      flex: 1;
      overflow: hidden;
      position: relative;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .slider-wrapper {
      display: flex;
      transition: transform 0.5s linear;
    }

    .slide-bar {
      flex: 0 0 50%;
      padding: 10px;
    }

    .slide-bar img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      border: 1px solid #ddd;
      background: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: block;
    }

    .right-image {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 280px;
    }
    .right-image img {
      width: 100%;
      max-width: 700px;
      height: auto;
      object-fit: contain;
      border-radius: 10px;
    }

    /* ========== Responsive ========== */
    @media (max-width: 992px) {
      .slider-section{
        flex-direction: column;
        align-items: center;
      }
      .left-sliders { width: 100%; }
      .slider-container { min-height: 220px; }
      .right-image { width: 100%; margin-top: 20px; }
      .right-image img { max-width: 100%; }
    }

    @media (max-width: 600px) {
      .slide-bar {
        flex: 0 0 100%; /* mobile: ek image full width */
        padding: 5px;
      }
      .slider-container { min-height: 180px; }
    }



    /* card */
     .card-services { 
      text-align: center; 
      padding: 50px 20px; 
    }

    .subtitle { 
      font-size: 14px; 
      color: #666; 
      letter-spacing: 1px; 
      font-weight: 500;
    }

    .title { 
      font-size: 28px; 
      font-weight: 700; 
      margin: 10px 0; 
      color: #1e3a8a; 
    }

    .experts { 
      font-size: 20px; 
      margin: 20px 0; 
      font-weight: 600; 
      color: #0f172a;
    }

    .card-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      margin-top: 30px;
    }

    @media (max-width: 1024px) {
      .card-container { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
      .card-container { grid-template-columns: repeat(1, 1fr); }
    }

    .icon-card {
      background: #fff;
      min-height: 230px;
      border-radius: 12px;
      border: 1px solid #e5e7eb;
      text-align: center;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      position: relative;
      cursor: pointer;
      transition: all 0.3s ease;
      padding: 25px 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
    }

    /* left blue line */
    .icon-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: #2563eb;
      border-radius: 12px 0 0 12px;
      transition: all 0.3s ease;
    }

    /* right orange line */
    .icon-card::after {
      content: "";
      position: absolute;
      top: 0;
      right: -6px;
      width: 6px;
      height: 100%;
      background: transparent;
      border-radius: 0 12px 12px 0;
      transition: all 0.3s ease;
    }

    .icon-card:hover::before { background: transparent; }
    .icon-card:hover::after { right: 0; background: #f97316; }
    .icon-card:hover { transform: translateY(-6px); box-shadow: 0 8px 20px rgba(0,0,0,0.12); }

    .icon-card img {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
      transition: transform 0.3s ease;
      z-index: 1;
      position: relative;
    }

    .icon-card:hover img { transform: scale(1.1); }

    .icon-card h4 {
      font-size: 17px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 10px;
      z-index: 1;
      position: relative;
    }

    .icon-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      z-index: 1;
      position: relative;
    }

       /* Small devices fix */
    @media (max-width: 400px) {
      .title { font-size: 22px; }
      .experts { font-size: 18px; }
      .icon-card { padding: 20px 15px; }
      .icon-card img { width: 60px; height: 60px; }
    }



    
    .about-section {
      background: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c") no-repeat center/cover;
      position: relative;
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    /* Dark overlay */
    .about-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.65);
      z-index: 0;
    }

    .about-content {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      z-index: 1;
    }

    .about-content h2 {
      font-size: 34px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-content p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 15px;
      color: #e5e5e5;
    }

    /* Card container */
    .card-container{
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-top: 40px;
    }

    .single-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0,0,0,0.25);
      transition: all 0.3s ease;
    }

    .single-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .single-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    }

    .single-card:hover img {
      transform: scale(1.08);
    }

    /* Tablet responsive */
    @media (max-width: 992px) {
      .card-container{
        grid-template-columns: repeat(2, 1fr);
      }
      .single-card img {
        height: 200px;
      }
      .about-content h2 { font-size: 30px; }
    }

    /* Mobile responsive */
    @media (max-width: 600px) {
      .card-container {
        grid-template-columns: 1fr;
      }
      .single-card img {
        height: 180px;
      }
      .about-content h2 { font-size: 24px; }
      .about-content p { font-size: 13px; }
    }



     .card-container-two{
      display: grid;
      grid-template-columns: repeat(5, 1fr); /* 5 cards in a row */
      gap: 25px;
      max-width: 1400px;
      margin: auto;
    }

    .carve-card {
      background: #fff;
      border-radius: 20px 0 20px 0; /* top-left & bottom-right */
      padding: 25px 20px;
      height: 320px; /* increased height */
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      position: relative;
      transition: all 0.3s ease;
      border-left: 6px solid #8B4513; /* Brown line */
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .carve-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .carve-card img {
      width: 100px;
      height: 100px;
      margin-bottom: 15px;
    }

    .carve-card h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #1c2d5a;
    }

    .carve-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.6;
      flex-grow: 1;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .card-container-two {
        grid-template-columns: repeat(3, 1fr); /* tablet landscape */
      }
    }

    @media (max-width: 768px) {
      .card-container-two {
        grid-template-columns: repeat(2, 1fr); /* tablet portrait */
      }
    }

    @media (max-width: 480px) {
      .card-container-two{
        grid-template-columns: 1fr; /* mobile */
      }
    }


    .offer-section {
      position: relative;
      background: url("https://img.freepik.com/free-photo/marketing-strategy-business-commerce-solution-concept_53876-133865.jpg") no-repeat center center/cover;
      padding: 60px 20px;
      color: #fff;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 0;
    }

    .overlay-content {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      z-index: 1;
    }

    .overlay-left h4 {
      color: #e0c302;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 10px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .overlay h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 20px;
    }

   .overlay-left p {
      font-size: 15px;
      line-height: 1.6;
      margin-bottom: 15px;
    }

    .overlay-left button {
      padding: 12px 22px;
      border: 2px solid #fff;
      background: transparent;
      color: #fff;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 220px;
      overflow: hidden;
      position: relative;
    }

    .overlay-left button:hover {
      background: #e0c302;
      color: #000;
      border-color: #e0c302;
    }

    .overlay-left button span {
      transition: opacity 0.3s ease, transform 0.3s ease;
      position: absolute;
    }

    .overlay-left button .text {
      opacity: 1;
      transform: translateY(0);
    }

    .overlay-left button .arrow {
      opacity: 0;
      transform: translateY(20px);
      font-size: 20px;
      font-weight: bold;
    }

    .overlay-left button:hover .text {
      opacity: 0;
      transform: translateY(-20px);
    }

    .overlay-left button:hover .arrow {
      opacity: 1;
      transform: translateY(0);
    }

    /* Right cards */
    .overlay-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .overlay-card {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      padding: 20px;
      color: #fff;
      transition: 0.3s;
    }

    .overlay-card:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: translateY(-5px);
    }

    .overlay-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: #ffb300;
      margin-bottom: 8px;
    }

    .overlay-card h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 10px;
      color: #fff;
    }

    .overlay-card p {
      font-size: 14px;
      line-height: 1.5;
      color: #ddd;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .overlay-content {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .overlay-left {
        margin-bottom: 30px;
      }

      .overlay-right {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .overlay-right {
        grid-template-columns: 1fr;
      }
    }


    @media (max-width: 992px) {
  .overlay-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .overlay-left {
    margin-bottom: 30px;
  }

  .overlay-left button {
    margin: 20px auto 0; /* button center ho jayega */
  }

  .overlay-right {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .overlay-right {
    grid-template-columns: 1fr;
  }

  .overlay-left button {
    margin: 20px auto 0; /* mobile me bhi center */
  }
}


/*  */


   .experience{
      text-align: center;
      font-size: 26px;
      font-weight: 600;
      color: #1c2d5a;
      /* margin-bottom: 40px; */
      padding:15px;
    }

    .experience-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
      max-width: 1200px;
      margin: auto;
    }

    .exp-card {
      background: #fff;
      border-radius: 20px 0 20px 0; /* top-left & bottom-right */
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border-left: 4px solid #5c3317; /* Brown accent line */
    }

    .exp-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }

    .exp-icon {
      width: 80px;
      height: 80px;
      margin: auto;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .exp-icon img {
      width: 40px;
      height: 40px;
    }

    .exp-card p {
      font-size: 15px;
      font-weight: 500;
      color: #333;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .experience-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .experience-container {
        grid-template-columns: 1fr;
      }
    }
    
/* get in */

       
    /* footer */
/* get in */

   .dvs-contact {
      text-align: center;
      /* margin-top: 20px; */
      padding: 40px 20px;
       background: #011159;
      color: #fff;
      border-top: 2px solid rgba(255,255,255,0.3);
    }

    .dvs-contact h2 {
      margin-bottom: 30px;
      font-size: 26px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    /* Top 3 Boxes */
    .dvs-top-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 30px;
    }

    .dvs-box {
      background: rgba(255, 255, 255, 0.08);
      border: 2px solid #fff;
      border-radius: 10px;
      padding: 18px;
      flex: 1 1 240px;
      max-width: 280px;
      text-align: center;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    }

    .dvs-box:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.15);
      border-color: #ffcc00;
    }

    .dvs-box i {
      font-size: 28px;
      margin-bottom: 8px;
      color: #ffcc00;
    }

    .dvs-box h3 {
      font-size: 16px;
      margin: 6px 0;
      font-weight: bold;
    }

    .dvs-box p, .dvs-box a {
      font-size: 14px;
      color: #eee;
      text-decoration: none;
    }

    /* Bottom 2 Boxes */
    .dvs-bottom-row {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .dvs-bottom-box {
      background: #fff;
      border-radius: 10px;
      padding: 22px;
      flex: 1 1 300px;
      max-width: 420px;
      text-align: center;
      box-shadow: 0 5px 12px rgba(0,0,0,0.2);
      transition: 0.3s;
      color: #222;
    }

    .dvs-bottom-box:hover {
      transform: translateY(-4px);
      box-shadow: 0 7px 15px rgba(0,0,0,0.3);
    }

    .dvs-bottom-box h3 {
      font-size: 18px;
      margin-bottom: 10px;
      font-weight: bold;
      color: #052c54;
    }

    .dvs-bottom-box p {
      font-size: 14px;
      margin-bottom: 15px;
      line-height: 1.5;
      color: #333;
    }

    /* Social Media */
    .dvs-socil {
      display: flex;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      display: flex;
      align-items: center;
      justify-content: center;
       
      
    }

    .dvs-socil a {
      font-size: 14px;
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      color: #fff;
      transition: 0.3s;
     
    }
    

    .dvs-socil a:hover {
      transform: scale(1.1);
    }

    .dvs-socil a:nth-child(1) { background: #3b5998; }
    .dvs-socil a:nth-child(2) { background: #1da1f2; }
    .dvs-socil a:nth-child(3) { background: #ff0000; }
    .dvs-socil a:nth-child(4) { background: #0077b5; }
    .dvs-socil a:nth-child(5) { background: #25d366; }
    .dvs-socil a:nth-child(6) { background: #e1306c; }

    /* Button */
    .dvs-bottom-box a {
      display: inline-block;
      padding: 10px 10px;
      background: #052c54;
      color: #fff;
      font-weight: bold;
      border-radius: 5px;
      text-decoration: none;
      transition: 0.3s;
      font-size: 14px;
      box-shadow: 0 3px 6px rgba(0,0,0,0.2);
      border-top: 1px solid rgba(255,255,255,0.3);
    }

    .dvs-bottom-box a:hover {
      background: #ffcc00;
      color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .dvs-top-row, .dvs-bottom-row {
        flex-direction: column;
        align-items: center;
      }
      .dvs-box, .dvs-bottom-box {
        width: 100%;
        max-width: 340px;
      }
    }


     footer {
      background: #011159;
      color: #fff;
      padding: 50px 30px 20px;
      /* margin-top: 30px; */
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-column {
      flex: 1 1 200px;
      min-width: 100px;
    }

    .footer-column h3 {
      font-size: 16px;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: bold;
      border-bottom: 2px solid #fff;
      display: inline-block;
      padding-bottom: 5px;
    }

    .footer-column p {
      font-size: 14px;
      line-height: 1.6;
      color: #ddd;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #ddd;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-column ul li a i {
      color: #ffcc00;
      font-size: 12px;
    }

    .footer-column ul li a:hover {
      color: #ffcc00;
    }

    .pay-now {
      display: inline-block;
      padding: 10px 18px;
      background: #5aa9e6;
      color: #fff;
      font-weight: bold;
      border-radius: 6px;
      text-decoration: none;
      margin-top: 10px;
      transition: 0.3s;
    }

    .pay-now:hover {
      background: #3a89c9;
    }

    .footer-bottom {
      margin-top: 30px;
      padding-top: 15px;
      border-top: 1px solid rgba(255,255,255,0.3);
      text-align: center;
      font-size: 13px;
      color: #bbb;
    }

    .footer-bottom a {
      color: #ddd;
      text-decoration: none;
      margin: 0 8px;
      transition: 0.3s;
    }

    .footer-bottom a:hover {
      color: #ffcc00;
    }

    /* Floating Buttons */
    .floating-btn {
      position: fixed;
      bottom: 20px;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 22px;
      text-decoration: none;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: 0.3s;
      z-index: 999;
    }

    .floating-btn:hover {
      transform: scale(1.1);
    }

    .whatsapp-btn {
      left: 20px;
      background: #25d366;
    }

    .call-btn {
      right: 20px;
      background: #25d366; /* अब Call button भी Green */
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        text-align: center;
      }
      .footer-column {
        min-width: 100%;
      }
    }