* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    

}

.model55{
    z-index:999;
}
.custm{
  background: #735a32;
  border: #735a32;
}
.custm:hover{
  background: #735a32;
}

body{
  overflow-y: scroll;
    overflow-x: hidden; 
}

/* header start */

header {
    width: 100%;
    height: 100px;
    position: fixed;
    top: 0;
    z-index:2;
    box-shadow: 0 5px 5px #B590F6;
    /* background: linear-gradient(135deg, rgba(0, 33, 71,0.9) 0%, rgba(34, 99, 163, 0.9)); */
    background-color:#9868F3;
}

.toggle-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  /* display: none; */
}

.menu {
  position: absolute;
  top: 0;
  right: -100%;
  margin-top: 70px;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s ease;
  padding: 10px;
  border-radius: 10px;
}

.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li {
  margin: 5px 0;
  width: fit-content;
}

.menu ul li a {
  text-decoration: none;
  color: #011d35;
  font-size: 18px;
}

.menu.open {
  right: 0 !important;
}
.modal-btn{
  display: none;
}

@media (max-width: 768px){
  
.toggle-btn {
  font-size: 24px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  /* display: none; */
}
.modal-btn{
  display: block;
}
}


/* header end */

/* home page start */

.header-container {
  /* background: linear-gradient(135deg, #002147 0%, #003366 100%); */
  padding: 2rem 1rem;
  margin-top: 100px;
  min-height: 80vh;
  position: relative;a
  overflow: hidden;
 background: linear-gradient(135deg, rgba(48, 25, 52, 0.9) 0%, rgba(48, 25, 52, 0.9) 30%),
            url('https://i.ibb.co/fzFHJDZq/image.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center ;
        z-index: -999;
        background-attachment: fixed;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.profile-icons {
  display: flex;
  margin-right: 10px;
}

.profile-icons img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -10px;
}

.stars {
  color: #FFD700;
  font-size: 20px;
}

.rating-text {
  color: white;
  font-size: 16px;
}

h1 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h1 span {
  color: #735a33;
}

.subtitle {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

.background-shape {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgb(225,225,225,0.5);
  border-radius: 50%;
  transform: rotate(-45deg);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }
  
  .subtitle {
      font-size: 1rem;
  }
  
  .rating-container {
      flex-direction: column;
      gap: 0.5rem;
  }
  
  .profile-icons {
      margin-right: 0;
  }
}

@media (max-width: 480px) {
  h1 {
      font-size: 1.5rem;
  }
  
  .header-container {
      padding: 1rem;
  }
  
  .search-input {
      font-size: 0.9rem;
  }
}

.service-card {
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
            height: 100%;
        }

        /* Hover Effect */
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* Card Header */
        .card-header h3 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
        }

        .card-header .price {
            font-size: 16px;
            font-weight: bold;
            color: #28a745;
            margin-bottom: 10px;
        }

        /* Service Icon */
        .card-image img {
            width: 50px;
            margin-bottom: 15px;
        }

        /* Service Links */
        .card-links {
            width: 100%;
            margin-top: auto;
        }

        .service-link {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #000; /* Black color */
            text-decoration: none;
            padding: 8px 0;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .service-link:hover {
            color: #007bff;
            transform: translateX(5px);
        }

        /* Make All Cards Equal Height */
        .row .col-lg-2 {
            display: flex;
        }

/*@media (max-width: 1200px) {*/
/*  .cards-container {*/
/*      grid-template-columns: repeat(3, 1fr);*/
/*  }*/
/*}*/

/*@media (max-width: 992px) {*/
/*  .cards-container {*/
/*      grid-template-columns: repeat(2, 1fr);*/
/*  }*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .cards-container {*/
/*      grid-template-columns: 1fr;*/
/*  }*/

/*  .service-card {*/
/*      padding: 1rem;*/
/*  }*/
/*}*/

/* ------------------------------------ */
.section_2 h1 span{
  color:#765A33;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}

.professional-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.professional-image img {
  max-width: 400px;
  height: auto;
}

.services-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-card_2 {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.service-icon {
  width: 50px;
  height: 50px;
  /* background: #ffd700; */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-content {
  flex: 1;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}

.arrow {
  color: #999;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .container {
      flex-direction: column;
  }

  .professional-image img {
      max-width: 300px
  }
}
/* ------------------------------------------ */


.sbd{
  background: linear-gradient(135deg, rgba(48, 25, 52, 0.9) 0%, rgba(48, 25, 52, 0.9) 30%),
            url('https://i.ibb.co/fzFHJDZq/image.png'); /* Background image URL */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top ;
        z-index: -999;
        background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.security-container {
  max-width: 1200px;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.security-badge {
  position: absolute;
  left: -30px;
  top: -30px;
  width: 150px;
  height: 150px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.badge-icon {
  font-size: 40px;
  color: white;
  transform: translate(15px, 15px);
}

.content {
  position: relative;
  z-index: 1;
  padding-left: 70px;
}

h1 {
  color: #1a1a1a;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 700;
}

.features {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature {
  flex: 1;
  min-width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.check-icon {
  background: #FFD700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.feature-text {
  color: #4a4a4a;
  font-size: 1.1rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .security-container {
      padding: 2rem;
  }

  .security-badge {
      width: 100px;
      height: 100px;
      left: -20px;
      top: -20px;
  }

  .badge-icon {
      font-size: 30px;
      transform: translate(10px, 10px);
  }

  .content {
      padding-left: 40px;
  }

  h1 {
      font-size: 1.8rem;
  }

  .feature {
      min-width: 100%;
  }
}

/* --------------------------------------------- */

.tbd{
  font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 2rem;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  flex: 0 0 100%;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
  opacity: 1;
}

.testimonial-content {
  background-color: rgba(0,0,0,0.8);
  color: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1rem auto;
  max-width: 80%;
  position: relative;
}

.quote {
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: Georgia, serif;
}

.testimonial-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn {
  left: 10px;
}

.next-btn {
  right: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
}

.dot.active {
  background-color: #003153;
}

@media (max-width: 768px) {
  h1 {
      font-size: 2rem;
  }

  .testimonial-content {
      padding: 1.5rem;
  }

  .slider-btn {
      width: 30px;
      height: 30px;
  }
}

/* ------------------------------------------------- */


.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}

.stats-section {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.stats-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.stats-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-item {
  position: absolute;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
  min-width: 120px;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

.features-section {
  flex: 1;
  min-width: 300px;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #333;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-content h3 {
  margin-bottom: 0.5rem;
  color: #333;
}

.feature-content p {
  color: #666;
  font-size: 0.9rem;
}
.box{
  position: relative;
  height: 250px;
 background: linear-gradient(135deg, rgba(48, 25, 52, 0.9) 0%, rgba(48, 25, 52, 0.9) 30%),
            url('https://i.ibb.co/fzFHJDZq/image.png'); /* Background image URL */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top ;
        z-index: -999;
        background-attachment: fixed;
}
.man img{
  height: 320px;
  width: auto;
  position: absolute;
  right: 20px;
  top: -70px;
}

.bttn3{
  background: rgb(119, 91, 51);
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .man img{
    height: 320px;
    width: auto;
    position: absolute;
    right: 20px;
    top: -70px;
    display: none;
  }
  .stats-section, .features-section {
    width: 100%;
  }
}

/* home page end */

/* product page start  */

.main {
    margin-top: 10rem !important;
}

.form {
    position: relative;
}

.image {
    position: absolute;
    top: -60px;
    left: -50px;
}

.custom-btn {
    background-color: #b68f56 !important;
}

.head {
    color: #b68f56;
}

.limited {
    color: #7D7E80;
}

.tick-img {
    width: 30px;
    height: 30px;
}

.tick-img img {
    width: 100%;
    height: 100%;
}

.un {
    font-size: 13px;
}

.tab {
    height: 60px;
    background-color: #e0c9a6;
    border: 2px solid #b68f56 !important;
    border-radius: 10px;
    position: sticky;
    top: 100px;
}

.active {
    color: #cc8923 !important;
}

.bg-card-color {
    background-color: #E5F0FF;
    border: 2px solid #b68f56 !important;
    position: relative;
}

.bg-card-color .image-offer img {
    position: absolute;
    top: -40px;
}

/* product page end */

/* about page start */
.banner {
  height: 50vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, rgb(0, 0, 0, 0.8) 0%, rgb(0,0,0,0.8) 100%),
    url('https://i.ibb.co/Gf2DhBdL/image.png');
  /* Background image URL */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -999;
  text-align: center;
  color: #fff;
}

.banner h1 {
  margin-top: 100px;
}

.about-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-us {
  width: 80%;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 50px;
}

.about-col {
  flex-basis: 48%;
  padding: 30px 2px;
}

.about-col img {
  width: 100%;
}

.about-col h1 {
  padding-top: 0;
  font-size: xx-large;
}

.about-col p {
  padding: 15px 0 25px;
}

@media (max-width: 768px) {
  .about-div {
    flex-direction: column;
  }
}

.intro {
  background: linear-gradient(135deg, rgba(5,0,0, 0.8) 0%,  rgba(0,0,0,0.8) 0%),
    url('https://i.ibb.co/fzFHJDZq/image.png');
  /* Background image URL */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: -999;
  padding: 3rem;
  text-align: center;
  color: white;
  font-size: 18px;
  font-family: "Roboto", serif;
  font-weight: 500;
  line-height: 30px;
}

.intro p {
  margin-top: 20px;
}

.timeline-container {
  position: relative;
  padding: 0 17%;
}

.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: #e2e8f0;
  z-index: -1;
}

.timeline-item {
  margin-bottom: 8rem;
  position: relative;
}

.timeline-dot {
  width: 25px;
  height: 25px;
  background: #3b82f6;
  border: 4px solid #e2e8f0;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  transition: transform 0.3s ease;
}

.timeline-dot:hover {
  transform: translateX(-50%) scale(1.5);
}

.timeline-content {
  width: 45%;
  padding: 20px;
  transition: transform 0.3s ease;
}

.timeline-content h2 {
  color: #1e3a8a;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: transform 0.5s ease;
}

/* New hover animations for headings */
.timeline-item:nth-child(odd) .timeline-content h2:hover {
  transform: translateX(23px);
}

.timeline-item:nth-child(even) .timeline-content h2:hover {
  transform: translateX(-23px);
}

.timeline-content p {
  color: #4b5563;
  line-height: 1.6;
}

.image {
  position: absolute;
  transform: translatex(40rem);
  top: 50px;
}

.image img {
  height: 200px;
  width: 300px;
  transition: all 0.5s ease-in-out;
}

.image img:hover {
  transform: scale(1.1);
}

.images {
  position: absolute;
  transform: translatex(-35rem);
  bottom: 12px;
}

.images img {
  height: 200px;
  width: 300px;
  transition: all 0.5s ease-in-out;
}

.images img:hover {
  transform: scale(1.1);
}


/* Initial animations */
.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  text-align: left;
  transform: translateX(50px);
  opacity: 0;
  animation: slideFromRight 1s forwards;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  transform: translateX(-50px);
  opacity: 0;
  animation: slideFromLeft 1s forwards;
}


@keyframes slideFromRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive Design */
@media screen and (max-width:768px) {

  .timeline-item{
    margin-bottom: 0;
  }

  .timeline-container {
    padding: 0 20px;
  }

  .timeline-line {
    left: 20px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
    text-align: left !important;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }

  /* Adjust hover animations for mobile */
  .timeline-item:nth-child(odd) .timeline-content h2:hover,
  .timeline-item:nth-child(even) .timeline-content h2:hover {
    transform: translateX(23px);
  }

  .images {
    transform: translatex(10rem);
    transform: translateY(7rem);
  }

  .image {
    transform: translatex(10rem);
    transform: translateY(5rem);
  }

  .image img {
    display: none;
      margin-left: 30px !important;
      margin-top: 90px !important;
  }

  .images img {
    display: none;
      margin-left: 30px !important;
      margin-top: 90px !important;
  }
}

/* about page end */

/* contact page start  */

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgb(0, 0, 0, 0.8) 0%, rgb(0,0,0,0.8) 100%),
    url('https://i.ibb.co/Gf2DhBdL/image.png');
  /* Background image URL */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -999;
  padding: 2rem;
  height: 280px;
  border-radius: 8px;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.head h3 {
  color: black;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 2px;
}

.main-contact {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.address {
  border: 1px solid #e0e0e0;
  padding: clamp(1rem, 3vw, 3rem);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
}

.address-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.office-1 {
  padding: 2rem;
  border: 1px solid;
  border-radius: 8px;
  transition: all 0.5s ease;
  height: 100%;
  color: #fdf4f4;
  background: #fefdfd;
}

.office-1:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  color: white;
}

.office-1 h4 {
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 1rem;
  color: #002147;
}

.office-1 h4:hover {
  color: black;
}

.office-1 h4::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px"><path d="M480-480q33 0 56.5-23.5T560-560q0-33-23.5-56.5T480-640q-33 0-56.5 23.5T400-560q0 33 23.5 56.5T480-480Zm0 294q122-112 181-203.5T720-552q0-109-69.5-178.5T480-800q-101 0-170.5 69.5T240-552q0 71 59 162.5T480-186Zm0 106Q319-217 239.5-334.5T160-552q0-150 96.5-239T480-880q127 0 223.5 89T800-552q0 100-79.5 217.5T480-80Zm0-480Z"/></svg>');
  mask-size: contain;
  mask-repeat: no-repeat;
  background-color: #022b50;
}


.office-1 p {
  font-size: clamp(13px, 2vw, 14px);
  line-height: 1.6;
  color: #666;
}

.form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.second {
  border: 1px solid #e0e0e0;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  height: fit-content;
}

.contact-card,
.work-card {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.contact-card:hover,
.work-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h2,
.work-card h2 {
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 1rem;
  color: #002147;
  text-transform: capitalize;
}

.form {
  background: white;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.form h2 {
  margin-bottom: 2rem;
  color: #002147;
  font-size: clamp(20px, 3vw, 24px);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #333;
  display: block;
}

.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #002147;
  box-shadow: 0 0 0 2px rgba(0, 33, 71, 0.1);
}

.submit {
  background: #002147;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 1rem;
  font-size: clamp(14px, 2vw, 16px);
}

.sumbit:hover {
  background: #003366;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .hero-section {
    height: 30vh;
  }

  .form-container {
    padding: 1rem;
  }

  .address {
    padding: 1rem;
  }

  .office-1 {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 25vh;
  }

  .form-container {
    grid-template-columns: 1fr;
  }

  .contact-card,
  .work-card {
    padding: 1rem;
  }
}

/* contact page end */

/* footer css start */
.logo-footer {
  height: 40px;
  width: 70px;
}

.footer {
background: linear-gradient(135deg, #9868F3 0%, #9868F3 30%),
            url('https://i.ibb.co/fzFHJDZq/image.png');
  /* Background image URL */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  z-index: -999;
  background-attachment: fixed;
}

.all-link a {
  width: 150px;
}
@media screen and (max-width:768px) {
  .all-hsn{
    flex-direction: column;
    align-items: start !important;
  }
  .logo-footer{
    display: none;
  }
  .last-footer{
    flex-direction: column-reverse;
  }
  .social{
    width: 100% !important;
    border-top: 1px solid #000;
  }
  .social-links{
    margin-top: 1rem !important;
  }
  .links-main{
    width: 100% !important;
    margin-bottom:10px;
  }
}

/* footer css end */


/* privacy policy css start  */
.hero-section {
   background: linear-gradient(135deg, rgb(0, 0, 0, 0.8) 0%, rgb(0,0,0,0.8) 100%),
    url('https://i.ibb.co/Gf2DhBdL/image.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top;
  z-index: -999;
  background-attachment: fixed;
  height: 30vh;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: aliceblue;
  margin-bottom: 30px;
}

.hero-section h1 {
  font-size: 35px;
  font-weight: 600;
}
.hero-section p{
  font-size: 14px;
  font-weight: 400;
}

.para {
  display: flex;
  flex-direction: column;
  padding: 0 17% ;
  background-image: url(https://i.ibb.co/Gf2DhBdL/image.png);
  background-repeat: no-repeat;
  background-size: contain;
  align-self: center ;
  background-attachment: fixed;
  background-position: center;
}

.para h5 {
  padding-bottom: .9em;
  font-size: 15px;
  font-weight: 400;
}

.para p {
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 300;
}
.ppp{
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
}
a{
  text-decoration: none;
  font-weight: 400;
}

ol li{
  padding-bottom: 1.5rem;
  font-size: 14px;
  font-weight: 300;
  margin-left: 55px;
}

@media (max-width: 330px) {
  .hero-section {
      height: 20vh;
  }

  .hero-section h1 {
      font-size: 15px;
      font-weight: 300;
      padding: 0 12px;

  }

  .para {
      padding-left: 10%;
      padding-right: 10%;
  }

  .para p {
      font-size: 12px;
  }

  .para h5 {
      font-size: 13px;
  }
  .term{
      font-size: 12px;
  }
}

@media (max-width: 450px) and (min-width
:330px) {
  .hero-section {
      height: 30vh;
  }

  .hero-section h1 {
      font-size: 20px;
      padding: 0 12px;
      font-weight: 400;
      padding: 0 20px;
  }


  .para {
      padding-left: 10%;
      padding-right: 10%;
  }

  .para p {
      font-size: 12px;
  }

  .para h5 {
      font-size: 13px;
  }
}
@media (max-width: 768px) and (min-width
:450px) {
  .hero-section{
      height: 40vh;
  }
  .hero-section h1 {
      font-size: 30px;
      padding: 0 12px;
      font-weight: 400;
      padding: 0 20px;
  }
  .para {
      padding-left: 10%;
      padding-right: 10%;
  }
  .para p {
      font-size: 14px;
  }
  .para h5 {
      font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width
:1024px){
  .hero-section h1 {
      font-size: 30px;
      padding: 0 12px;
      font-weight: 400;
      padding: 0 20px;
  }
}

/* privacy policy css end */
