* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: Arial, sans-serif;
    }

    /* Fullscreen Video Section */
    .video-section {
      position: relative;
      width: 100%;
      height: 100vh; /* Full viewport height */
      overflow: hidden;
    }

    /* Video Styling */
    .video-section video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      transform: translate(-50%, -50%);
      object-fit: cover;
    }

    /* Overlay Text */
    .video-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      padding: 20px;
      background-color: rgba(0,0,0,0.4); /* optional semi-transparent overlay */
      border-radius: 10px;
    }

    .video-overlay h1 {
      font-size: 48px;
      margin-bottom: 20px;
    }

    .video-overlay p {
      font-size: 20px;
      line-height: 1.5;
    }

    /* Responsive Text */
    @media (max-width: 768px) {
      .video-overlay h1 {
        font-size: 32px;
      }
      .video-overlay p {
        font-size: 16px;
      }
    }






    /* section protion */



/* 
    servicres */


    .services {
  background: linear-gradient(180deg, #ffffff, #f2f7ff);
  color: #0a2540;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
  color: #0b5ed7; /* blue */
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #5a6f8a;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid #e1e8f0;
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(11, 94, 215, 0.05);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(11, 94, 215, 0.12),
    transparent
  );
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #0b5ed7;
  box-shadow: 0 20px 40px rgba(11, 94, 215, 0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0b5ed7;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #425466;
}
/* services */


/* 

.navbar {
  background: #ffef5a;
  padding: 15px 30px;
  font-family: Arial, sans-serif;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 190px;
}


.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}


.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}


.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #ffef5a;
  list-style: none;
  min-width: 220px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}


.phone a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  color: #000;
  margin-left: 40px;
}

.mobile-phone {
  display: none;
}


@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .phone {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #ffef5a;
    flex-direction: column;
    gap: 0;
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu li {
    border-top: 1px solid #ddd;
  }

  .nav-menu a {
    padding: 15px 25px;
    display: block;
  }


  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .mobile-phone {
    display: block;
    font-weight: bold;
  }
} */





/* header */
.navbar {
  background: #ffef5a;
  padding: 15px 30px;
  font-family: Arial, sans-serif;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  max-width: 190px;
}

/* Toggle */
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

/* Menu */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
}

/* Dropdown Desktop */
.dropdown-menu {
  position: absolute;
  top: 40px;
  left: 0;
  background: #ffef5a;
  list-style: none;
  min-width: 220px;
  padding: 10px 0;
  display: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.dropdown-menu li {
  padding: 8px 20px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* Phone */
.phone a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: underline;
  color: #000;
  margin-left: 40px;
}

.mobile-phone {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 992px) {

  .menu-toggle {
    display: block;
  }

  .phone {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #ffef5a;
    flex-direction: column;
    gap: 0;
    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    border-top: 1px solid #ddd;
  }

  .nav-menu a {
    padding: 15px 25px;
    display: block;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    box-shadow: none;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .mobile-phone {
    display: block;
    font-weight: bold;
  }
}



/* header */



 body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
  }

  /* Background canvas for network effect */
  #network-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }

  .container {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    flex-wrap: wrap;
  }

  /* Left side */
  .left {
    flex: 1 1 50%;
    padding: 20px;
  }

  .left h1 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
  }

  .left p {
    font-size: 18px;
    line-height: 1.6;
    color: #ccc;
  }

  /* Truck illustration */
  .truck {
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    height: 150px;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    position: relative;
  }

  /* Right side accordion */
  .right {
    flex: 1 1 50%;
    padding: 20px;
  }

  .accordion-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #444;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    padding: 10px 0;
    font-size: 20px;
  }

  .accordion-header div:first-child span {
    color: #FFD600; /* yellow numbers */
    margin-right: 10px;
    font-weight: bold;
  }

  .accordion-arrow {
    transition: transform 0.3s;
    color: #FFD600;
  }

  .accordion-arrow.active {
    transform: rotate(180deg);
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #ccc;
    padding-left: 25px;
  }
  /* second portion end */




  /* third portion  */


    /* third portion  */




    
.dispatch {
  background: #000;
  padding: 80px 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.dispatch-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
}

.dispatch-left {
  width: 50%;
}

.dispatch-left h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.dispatch-left p {
  color: #ccc;
  line-height: 1.6;
}

.dispatch-right {
  width: 50%;
}

.accordion {
  border-bottom: 1px solid #222;
  padding: 15px 0;
}

.accordion-header {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 15px;
}

.num {
  color: #ffd200;
  font-weight: 700;
  font-size: 20px;
}

.title {
  flex: 1;
  font-size: 22px;
}

.arrow {
  transition: 0.3s;
}

.accordion-body {
  display: none;
  margin-left: 45px;
  margin-top: 10px;
  color: #ccc;
  line-height: 1.6;
}

.accordion.active .accordion-body {
  display: block;
}

.accordion.active .arrow {
  transform: rotate(180deg);
}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

.dispatch-section {
    background: #f5f5f5;
    padding: 80px 60px;
}

.container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Left Content */
.content {
    flex: 1;
}

.content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content p {
    font-size: 18px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 520px;
}

/* Right Image */
.image {
    flex: 1;
}

.image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}



/* Section */
.why-resolute {
    background: #ffffff; /* White background like screenshot */
    padding: 80px 60px;
    position: relative;
}

/* Container Flex */
.why-resolute .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Left Text */
.why-resolute .text {
    flex: 1;
}

.why-resolute h1 {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
}

.why-resolute p {
    font-size: 18px;
    color: #222;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Right Image */
.why-resolute .image {
    flex: 1;
}

.why-resolute .image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Scroll Button */
.scroll-btn {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background-color: #FFD500; /* yellow like screenshot */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}




.steps-section {
    display: flex;
    background: #111; /* dark background */
    color: #fff;
    padding: 80px 50px;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

/* Left Content */
.steps-content {
    flex: 2;
}

.step-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #fff;
}

/* Right List */
.steps-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    cursor: pointer;
    padding: 15px 20px;
    background: #111;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    font-weight: 700;
    color: #FFD500; /* yellow numbers */
}

.step.active {
    color: #FFD500; /* active text yellow */
    border-left: 4px solid #FFD500;
}




.footer {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 60px 40px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.logo-col img {
  max-width: 220px;
}

.footer h4 {
  margin-bottom: 15px;
}

.yellow {
  color: #ffe600;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  cursor: pointer;
}

.simple-links li {
  margin-bottom: 15px;
}

.social {
  margin-top: 20px;
}

.social a {
  display: inline-block;
  margin-right: 10px;
  background: #ffe600;
  color: #000;
  padding: 10px 12px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #222;
  margin-top: 50px;
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

.footer-bottom p {
  color: #ffe600;
}

.bottom-links a {
  margin-left: 20px;
  color: #ffe600;
  text-decoration: none;
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffe600;
  color: #000;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 20px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* 
project */

.pricing-section {
  background: #fff;
  padding: 60px 40px;
  font-family: Arial, sans-serif;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Card */
.price-card {
  border: 3px solid #ffef5a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  background: #fff;
}

/* Header */
.price-header {
  background: #ffef5a;
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  padding:  20px;
}

/* Body */
.price-body {
  padding: 35px;
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

.price-body p {
  margin-bottom: 15px;
}

/* Button */
.price-btn {
  margin: 40px;
  padding: 18px 0;
  border: none;
  border-radius: 50px;
  background: #ffef5a;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
}

.price-btn:hover {
  background: #ffe600;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-wrapper {
    grid-template-columns: 1fr;
  }
}


/* project */

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}



/* 
section1 */



.pricing-hero {
  position: relative;
  height: 520px;
  background: url("assets/images/truck2.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 6px solid #ffef5a;
  font-family: Arial, sans-serif;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

.breadcrumb {
  display: block;
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-hero {
    height: 420px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 17px;
  }
}





.pricing-hero {
  position: relative;
  height: 520px;
  background: url('assets/images/truck1.png') center/cover no-repeat;
  border-top: 6px solid #ffef5a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  overflow: hidden;
}

/* Black overlay */
.pricing-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 0;
}

/* Content wrapper */
.pricing-hero .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 0 20px;
}

/* Heading */
.pricing-hero h1 {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Description text */
.pricing-hero .description p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 10px;
  color: #fff;
}

/* Links inside description */
.pricing-hero .description a {
  color: #ffef5a;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-hero {
    height: auto;
    padding: 80px 0;
  }

  .pricing-hero h1 {
    font-size: 36px;
  }

  .pricing-hero .description p {
    font-size: 16px;
  }
}






* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.timeline-section {
  position: relative;
  padding: 80px 60px;
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee") center/cover no-repeat;
  color: #fff;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.main-heading {
  position: relative;
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}

.timeline-border {
  position: relative;
  border: 2px dashed rgba(255,255,255,0.4);
  padding: 50px 40px;
}

.timeline-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  position: relative;
}

.timeline-item {
  position: relative;
  text-align: left;
}

.number {
  color: #f5c400;
  font-size: 40px;
  font-weight: bold;
}

.dot {
  width: 14px;
  height: 14px;
  background: #f5c400;
  border-radius: 50%;
  margin: 10px 0;
}

.timeline-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.timeline-item p {
  font-size: 14px;
  line-height: 1.6;
}

.dotted-line {
  margin: 40px 0;
  border-top: 2px dotted rgba(255,255,255,0.6);
}

/* ANIMATION */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}












* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

.why-section {
  position: relative;
  min-height: 100vh;
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") center/cover no-repeat;
  color: #fff;
  padding: 80px 60px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.content-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.video-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-btn {
  width: 140px;
  height: 140px;
  background: #ffeb3b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #000;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(255,235,59,0.3);
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.08);
}

/* RIGHT */
.text-area h2 {
  font-size: 42px;
  margin-bottom: 25px;
}

.text-area p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #eaeaea;
}

.text-area p.bold {
  font-weight: bold;
  color: #fff;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.btn {
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
}

.btn.black {
  background: #000;
  color: #ffeb3b;
}

.btn.yellow {
  background: #ffeb3b;
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }
}




*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#000;
    color:#fff;
}

/* Section */
.stats-section{
    padding:60px 40px;
    text-align:center;
}

/* Grid */
.stats-container{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
    align-items:center;
}

/* Box */
.stat-box{
    text-align:left;
    position:relative;
}

/* Icon + Number row */
.stat-top{
    display:flex;
    align-items:center;
    gap:15px;
}

.stat-top i{
    font-size:40px;
}

/* Number */
.stat-number{
    font-size:42px;
    font-weight:bold;
}

/* Label */
.stat-label{
    margin-top:8px;
    font-size:16px;
    color:#ccc;
}

/* Yellow line */
.stat-box::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-12px;
    width:100%;
    height:4px;
    background:#f2d94e;
}

/* Heading */
.main-heading{
    margin-top:80px;
    font-size:48px;
    color:#f2d94e;
    font-weight:bold;
}

/* Scroll Top Button */
.scroll-top{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    background:#f2d94e;
    color:#000;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    cursor:pointer;
}

/* Responsive */
@media(max-width:992px){
    .stats-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:600px){
    .stats-container{
        grid-template-columns:1fr;
        text-align:center;
    }
    .stat-box{
        text-align:center;
    }
}









/* Hide by default */
.dropdown-menu{
    display:none;
    position:absolute;
    background:yellow;
    list-style:none;
    padding:10px 0;
    min-width:220px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

/* REMOVE hover open */
.dropdown:hover .dropdown-menu{
    display:none;
}

/* Open on click */
.dropdown.open .dropdown-menu{
    display:block;
}







/* Common */
#WhatsAppBtn,
#CallBtn {
  position: fixed;
  left: 20px;          /* RIGHT → LEFT */
  z-index: 9999;
}

/* WhatsApp position */
#WhatsAppBtn {
  bottom: 90px;
}

/* Call position */
#CallBtn {
  bottom: 20px;
}

/* WhatsApp Button */
.whatsappfloating_btn .contact_icon {
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Call Button */
.floating-btn-call .contact-icon-call {
  width: 56px;
  height: 56px;
  background: #ffef5a;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

/* Hover effect */
.whatsappfloating_btn .contact_icon:hover,
.floating-btn-call .contact-icon-call:hover {
  transform: scale(1.1);
}

/* Remove underline */
.whatsappfloating_btn a,
.floating-btn-call a {
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #WhatsAppBtn {
    bottom: 80px;
  }

  #CallBtn {
    bottom: 15px;
  }

  .whatsappfloating_btn .contact_icon,
  .floating-btn-call .contact-icon-call {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}





/* 


.dispatch-section {
  padding: 80px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
}

.dispatch-section .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}


.dispatch-section .content {
  flex: 1;
}

.dispatch-section h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: #111;
}

.dispatch-section p {
  font-size: 17px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 20px;
}

.dispatch-section .image {
  flex: 1;
}

.dispatch-section .image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}


@media (max-width: 992px) {
  .dispatch-section .container {
    gap: 40px;
  }

  .dispatch-section h1 {
    font-size: 34px;
  }

  .dispatch-section p {
    font-size: 16px;
  }
}


@media (max-width: 576px) {

  .dispatch-section {
    padding: 60px 16px;
  }

  .dispatch-section .container {
    flex-direction: column;
    gap: 30px;
  }

  .dispatch-section h1 {
    font-size: 28px;
    text-align: center;
  }

  .dispatch-section p {
    font-size: 15px;
    text-align: center;
  }

  .dispatch-section .image img {
    border-radius: 8px;
  }
}



 */















































