@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --clr-primary: #2563eb; /* Indigo-600 */
    --clr-primary-light: #3b82f6; /* Blue-500 */
    --clr-secondary: #22c55e; /* Green-500 */
    --clr-secondary-dark: #16a34a; /* Green-600 */
    --clr-accent: #f97316; /* Orange-500 */
    --clr-accent-dark: #ea580c; /* Orange-600 */
    --clr-bg: #f8fafc; /* Slate-50 */
    --clr-text: #000000; /* Slate-800 */
    --clr-muted: #64748b; /* Slate-500 */
    --clr-border: #e2e8f0; /* Slate-200 */
  
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
  
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  
    --font-base: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
  
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
  }
  
  body {
    font-family: var(--font-base);
    font-size: var(--font-size-base);
    background-color: var(--clr-bg);
    color: var(--clr-text);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-family: "Lato", sans-serif;
    width: 100%;
    overflow-x: hidden;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-top: 0;
    color: var(--clr-text);
  }
  
  a {
    color: var(--clr-primary);
    text-decoration: none;
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--clr-primary-light);
  }
  
  button {
    font-family: var(--font-base);
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--clr-primary);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
  }
  
  button:hover {
    background-color: var(--clr-primary-light);
  }
  

  /* Scroll to Top Button Styles */
#scrollToTopBtn {
  position: fixed;
  bottom: 40px;
  left: 40px;
  z-index: 100;
  font-size: 35px;
  background-color: transparent;
  border: none;
  outline: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: none; /* Hidden by default */
  transition: opacity 0.4s, visibility 0.4s;
  text-align: left;
  
}


  .box-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  .card {
    background: white;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }
  
  .card:hover {
    box-shadow: var(--shadow-md);
  }
  
  .section {
    padding: var(--spacing-xl) 0;
  }
  
  .text-muted {
    color: var(--clr-muted);
  }
  
  .text-center {
    text-align: center;
  }
  
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .flex-row {
    flex-direction: row;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .align-center {
    align-items: center;
  }
  
  .gap-md {
    gap: var(--spacing-md);
  }
  

  .material-symbols-outlinedc{
    color: blue;
  }


  /* Responsive Typography */
  @media (min-width: 768px) {
    :root {
      --font-size-base: 1.125rem;
      --font-size-xl: 2rem;
      --font-size-2xl: 2.5rem;
    }
    
  }

  html {
    scroll-behavior: smooth;
  }
  button, a {
    touch-action: manipulation;
  }
  
  /* Utility Classes */
  .mt-md { margin-top: var(--spacing-md); }
  .mb-md { margin-bottom: var(--spacing-md); }
  .pt-lg { padding-top: var(--spacing-lg); }
  .pb-lg { padding-bottom: var(--spacing-lg); }
  

  .iconsDiv{
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .iconsDiv .material-symbols-outlined{
    color: rgb(255, 255, 255);
    font-size: 2rem;
    margin: 0;
    padding: 0;
  }

.material-symbols-outlined:hover{
    padding: 0.1rem;
  }
body {
  font-weight: bolder;
  width: 100%;
  overflow-x: hidden;
  color: #0400da;
  background-color: #eaeaeb;
  border-radius: 5px;
  font-family: "Lato", sans-serif;
  width: 100%;

 
}

/* dark mode style */
body.darkmode {
  background-color: #060113;
background: linear-gradient(90deg, hsl(228, 70%, 16%), hsl(249, 73%, 6%));
  color: white;
}
.darkmode ul li a{
    color: rgb(255, 255, 255);
}
.darkmode.material-symbols-outlinedc{
    color:black;
}
body.darkmode h1,h2,h3,h5,h6,h4{
    color:white;
}
body.darkmode span{
    color: white;
}
body.darkmode label{
    color: white;
}
    
.themeToggleBtn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
  }

  .themeToggleBtn:hover{
    padding: 0.1rem;
  }
img {
  width: 25px;
  height: 25px;

}

img:hover{
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
  p{
    color: #64748b;
    font-weight: 500;
  }
}

.main-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }



  #logo-1{
    width: 200px;
    height: auto;
  }
  
  .menuLinks {
    display: flex;
    flex-direction: column;
  }
  
  .navBtn {
    display: block;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .menuLinks ul {
    display: flex;
    margin: 0;
    list-style: none;
    border-radius: 0.4rem;
  }

  .menuLinks ul a {
    text-decoration: none;
    padding: 0.6rem;
    line-height: 60px;
    display: block;
    color: #060113;
  }
  
  .menuLinks ul a:hover{
    text-decoration: underline;

  }

  .thirdDiv{
    display: flex;
    gap: 1rem;
  }
.menuBtn {
    position: absolute;
    top: 15px;
    right: 20px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menuBtn .bar {
    height: 3px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    transition: 0.3s;
  }
  

.mobile-nav{
  display: none;
}

  .topHero{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 2rem 0rem; 
  }

.lefthero{
    display: flex;
    flex-direction: column;
    padding-top: 1rem;
}

.lefthero h1{
    font-size: 3.1rem;
    line-height: 5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.lefthero p{
    font-size: 1.3rem;
}

.lfthero{
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
    /* justify-content: space-between; */
}

.heroicon{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;

}

.heroicon h4{
    text-align: center;
    color: #000000;
}
body.darkmode .heroicon h4{
    color: rgb(255, 255, 255);
}
.heroicon img{
    width: 4rem;
    height: auto;
    margin-left: 2rem;
}


.srchDiv{
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.1rem 0.4rem;
    width: 68%;
    margin-top: 2rem;
    border-radius: 0.4rem;
    gap: 0.1rem;
 
}

.srchDiv button{
    font-size:0.8rem;
    display: flex;
    align-items: center;
    gap: 1rem;
   
}

.srchDiv input{
    border: none;
    padding: 1rem;
    padding-right: 3.2rem;
    outline: none;
    /* margin-right: 3.5rem; */
}

.righthero{
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: flex-end;
    position: relative;
}
#right-img{
    width: 550px;
    height: 700px;
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    position: relative;
}

.awardDiv{
  display: flex;
  align-items: center;
  gap: 3rem;
}

.darkmode .awrd1 h4{
  color: rgb(255, 255, 255);
}


.awrd1 {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}


.awrd1 h1{
  /* color: #2153FF; */
  font-size: 2rem;
  margin-bottom: -1rem;
  text-align: center;
}

.awrd1 h4{
  color: #000000;
  font-size: 1rem;
}


.trust-compny {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 8rem;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.trust-log {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;

}

.trust-log img {
  width: 50px;
  height: 50px;
}

.trust-compny h1 {
  font-size: 2rem;
  color: #000bda;
}

.trust-compny-1 {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: center;
  background-color: #060113;
  justify-content: center;
  margin-bottom: 5rem;
  animation: slide 30s linear infinite;
}

@keyframes slide {
  from {
      transform: translateX(40%);
  }

  to {
      transform: translateX(-40%);
  }
}

.trust-compny-1 img {
  width: 150px;
  height: auto;
}



.rightbd1{
  font-family: var(--font-base);
  padding: var(--spacing-sm) var(--spacing-md);
  background-color: var(--clr-primary);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: absolute;
  top: 0;
  left:0;
  margin-left: 5rem;
}

.rightbd1 h1,h6{
 color: #e2e8f0;
}

.rightbd2{
  position: absolute;
  right: 0;
  bottom: 0;
  margin-right: -5rem;
  margin-bottom: 2rem;
}

.bdrigth1{
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.4rem;
  margin-bottom: 1rem;
}
/* .darkmode .rightbd2 h2{
color: #22c55e;
} */
.bdrigth1 h2{
  color: #000000;
  font-size: 1rem;
}

.bdrigth1 .material-symbols-outlined{
    background-color: #2153FF;
    color: #ffffff;
    padding: 0.2rem;
    border-radius: 0.4rem;
}


.mainPopular{
  display: flex;
  flex-direction: column;
  margin-top: 5rem;
}

.mainPopular h1{
  color: #2153FF;
}


.popFlex{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
  margin-top: 2rem;
  
}


.popFlex img{
  width: 100%;
  height: 280px;
  border-radius: 0.4rem;
  cursor: pointer;
  position: relative;
}

.popFlex img:hover{
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.popFlex h1{
  color: #000000;
  font-size: 1rem;
}

.popGrid{
  display:grid;
  justify-content: space-between;
  grid-template-columns: repeat(2,1fr);
  gap: 0.4rem;
  margin-top: 1rem;

}


.popGrid button{
  padding:1rem 2rem;
  text-wrap: nowrap;
  margin-left: 2rem;
}

.pop-1{
  position: relative;
}
.p-1{
  display: flex;
  align-items: center;
  gap: 0.4rem;
 
}
.p-s{
  padding-left: 2rem;
}

.p-2{
  display: flex;
  align-items: center;
  gap: 7rem;
  margin-top: 1rem;

}

.abspop{
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 0.3rem;

}

#Featured{
  background-color: #16a34a;
  margin-left: 0.4rem;
}

#Featured:hover{
  background-color: #ea580c;
}
#Sold{
  padding: 0.4rem 1rem;
  margin-top: 0.2rem;
  background-color: red;
  margin-left: 1rem;
}
#Sold:hover{
  background-color: #0400da;
}


.flexCity{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  text-align: center;
 
}
.flexCity h1{
  margin-top: 3rem;
  font-size: 3rem;
  /* color: rgb(0, 12, 249); */
  font-weight: bolder;
}
.flexCity h4{
  font-size: 2rem;
 color: #ffffff;
}
#city-h1{
  margin-top: 10rem;
  margin-bottom: 3rem;
  font-size: 3rem;
}
.fleC-1{
  background: url(Assets/Images/asset\ 11.jpeg) center/cover no-repeat;
  width: 100%;
  height: 620px;
  align-items: center;
  justify-content: center;
  grid-column: 1/2 span;
  grid-row: 1/2 span;
  border-radius: 0.3rem;
  filter: brightness(0.9);
  transition: transform 0.3s ease, filter 0.3s ease;
  
}
.fleC-2{
  background: url(Assets/Images/asset\ 9.jpeg) center/cover no-repeat;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
  grid-column: 3/4 span;
  grid-row: 1/2 span;
  

}
.fleC-3{
  background: url(Assets/Images/asset\ 10.jpeg) center/cover no-repeat;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
  grid-column: 3/4 span;
  grid-row: 2/2 span;
 

}
.fleC-4{
  background: url(Assets/Images/asset\ 13.jpeg) center/cover no-repeat;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
  grid-column: 3/4 span;
  grid-row: 3/2 span;

 
}
.fleC-5{
  background: url(Assets/Images/asset\ 12.jpeg) center/cover no-repeat;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.fleC-6{
  background: url(Assets/Images/asset\ 41.jpeg) center/cover no-repeat;
  width: 100%;
  height: 300px;
  align-items: center;
  justify-content: center;
  border-radius: 0.3rem;
  filter: brightness(0.8);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.main-chse{
  margin-top: 10rem;
}
.chseCard{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.ch-1{
  display: flex;
  flex-direction: column;
  background-color: #e3e3e3;
  padding: 1rem;
  border-radius: 0.4rem;
  height: auto;
  gap: 0.5rem;
}

.ch-1:hover{
  /* border: 2px solid #0400da; */
  box-shadow: 0px 0 5px #1800a3;
}

.darkmode .ch-1 h1{
  color: #0400da;
}
.darkmode .ch-1 .material-symbols-outlined{
  color: #0400da;
}
.ch-1 h1{
  font-size: 1.5rem;
  color: #0400da;
}
.ch-1 p{
  font-size: 1rem;
}


.ch-2{
  background-color: #0F0A2B;
  color: white;
}

.ch-2 h1{
  color: #2153FF;
  font-size: 1rem;
}

.ch-2:hover{
  background-color: transparent;
  border: 2px solid #16a34a;
  box-shadow: none;
  color: #0400da;
}
.darkmode
.ch-2{
  background-color:transparent;
  color: white;
  border: 2px solid #e2e8f0;
}
.darkmode
.ch-2 h1{
  color: #d8d9dc;
  font-size: 1rem;
}
.darkmode
.ch-2:hover{
  background-color: transparent;
  border: 2px solid #16a34a;
  box-shadow: none;
  color: #fefeff;
}

.main-sale{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 15rem;
  gap: 7em;
}

.sale-1{
  display: flex;
  flex-direction: column;
  position: relative;
  align-items:start;
  justify-content: flex-start;
  
}

.sale-1 img{
  width: 100%;
  height: 700px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

#saleAbs{
  position: absolute;
  right: 0;
  padding: 1.7rem 1.2rem;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  margin-right: 5rem;
  border: 5px solid #ffffff;
  font-size: 1rem;
  
}

.sale-2{
  display: flex;
  flex-direction: column;
  align-items: start;
}

.sale-2 h1{
  font-size: 3.5rem;
}

.saleFlex{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 3rem;
}

.saleFlex img{
  width: 100%;
  height: 40%;
  border-radius: 0.4rem;
}

.slFlx h1{
  font-size: 1.5rem;
}


.main-cat{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  margin-top: 10rem;

}

.left-cat{
  display: flex;
  flex-direction: column;
}

.cat-left{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cat-left img{
  width: 100%;
  height: auto;
 
}


.cat-1 h1{
  font-size: 1.2rem;
  text-align: center;
}

.main-about{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 10rem;
}

.leftabt{
  display:flex;
  flex-direction: column;
  gap: 1rem;
}

.leftabt button{
  width: 50%;
  height: auto;
  padding: 1rem 1rem;
  
}

.rightabt{
  align-items: end;
  justify-content: end;
}


.rightabt img{
  width: 100%;
  height: auto;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}




/* Testimonials Section */
.testimonials {
  text-align: center;
  margin-top: 10rem;
  overflow: hidden;
  white-space: none;

}

.testimonials-title {
  font-size: 4rem;
  color: #1e293b;
  margin-bottom: 5rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  justify-content: center; 
}

.testimonial {
  flex: calc(33.333% - 1.5rem); /* 3 items per row with spacing */
  /* background-color: #205D9E; */
  border-radius: 16px;
  padding: 16px 40px;
  text-align: left;
  max-width: 600px;
  margin: 20px auto;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: linear-gradient(to right, #3498db, #2ecc71);
  /* background: linear-gradient(to bottom right, #ff6a00, #ee0979);
  background: linear-gradient(to bottom right, #ff6a00, #ee0979);
  background: linear-gradient(to right, #ff7e5f, #feb47b, #ff6a00); */

  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.testimonial img{
  width: 70px;
  height: 70px;
  border-radius: 0.4rem;
}
.testimonial p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
}

.testimonial h3 {
  font-size: 1.1rem;
  color: #1e293b;
  font-weight: bold;
}




.blog-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-block: 5rem;
  width: 100%;
}


.app-details{
  margin: 0 auto;
  margin-inline: 20rem;
  text-align: center;
  margin-top: 10rem;
}

.app-details h2{
  color: #0400da;
  font-size: 2rem;
}
.blog-1{
  display: flex;
  flex-direction: column;
  gap:0.6rem;
  border: 1px solid hsla(254, 100%, 56%, 0.8);
  border-radius: 0.7rem;
  background-color: hsla(254, 100%, 56%, 0.1);
}


.blog-1:hover{
  background-color: hsla(151, 100%, 56%, 0.1);
}
.blog-image-1{
  background: url(Assets/Images/popular-1.png)center/cover no-repeat;
  width: 423px;
  height: 300px;
  filter: brightness(80%);

}


.blog-image-2{
  background: url(Assets/Images/popular-2.png)center/cover no-repeat;
  width: 100%;
  height: 100%;
  filter: brightness(80%);
}


.blog-image-3{
  background: url(Assets/Images/popular-3.png)center/cover no-repeat;
  width: 100%;
  height: 100%;
  filter: brightness(80%);
}

.blog-title{
  padding-inline: 0.5rem;
  line-height: 2rem;
}
.blog-1 h1{
  font-size: 1.2rem;
}

.blog-1 p{
  font-size: 1rem;
}

.blog-avt{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.blog-avt img:nth-child(1){
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.blog-avt-data{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-left: -5rem;
 
}

.blog-avt-data-1{
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: -1rem;
  justify-content: center;
}

.blog-avt-data-1 h1{
  font-size: 0.75rem;
}

.blog-avt-data-1 img{
  width: 20px;
  height: 20px;
}


.blog-avt-data-2{
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: -1rem;
  margin-top: -0.3rem;

}

.blog-avt-data-2 h1{
  font-size: 0.75rem;
  margin-left: -0.1rem;
}

.blog-avt-data-2 img:nth-child(1){
  width: 30px;
  height: 30px;
}
.avt-right-blog{
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.avt-right-blog img{
  width: 20px;
  height: 20px;
}

.avt-right-blog h1{
  font-size: 0.75rem;
}


.only--tablet{
  display: none;
}


.main-call{
  display: flex;
  flex-direction: column;
  background: url(Assets/Images/asset\ 9.jpeg) center/cover no-repeat;
  width: 100%;
  height: 400px;
  align-items: center;
  justify-content: center;
  filter: brightness(0.6);
  text-align: center;
  font-size: 2rem;
  gap: 2rem;
  margin-top: 10rem;
}

.main-call h1{
  font-size: 4rem;
  font-weight: bold;
  color: #000bda;
}
.main-call p{
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}


.main-call button{
  padding: 1rem 1rem;
}

.questionDiv {
padding-top: 10rem;
 margin: 0 auto;
 max-width: 800px;

}
.questionDiv h1{
  font-size: 4rem;
  text-align: center;
  color: #0400da;
}

.darkmode .questionDiv h3{
  color: white;
}
.questionDiv h3{
  font-size: 1.4rem;
  text-align: center;
  color: #000000;
}

.darkmode .divQA{
  background-color: #d8d9dc;
  color: #000000;
}

.darkmode .divQA .Q-title{
  color: #000000;
}
.divQA{
  background-color: #0F0A2B;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  max-width: 900px;
  margin: 0 auto;
  margin-top: 1rem;
  border-radius: 0.4rem;
}

.Q-title{
  font-size: 1rem;
}

.main-qrcode{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  background-color: #05036a;
  border-radius: 0.3rem;
  padding-inline: 5rem;
}


.leftQr{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.leftQr h2{
 
  color: #b1b1b1;
}

.leftQr h1{
  color: #ffffff;
}

.rightQr {
  display: flex;
  justify-content: center;
  align-items: center;
}


.rightQr img{
  width: 100%;
  height: auto;
}

.mainfre{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.leftFre{
  display: flex;
  flex-direction: column;
  align-items: end;
}


.leftFre img{
  width: 90%;
  height: 700px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}


.main-contact{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 145px;
  margin-top: 10rem;
  
}

.main-contact h5{
  color: #000000;
}

.contDiv{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}

.cnt-1{
  display: flex;
  gap: 1rem;
  background-color: rgba(0, 209, 188, 0.926);
  padding: 1rem;
  border: 1px solid #0000001c;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.cnt-1 span{
  background-color:#7e7ee0;
  padding: 0.7rem;
  height: 45px;
  border-radius: 0.4rem;
  border: none;
}

#only-mobile{
  display: none;
}
.cnt-1div h1{
  font-size: 2rem;
}

.cnt-1div button{
  padding: 1rem 4rem;
  margin-top: 1rem;
  background-color: rgba(0, 209, 188, 0.926);
  border: 2px solid #000000;
  color: #000000;
  font-size: 0.6rem;
  

}

.cnt-1div button:hover{
  background-color: #000bda;
  color: white;
  border: none;
}


.rightCnt{
  background: url(Assets/Images/contact-1.jpg)  center/cover no-repeat;
  width: 80%;
  height: auto;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  align-items: end;
  justify-content: end;
  margin-left:  5rem;
}

.footer-section{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 1.5rem;
    margin-top: 10rem;
}

.footer-1{
    display: flex;
    flex-direction: column;
    gap: 0.5rem;

}

.footer-1 img{
    width: 50%;
    height: auto;
}

.footer-1 h1{
    font-size: 1rem;
}

.footer-1 p{
    font-size: 1rem;
}

.footer-1 label{
    color: rgb(0, 0, 0);
   
}

.newsletter{
   margin-block: 0.5rem;

}
.newsletter input{
    padding: 0.5rem 1.5rem;
    border-radius: 0.2rem;
    font-size: 1;
    border: none;
    margin-right: 0.5rem;
}

.newsletter input:hover{
    background-color: #fafaff;
    border: 2px solid #2153FF;
    color: rgb(3, 3, 3);
}

.newsletter button{
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.2rem;
    margin-top: 1rem;
}

.newsletter button:hover{
    background-color: #0F0A2B;
    color: rgb(255, 255, 255);
}

.footer-2{
    line-height: 2.5rem;
}
.footer-2 span{
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
}


.footer-2 h1{
    font-size: 0.8765rem;
}

/* .footer-2 h1:hover{
   border-bottom: 2px solid #2153FF;
   width: 3.5rem;
   text-wrap: nowrap;
} */

.socail{
    display: flex;
    gap: 1rem;
    align-items: center;
}


.socail img{
  width: 40px;
  height: auto;
  background-color: #000;
  border: none;
  border-radius: 0.4rem;
  margin-top: 1rem;
  padding: 0.2rem;

}

.socail img:hover{
  background-color: blue;
}

.one-line h1{
    font-size: 16rem;
    color:rgb(40, 74, 223);

}


.last-footer{
    display: flex;
    justify-content: space-between;
}

.last-footer h1{
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    
}



.property-details-container {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 0px;
  margin-block: 1rem;
  background-color: transparent;
  box-shadow: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Title styling */
.property-details-container h1 {
  font-size: 2.5rem;
  color: #1e293b;
  margin-bottom: 16px;
  text-align: center;
}
.property-details-container img{
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Image styling */
#property-image{
  width: 100%;
  height: 500px;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Description styling */
.property-details-container p {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 20px;
  text-align: justify;
  line-height: 1.6;
}

/* List styling for property details */
.property-details-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-details-container ul li {
  font-size: 1.1rem;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 8px;
}

.property-details-container ul li strong {
  color: #1e293b;
}

.property-details-container ul li span {
  color: #4b5563;
}

/* Additional features section */
.additional-features {
  margin-top: 20px;
  padding: 20px;
  background-color: #f1f5f9;
  border-radius: 8px;
}

.additional-features h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 12px;
}

.additional-features ul {
  list-style: disc;
  padding-left: 20px;
}

.additional-features ul li {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 8px;
}

/* Button styling */
.property-details-container button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}

.property-details-container button:hover {
  background-color: #0056b3;
}

/* Modal Styling */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
}

.modal-content {
  background: linear-gradient(to right, #fdfcfb, #e2d1c3);
  margin: 5% auto;
  padding: 20px;
  border-radius: 8px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 20px;
}

.modal-left {
  padding: 10px;
}

.modal-left h1 {
  font-size: 1.8rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.modal-left p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.modal-left ul {
  list-style: none;
  padding: 0;
}

.modal-left ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.modal-left ul li strong {
  color: #1e293b;
}

.modal-left ul li span {
  color: #4b5563;
}

.modal-right {
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.modal-right img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

#modal-property-image{
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
 
}

#modal-property-title{
  color: blue;
}

#label {
  color: blue;
}
#message{
  color: blue;
}
#emaila {
  color: blue;
}

 
.property-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.property-form h2 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.property-form label {
  font-size: 1rem;
  color: #4b5563;
}

.property-form input,
.property-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 5px;
}

.property-form button {
  padding: 10px;
  font-size: 1rem;
  color: #ffffff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.property-form button:hover {
  background-color: #0056b3;
}

/* Close Button */
.close-btn{
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 2rem;
  color: #02040b;
  cursor: pointer;
}

.close-btn:hover {
  color: #ff0000;
}

.submit {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(135deg, #f0f4f8, #d9e2ec);
  background: linear-gradient(to right, #fdfcfb, #e2d1c3);
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  text-align: center;
  z-index: 1999;
  display: none;
  width: 600px;
  height: 500px;
  max-width: 90%;
  
  
}

.submit img {
  width: 390px;
  height: auto;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border-radius: 0.4rem;
}

#saved-email,#saved-name{
  color: #000;
  text-align: start;
}

#title-img{
  color: #0025de;
}
/* .close-btn {
  position: absolute;
  top:0px;
  right: 5px;
  font-size: 20px;
  cursor: pointer;
  color: #0012b5;
  background-color:black;
  border-radius: 100%;
  padding: 0.1rem 0.4rem;
  width: 30px;
  height: 30px;
  padding-bottom: -2rem;
} */

.ch-1{
  gap: 1rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .modal-grid {
    grid-template-columns: 1fr; /* Stack sections vertically on smaller screens */
  }

  .modal-right {
    align-items: flex-start;
  }
}
/* about page */


.mainAbout{
  width: 100%;
  height: 400px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url('Assets/Images/sold-3.jpg') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}

.divabt{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.divabt h1{
  color: rgb(255, 255, 255);
  font-size: 3rem;
  text-align: center;
}
.divabt h2{
  color: rgb(255, 255, 255);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 5rem;
}

.flexAbout{
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: 800px;
  margin-top: -5rem;
}

.abt-1{
  padding: 1rem;
  background-color: #05058f;
   background: linear-gradient(to bottom right, #ff6a00, #ee0979);
  background: linear-gradient(to bottom right, #ff6a00, #ee0979);
  background: linear-gradient(to right, #ff7e5f, #feb47b, #ff6a00);
  border-radius: 0.4rem;
}


.mainMission{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 10rem;
  margin-bottom: 5rem;
}


.leftMis{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 7rem;
  
 
}

.abtBtn{
  display: flex;
  gap: 2rem;
}

.abtBtn button{
  padding: 1rem 2rem;
}
.rightMis{
 display: flex;
}
.rightMis img{
  width: 100%;
  height: auto;
  border-radius: 0.4rem;
}

.main-team{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.main-team img{
  width: 100%;
  height: 550px;
  border-radius: 0.4rem;
}


.socailmd img{
  width: 40px;
  height: auto;
  background-color: #000;
  border: none;
  border-radius: 0.4rem;
  margin-top: 1rem;
  padding: 0.2rem;

}

.socailmd img:hover{
  background-color: blue;
}
.team1{
  position: relative;
}


.hidden {
  display: none;
 
}
#absicon{
  position: absolute;
  font-size: 3rem;
  right: 0;
  cursor: pointer;
}


.team1 {
  position: relative;
  overflow: hidden; /* optional: to prevent overflow */
}

.details {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* optional: if you want full cover */
  background-color: rgba(4, 0, 108, 0.85);
  padding: 1.5rem 1rem;
  border-radius: 0.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center; /* center the content vertically */
  align-items: center;
  gap: 1rem;
  z-index: 2;
  color: white;
  transition: all 0.3s ease;
}

.hidden {
  display: none;
}

#h1-team{
  font-size: 3rem;
  margin-block: 10rem;
  text-align: center;
}
#absicon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2.5rem;
  color: blue;
  cursor: pointer;
  z-index: 3;
}
#absicon.active{
  color: white;
  transform: rotate(180deg); /* Optional: flip the arrow */
  transition: all 0.3s ease;
}

.details h1{
  color: wheat;
  font-size: 2.3rem;
  margin-top: 1rem;
}

.details h2{
  font-size: 1.5rem;
}

.sign-1 img{
  width: 140px;
  height: auto;
  margin-bottom: -2rem;
}


/* service */



.main-service{
  width: 100%;
  height: 400px;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
  url('Assets/Images/services.webp') no-repeat center center/cover;
  color: white;
  padding: 100px 20px;
  text-align: center;
  overflow: hidden;
}


.divabt{
  display: flex;
  margin: 0 auto;
}

.ourservice{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}

.service-info{
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 7rem;
}

.service-1{
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: linear-gradient(135deg, #eef2f3, #8e9eab);
  border-radius: 0.4rem;
}
.darkmode .service-1 h1{
  color: #000000;
}
.service-1 h1{
  font-size: 1.8rem;
}

.cta-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Professional dark gradient */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 1.5rem;
  margin-top: 10rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 30px;
  color: #d1d1d1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: #00d4ff;
  color: #000;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
}

.cta-btn:hover {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 4px 14px rgba(255,255,255,0.3);
}


.property-management {
  padding: 4rem 1rem;
  text-align: start;
}

.property-management .container {
  max-width: 1200px;
  margin: 0 auto;
}

.pm-title {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
  text-align: center;
}

.pm-desc {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
}

.pm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pm-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.pm-card:hover {
  transform: translateY(-8px);
}

.pm-card span.material-symbols-outlined {
  font-size: 2.5rem;
  color: #3b82f6;
  margin-bottom: 1rem;
}

.pm-card h3 {
  color: #111827;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.pm-card p {
  font-size: 1rem;
  color: #4b5563;
}


/* Buy page */

.buy-hero {
  background: linear-gradient(135deg,#004e68, #642c2c); /* Gradient background */
  color: #fff;
  padding: 100px 20px;
  text-align: center;
  margin-top: -1.5rem;
  display: flex;
  flex-direction:column;
  gap: 1rem;
}



.container h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #ffffff;
}


.buy-hero h1 :hover{
  color: #000000;
}
.buy-hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
}


#exBtn{
  padding: 1rem 2rem;
}



.buying-steps {
  padding: 80px 20px;
  text-align: center;
  color: #000;
}

.step p {
  color: white;
}

.buying-steps h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0000e0;
}
.buying-steps h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #000000;
}

.section-desc {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 40px;
}

.darkmode .section-desc{
  color: white;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

.step {
  background: white;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  background: linear-gradient(135deg, #9d50bb, #6e48aa);
  background: linear-gradient(135deg, #43cea2, #185a9d);
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  display: inline-block;
  background: #00c897;
  color: white;
  font-weight: bold;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
  font-size: 1.2rem;
}


/* Sell Page Hero */
.sell-hero {
  padding: 100px 20px;
  background: linear-gradient(to right, #1588c6, #e0e3e4);
  background: linear-gradient(135deg, #f7971e, #ffd200);
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  background: linear-gradient(135deg, #9d50bb, #aa4848);
  text-align: center;
  color: #fff;
}

.sell-hero .hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.sell-hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-primary {
  padding: 12px 30px;
  background-color: #fff;
  color: #1c92d2;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background-color: #e6f7ff;
  color: #000;
}


.property-card {
  background-color: #fff;
  padding: 20px;
  margin: 20px auto;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.property-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.coming-soon {
  height: 100vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.coming-soon h1 {
  font-size: 5rem;
  margin-bottom: 2rem;
}

.coming-soon p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.coming-soon button {
  padding: 15px 24px;
  font-size: 1rem;
  color: #fff;
  background-color: #2563eb;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.coming-soon button:hover {
  background-color: #1e40af;
}

.countdown {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  font-size: 1.5rem;
}

.countdown div {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 30px;
  border-radius: 10px;
  text-align: center;
}

.countdown span {
  display: block;
  font-weight: bold;
  font-size: 2rem;
}

.newsletter {
  display: flex;
  margin-top: 20px;
}



#eml{
  padding: 10px 20px;
  margin-top: 1rem;
  border-radius: 0.4rem;
  outline: hidden;
  border: none;
  width: 350px;
}

.newsletter button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #22c55e;
  color: white;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.3s ease;

}

.newsletter button:hover {
  background-color: #16a34a;
}




.rent-hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-top: -1.5rem;
}

/* contaact page */

.master-Contact{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  /* background: linear-gradient(135deg, #374151, #010047); */
  /* background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  background: linear-gradient(135deg, #0ea5e9, #14b8a6);
  background: linear-gradient(135deg, #dce5e3, #eff0f4); */
  width: 100%;
  height: 400px;
  margin-top: -1.5rem;
  align-items: center;
  justify-content: center;
  border: 1px solid #00000018;
  box-shadow: var(--shadow-sm);

}


.sub-ctn{
  display: flex;
  flex-direction: column;
  text-align: center;

}

.sub-1{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000097;
  background: linear-gradient(to right, #508ef1, #047bb3);
  gap: 1rem;
  background: linear-gradient(to right, #f7971e, #ffd200);

  padding: 0.6rem 1rem;
  margin-inline: 20rem;
  color: white;
  border-radius: 0.4rem;
  margin-bottom: 0rem;

}
.darkmode
.sub-1{
  background: linear-gradient(to right, #f953c6, #b91d73);
}

.sub-1 h1{
  color: white;
  font-size: 1rem;
}

#cdb{
  background: linear-gradient(to right, #6f9fed, #047bb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  font-size: 6rem;
  font-weight: bold;

}




.contact-heading {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1.6;
}

.contact-heading span {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

/* Gradient styles */
.gradient-1 {
  background: linear-gradient(to right, #00c6ff, #0072ff);
}

.gradient-2 {
  background: linear-gradient(to right, #f7971e, #ffd200);
}

.gradient-3 {
  background: linear-gradient(to right, #f953c6, #b91d73);
}

.gradient-4 {
  background: linear-gradient(to right, #43e97b, #38f9d7);
}



.main-form1{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 10rem;
margin-bottom: 2rem;
}

.formContact{
  display: flex;
  flex-direction: column;
  gap: 1rem;

}

.formContact textarea{
  resize: none;
 border-radius: 0.4rem; 
 padding: 0.4rem;
 border: none;
 outline: none;
}

.formContact input{
  border-radius: 0.2rem;
  padding: 0.5rem 0.4rem;
  border: none;
  outline: none;
}


.lftForm{
  margin-inline: 4rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #eeeef2;
  background: linear-gradient(to right, #f953c6, #b91d73);
  background: linear-gradient(to right, #f7971e, #ffd200);
  background: linear-gradient(to right, #43e97b, #38f9d7);
  background: linear-gradient(to right, #00c6ff, #0072ff);

}

.darkmode

.lftForm{
  background: linear-gradient(to right, #98006a, #b91d73);
}
.rgtForm{
  margin-inline: 4rem;
}

.lftForm button{
  padding: 1rem;
  margin-block: 1rem;
}
.inputDiv{
  display: flex;
  gap: 8rem;
}

.inp-1{
  display: flex;
  flex-direction: column;
}


.flexform{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 1rem;
}

.darkmode
.fl-1{
  background: linear-gradient(to right, #43e97b, #38f9d7);
}
.fl-1{
  display: flex;
  flex-direction: column;
  background-color: whitesmoke;
  padding: 1rem;
  border-radius: 0.3rem;
}

.fl-1:hover{
  background-color: #d2d4dd;
}
.subfl-1{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#h1-3{
  margin-left: -10rem;
}

.flex-1{
  background-color: #0000976c;
  padding: 0.3rem;
  border-radius: 0.2rem;
  
}

.flex-1:hover{
  background-color: #0039d5;
  color: white;
  padding: 0.3rem;
}




.mainBlog{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;

}


.main-topic{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  
}

.mainBlog h1{
  font-size: 5rem;
  background: linear-gradient(to right, #00c6ff, #0072ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}


.mainBlog p{
  color: #000;
}


.search-ctn{
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background-color: #f0f4f8;
  padding: 0.1rem 0.6rem;
  padding-right: 2rem;
  border: 1px solid hsla(144, 31%, 41%, 0.5);
  border-radius: 0.3rem;
}

.search-ctn:hover{
  border: 1px solid #0000e0;
}

.search-ctn input{
  border: none;
  background-color: transparent;
  outline: none;
  padding-right: 20rem;
}


.topic-1{
  display: flex;
  gap: 1rem;
}


.topic-1 span{
 border: 2px solid rgb(72, 83, 137);
 padding: 0.3rem 1rem;
 border-radius: 50px;
 font-size: 1rem;
}
/* responsive design style */

  
  @media screen and (min-width: 481px) and (max-width: 900px) {


    .main-nav {
      display: block;
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
      position: absolute;
      left: 0;


    }
  

.main-nav.active{
  width: 100%;
}
    #contact66{
      display: none;
    }

    #mbl-btn1{
      display: none;
    }


      
    .menuLinks{
      display: none;
    }

    .hide-in{
      display: none;
    }


    .mobileBtn img{
      position: absolute;
      right: 10px;
      width: 30px;
      height: 30px;
      margin-top: 1rem;
    }


    .mobile-menu.active{
      margin-top: 3rem;
      background-color: #000;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .mobile-menu{
      margin-top: 3rem;
      background-color: #000;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      display: none;
    }
    .mobile-menu ul li{
      list-style: none;
      margin-top: 1rem;
    }
    .mobile-nav{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      /* background-color: #000000; */
    }
    .mobileDiv.active{
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #000;
      width: 100%;
      margin-top: -1rem;
      padding-top: 1rem;
      padding-bottom: 2rem;
    }
.mobileDiv{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
  margin-top: -1rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: none;
}
    
  .topHero{
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 0rem; 
    width: 100%;
  }

.lefthero{
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
    padding-right: 1rem;
    width: calc(100%);

}

.lefthero h1{
    font-size: 3rem;
    line-height: 5rem;
    margin-bottom: 1rem;
    color: #000000;
}

.lefthero p{
    font-size: 1rem;
}

.lfthero{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0rem;
    align-items: center;
    margin-top: 2rem;
    /* justify-content: space-between; */
}


.heroicon img{
    width: 4rem;
    height: auto;
    margin-left: 5rem;
}


.srchDiv{
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.1rem 0.4rem;
    width: 80%;
    margin-top: 2rem;
    border-radius: 0.4rem;
    gap: 0.1rem;
 
}

.srchDiv button{
    display: flex;
    align-items: center;
    gap: 1rem;
    text-wrap: nowrap;
    margin-left: 12rem;
   
}

.srchDiv input{
    border: none;
    padding: 1rem;
    padding-right: 3.6rem;
    outline: none;
    /* margin-right: 3.5rem; */
}
.awrd1{
  width: 100%;
}

.awrd1 h1{
  font-size: 2rem;
  text-align: center;
  margin-bottom: -0.6rem;
  color: #0400da;
}

.awrd1 h4{
  font-size: 1.2rem;
  text-align: center;
}

.righthero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    margin-top: 10rem;
}
#right-img{
    width: 500px;
    height: 700px;
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    position: relative;
}


.rightbd2{
  position: absolute;
  right: 0;
  margin-right: 5rem;
  bottom: 0;
  width: 30%;
  margin-bottom: 0rem;
  text-wrap: nowrap;
}



.popFlex{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-top: 2rem;
  width: calc(90%);
  padding-left: 2rem;
}




.main-sale{
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 15rem;
  gap: 0em;
}

.sale-1{
  display: flex;
  flex-direction: column;
  position: relative;
  align-items:start;
  justify-content: flex-start;
  
}



.sale-2 h1{
  font-size: 2rem;
  margin-top: 5rem;
}

.saleFlex{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-top: 0rem;
}

.saleFlex img{
  width: 100%;
  height: 40%;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.slFlx h1{
  font-size: 2rem;
  margin-top: 0rem;
}

.end{
  display: none;
}

.chseCard{
  display: grid;
  grid-template-columns: repeat(2,1fr);
}


.main-cat{
  display: grid;
  grid-template-columns:1fr;
  margin-top: 10rem;

}

.buy{
  margin-top: -15rem;
}

.main-about{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 10rem;
}

.leftabt{
  display:flex;
  flex-direction: column;
  gap: 1rem;
}

.leftabt button{
  width: 50%;
  height: auto;
  padding: 1rem 1rem;
  
}

.rightabt{
  align-items: end;
  justify-content: end;
}


.rightabt img{
  width: 100%;
  height: auto;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}


.main-call{
  filter: brightness(0.8);
}

.main-call h1{
  font-size: 2.5rem;
  font-weight: bold;
  color: #000bda;
}
.main-call p{
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}


/* .blog-grid{
   display: grid;
  grid-template-columns: repeat(2,1fr);
   width: calc(10%);
  margin: 0 auto;
}


.only--tablet{
  display: block;
}  */



.blog-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
  margin-block: 5rem;
  width: calc(30%);
  padding: 1rem;

}

.blog-1{
  display: flex;
  flex-direction: column;
  gap:0.6rem;
  border: 1px solid hsla(254, 100%, 56%, 0.2);
  border-radius: 1rem;
  
}

.blog-image-1{
  background: url(Assets/Images/popular-1.png)center/cover no-repeat;
  width: 380px;
  height: 300px;
  border-radius: 0.2rem;
}


.blog-image-2{
  background: url(Assets/Images/popular-2.png)center/cover no-repeat;
  width: 380px;
  height: 300px;
  border-radius: 0.2rem;
}


.blog-image-3{
  background: url(Assets/Images/popular-3.png)center/cover no-repeat;
  width: 380px;
  height: 300px;;
  border-radius: 0.2rem;
}


.blog-title{
  padding-inline: 0.5rem;
  line-height: 2rem;
}
.blog-1 h1{
  font-size: 1.1rem;
}

.blog-1 p{
  font-size: 1rem;
}

.blog-avt{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
}

.blog-avt img:nth-child(1){
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.blog-avt-data{
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-left: -2rem;
 
}

.blog-avt-data-1{
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: -1rem;
  justify-content: center;
}

.blog-avt-data-1 h1{
  font-size: 0.75rem;
}

.blog-avt-data-1 img{
  width: 20px;
  height: 20px;
}


.blog-avt-data-2{
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin-left: -1rem;
  margin-top: -0.1rem;

}

.blog-avt-data-2 h1{
  font-size: 0.75rem;
  margin-left: -0.4rem;
}

.blog-avt-data-2 img:nth-child(1){
  width: 30px;
  height: 30px;
}
.avt-right-blog{
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.avt-right-blog img{
  width: 20px;
  height: 20px;
}

.avt-right-blog h1{
  font-size: 0.75rem;
}


.app-details{
  width: 60%;
  margin-left: 8rem;
}



.mainfre{
  display: grid;
  grid-template-columns:1fr;
  gap: 1rem;
  width: 60%;
}

.leftFre{
  display: flex;
  flex-direction: column;
  align-items: end;
}


.leftFre img{
  width: 90%;
  height: 600px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  margin-right: 1rem;
}


.main-contact{
  display: grid;
  grid-template-columns:1fr;
  gap: 1rem;
  margin-top: 10rem;
  
}

.main-contact h5{
  color: #000000;
}

.contDiv{
  display: grid;
  grid-template-columns: repeat(2,1FR);
  gap: 1rem;
}

.cnt-1{
  display: flex;
  gap: 1rem;
  background-color: rgba(0, 209, 188, 0.926);
  padding: 1rem;
  border: 1px solid #0000001c;
  border-radius: 0.4rem;
  margin-top: 2rem;
}



.rightCnt{
  display: block;
  width: 60%;
  height: 600px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  margin-left: 2rem;
}


/* about responsive style */



.divabt h1{
  color: rgb(255, 255, 255);
  font-size: 2rem;
  text-align: center;
}
.divabt h2{
  color: rgb(255, 255, 255);
  font-size: 1em;
  text-align: center;
  margin-bottom: 0rem;
}

/* .flexAbout{
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: 500px;
  flex-wrap: wrap;
  margin-top: 5rem;
} */



.mainMission{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}


.leftMis{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0rem;
  
 
}


.main-team{
  display: grid;
  grid-template-columns:repeat(2,1fr);
  gap: 2rem;
}



.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  justify-content: center; 
}

.ourservice{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2rem;
}



/* contaact page */

.master-Contact{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 400px;
  margin-top: 5rem;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid #00000018;
  box-shadow: var(--shadow-sm);
padding: 1rem;
}



.sub-1{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000097;
  background: linear-gradient(to right, #508ef1, #047bb3);
  gap: 1rem;
  background: linear-gradient(to right, #f7971e, #ffd200);

  padding: 0.6rem 3rem;
  margin-inline: 12rem;
  width: 40%;
  color: white;
  border-radius: 0.4rem;
  margin-bottom: 0rem;
  text-wrap: nowrap;
}
.darkmode
.sub-1{
  background: linear-gradient(to right, #f953c6, #b91d73);
}



#cdb{
  background: linear-gradient(to right, #6f9fed, #047bb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  margin-top: 2rem;
  margin-left: -5rem;
  font-size: 5rem;
  font-weight: bold;

}




.contact-heading {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: wrap;
  line-height: 1.6;
  width: 95%;
  padding: 1rem;
}



.main-form1{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 10rem;
margin-bottom: 2rem;
padding: 0rem;
}




.lftForm{
  margin-inline: 5rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #eeeef2;
  background: linear-gradient(to right, #f953c6, #b91d73);
  background: linear-gradient(to right, #f7971e, #ffd200);
  background: linear-gradient(to right, #43e97b, #38f9d7);
  background: linear-gradient(to right, #00c6ff, #0072ff);
  width: 80%;
  margin-top: -3rem;
}

.rgtForm{
  margin-inline: 5rem;
  width: 80%;
  margin-top: 4rem;
}

.lftForm button{
  padding: 1rem;
  margin-block: 1rem;
}
.inputDiv{
  display: flex;
  gap: 1rem;
  flex-direction: column;
}

.mainBlog{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: 5rem;

}




.mainBlog p{
  color: #006afd;
}


.search-ctn input{
  border: none;
  background-color: transparent;
  outline: none;
  padding-right: 10rem;
}


.topic-1{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}



.footer-section{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  margin-top: 10rem;
  width: calc(100%);
  padding: 2rem;
}

.one-line{
  display: block;
  
}
.one-line h1{
  font-size: 9rem;
  text-align: center;
}

.footer-1{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.footer-1 img{
  width: 50%;
  height: auto;
}

.footer-1 h1{
  font-size: 1rem;
}

.footer-1 p{
  font-size: 1rem;
}

.footer-1 label{
  color: rgb(0, 42, 255);
 
}

.newsletter{
 margin-block: 0.5rem;

}
.newsletter input{
  padding: 0.5rem 1.5rem;
  border-radius: 0.2rem;
  font-size: 1;
  border: none;
  margin-right: 1rem;
}

.newsletter input:hover{
  background-color: #0F0A2B;
  border: 2px solid #2153FF;
  color: white;
}

.newsletter button{
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.2rem;
}

.newsletter button:hover{
  background-color: #0F0A2B;
  border: 2px solid #2153FF;
  color: white;
}

.footer-2{
  line-height: 2.5rem;
}
.footer-2 span{
  color: rgb(0, 17, 250);
  font-size: 1.2rem;
}


.footer-2 h1{
  font-size: 0.8765rem;
}

/* .footer-2 h1:hover{
 border-bottom: 2px solid #2153FF;
 width: 3.5rem;
 text-wrap: nowrap;
} */

.socail{
  display: flex;
  gap: 1rem;
  align-items: center;
}

.socail img{
  width: 2rem;
  height: 2rem;
  border: 2px solid #2153FF;
  border-radius: 1rem;

}




.last-footer{
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom:1rem;
  text-align: center;
}

.last-footer h1{
  font-size: 1rem;
  font-weight: 400;
  margin-bottom:1rem;
  margin-left: 5rem;
  font-weight: bolder;
 
}













  }


  /* mobile style */

  @media screen and (max-width: 480px) {

    .main-nav {
      display: block;
      flex-direction: column;
      align-items: flex-start;
      padding: 1rem;
      position: absolute;
      left: 0;


    }
  

.main-nav.active{
  width: 100%;
}
    #contact66{
      display: none;
    }

    #mbl-btn1{
      display: none;
    }


      
    .menuLinks{
      display: none;
    }

    .hide-in{
      display: none;
    }


    .mobileBtn img{
      position: absolute;
      right: 10px;
      width: 30px;
      height: 30px;
      margin-top: 1rem;
    }


    .mobile-menu.active{
      margin-top: 3rem;
      background-color: #000;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background-color 20s ease;
    }

    /* .mobile-menu, .mobileDiv.active:hover{
      background: rgba(0, 0, 0, 0.05);
    } */
    .mobile-menu{
      margin-top: 3rem;
      background-color: #000;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      display: none;
      
 
    }
    .mobile-menu ul li{
      list-style: none;
      margin-top: 1rem;
    }
    .mobile-nav{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      /* background-color: #000000; */
    }
    .mobileDiv.active{
      display: flex;
      flex-direction: column;
      align-items: center;
      background-color: #000;
      width: 100%;
      margin-top: -1rem;
      padding-top: 1rem;
      padding-bottom: 2rem;
      transition: background-color 10s ease;
    }
.mobileDiv{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #000;
  width: 100%;
  margin-top: -1rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
  display: none;
 
}

  .topHero{
    display: grid;
    grid-template-columns: 1fr;
    padding: 2rem 0rem; 
    width: 30%;
  }

.lefthero{
    display: flex;
    flex-direction: column;
    padding-top: 6rem;
    padding-right: 10rem;
    width: calc(90%);

}

.lefthero h1{
    font-size: 1.7rem;
    line-height: 3rem;
    margin-bottom: 1rem;
    color: #000000;
}

.lefthero p{
    font-size: 1rem;
}

.lfthero{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;

}


.heroicon img{
    width: 4rem;
    height: auto;
    margin-left: 3rem;
}


.srchDiv{
    display: flex;
    align-items: center;
    background-color: #ffffff;
    padding: 0.1rem 0.4rem;
    width: 100%;
    margin-top: 2rem;
    border-radius: 0.4rem;
    gap: 0.1rem;
 
}

.srchDiv button{
    display: flex;
    align-items: center;
    gap: 1rem;
    text-wrap: nowrap;
    margin-left: -3rem;
   
}

.srchDiv input{
    border: none;
    padding: 1rem;
    padding-right: 3.6rem;
    outline: none;
    /* margin-right: 3.5rem; */
}
.awrd1{
  width: 100%;
}



.awrd1 h1{
  font-size: 1rem;
  text-align: center;
  margin-bottom: -0.6rem;
  color: #0400da;
}

.awrd1 h4{
  font-size: 1rem;
  text-align: center;
}

.righthero{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    position: relative;
    margin-top: 10rem;
}
#right-img{
    width: 400px;
    height: 600px;
    border-top-right-radius: 100%;
    border-top-left-radius: 100%;
    position: relative;
}


.rightbd2{
  position: absolute;
  left: 0;
  margin-right: 10rem;
  bottom: 0;
  width: 40%;
  margin-bottom: 0rem;
  text-wrap: nowrap;
}



.popFlex{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}
.flexCity {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1rem;
  text-align: center;
}

.flexCity h4{
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.flexCity h1{
  font-size: 1.5rem;
 color: rgb(0, 12, 249);
 font-weight: bolder;
}

.fleC-1,
.fleC-2,
.fleC-3,
.fleC-4,
.fleC-5,
.fleC-6 {
  width: 100%;
  height: auto;
}
.fleC-2,
.fleC-3,
.fleC-4{
  display: none;
}

.chseCard{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}



.main-sale{
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 15rem;
  gap: 0em;
}

.sale-1{
  display: flex;
  flex-direction: column;
  position: relative;
  align-items:start;
  justify-content: flex-start;
  
}



.sale-2 h1{
  font-size: 2rem;
  margin-top: 5rem;
}

.saleFlex{
  display:grid;
  grid-template-columns: 1fr;
  gap: 0rem;
  margin-top: 0rem;
}

.saleFlex img{
  width: 100%;
  height: 70%;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.slFlx h1{
  font-size: 2rem;
  margin-top: 0rem;
}

.slFlx button{
  margin-bottom: -85rem;
}


.main-cat{
  display: grid;
  grid-template-columns:1fr;
  margin-top: 10rem;

}

.left-cat{
  display: flex;
  flex-direction: column;
}

.cat-left{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  width: 80%;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cat-1 h1{
  font-size: 0.7rem;
}



.main-about{
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 10rem;
}




.blog-grid{
  display: grid;
  grid-template-columns:1fr;
  gap: 2rem;
  margin-block: 5rem;
  width: calc(100%);

}

.blog-1{
  display: flex;
  flex-direction: column;
  gap:0.6rem;
  border: 1px solid hsla(254, 100%, 56%, 0.2);
  border-radius: 1rem;
  width: 95%;
  height: 100%;
  margin-left: 0.3rem;

}

.blog-image-1{
  /* background: url(images/Blog-img/blog-3.jpg)center/cover no-repeat; */
  width: 100%;
  height: 300px;
  border-radius: 0.2rem;
  /* margin-inline: 1rem; */

}


.blog-image-2{
  /* background: url(images/Blog-img/blog-1.jpg)center/cover no-repeat; */
  width: 100%;
  height: 300px;
  border-radius: 0.2rem;
  /* margin-inline: 1rem; */
}


.blog-image-3{
  /* background: url(images/Blog-img/blog--2.jpg)center/cover no-repeat; */
  width: 100%;
  height: 300px;
  border-radius: 0.2rem;
  /* margin-inline: 1rem; */
}

.blog-dertails{
  margin-inline: 2rem;
}

.blog-dertails h1{
  margin-left: 5rem;
}

.blog-dertails p{
  font-size: 1rem;
}

.blog-title{
  padding-inline: 1rem;
  line-height: 1.5rem;
}

.blog-title p{
  font-size: 0.8765rem;
  margin-right: 1rem;
}

.blog-avt{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-inline: 1.2rem;
}

.blog-avt img:nth-child(1){
  width: 40px;
  height: 40px;
  border-radius: 100%;
}

.blog-avt-data{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 1rem;

 
}

.blog-avt-data-1{
  display: flex;
  gap: 0.3rem;
  align-items: center;
  margin-left: -1rem;
  justify-content: center;
}

.blog-avt-data-1 h1{
  font-size: 0.5rem;
}

.blog-avt-data-1 img{
  width: 20px;
  height: 20px;
}


.blog-avt-data-2{
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-left: -1rem;
  margin-top: -0.7rem;

}

.blog-avt-data-2 h1{
  font-size: 0.75rem;
  margin-left: -0.4rem;
}

.blog-avt-data-2 img:nth-child(1){
  width: 30px;
  height: 30px;
}
.avt-right-blog{
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-right: 2.3rem;
}

.avt-right-blog img{
  width: 20px;
  height: 20px;
}

.avt-right-blog h1{
  font-size: 0.75rem;
}
.main-call{
  filter: brightness(0.8);
}

.main-call h1{
  font-size: 2rem;
  font-weight: bold;
  color: #000bda;
}
.main-call p{
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
}


.trust-log h1{
  font-size: 1.4rem;
}

.main-qrcode{
  display: grid;
  grid-template-columns: 1fr;
  padding: 1rem;
}




.mainfre{
  display: grid;
  grid-template-columns:1fr;
  gap: 1rem;
}

.leftFre{
  display: flex;
  flex-direction: column;
  align-items: end;
}


.leftFre img{
  width: 100%;
  height: 400px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}


.main-contact{
  display: grid;
  grid-template-columns:1fr;
  gap: 1rem;
  margin-top: 10rem;
  
}

.main-contact h5{
  color: #000000;
}

.contDiv{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.cnt-1{
  display: flex;
  gap: 1rem;
  background-color: rgba(0, 209, 188, 0.926);
  padding: 1rem;
  border: 1px solid #0000001c;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.cnt-1 span{
  background-color:#7e7ee0;
  padding: 0.7rem;
  height: 45px;
  border-radius: 0.4rem;
  border: none;
}


.cnt-1div h1{
  font-size: 2rem;
}

.cnt-1div button{
  padding: 1rem 4rem;
  margin-top: 1rem;
  background-color: rgba(0, 209, 188, 0.926);
  border: 2px solid #000000;
  color: #000000;
  

}

.cnt-1div button:hover{
  background-color: #000bda;
  color: white;
  border: none;
}


.rightCnt{
  display: block;
  width: 90%;
  height: 400px;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  margin: 1rem;
}



/* about respobsive style */





.divabt h1{
  color: rgb(255, 255, 255);
  font-size: 2rem;
  text-align: center;
}
.divabt h2{
  color: rgb(255, 255, 255);
  font-size: 1em;
  text-align: center;
  margin-bottom: 0rem;
}

.flexAbout{
  display: flex;
  gap: 2rem;
  margin: 0 auto;
  max-width: 500px;
  flex-wrap: wrap;
  margin-top: 5rem;
}



.mainMission{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
}


.leftMis{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-right: 0rem;
  
 
}


.main-team{
  display: grid;
  grid-template-columns:1fr;
  gap: 2rem;
}



.main-team{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}


#h1-team{
  font-size: 2rem;
  margin-block: 10rem;
  text-align: center;
}


.testimonials-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  justify-content: center; 
}

.ourservice{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}



/* contaact page */

.master-Contact{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 400px;
  margin-top: 10rem;
  align-items: flex-start;
  justify-content: center;
  border: 1px solid #00000018;
  box-shadow: var(--shadow-sm);
padding: 1rem;
}



.sub-1{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000097;
  background: linear-gradient(to right, #508ef1, #047bb3);
  gap: 1rem;
  background: linear-gradient(to right, #f7971e, #ffd200);

  padding: 0.6rem 3rem;
  margin-inline: 1rem;
  width: 75%;
  color: white;
  border-radius: 0.4rem;
  margin-bottom: 0rem;
  text-wrap: nowrap;
}
.darkmode
.sub-1{
  background: linear-gradient(to right, #f953c6, #b91d73);
}



#cdb{
  background: linear-gradient(to right, #6f9fed, #047bb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
  margin-top: 2rem;
  margin-left: -4rem;
  font-size: 3rem;
  font-weight: bold;

}




.contact-heading {
  font-size: 1.8rem;
  font-weight: 700;
  white-space: wrap;
  line-height: 1.6;
  width: 85%;
  padding: 1rem;
}



.main-form1{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 10rem;
margin-bottom: 2rem;
padding: 0rem;
}




.lftForm{
  margin-inline: 0rem;
  padding: 1rem;
  border-radius: 0.4rem;
  background-color: #eeeef2;
  background: linear-gradient(to right, #f953c6, #b91d73);
  background: linear-gradient(to right, #f7971e, #ffd200);
  background: linear-gradient(to right, #43e97b, #38f9d7);
  background: linear-gradient(to right, #00c6ff, #0072ff);
  width: 100%;

}

.rgtForm{
  margin-inline: 0rem;
}

.lftForm button{
  padding: 1rem;
  margin-block: 1rem;
}
.inputDiv{
  display: flex;
  gap: 1rem;
  flex-direction: column;
}


.mainBlog{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: 5rem;

}




.mainBlog p{
  color: #006afd;
}


.search-ctn input{
  border: none;
  background-color: transparent;
  outline: none;
  padding-right: 10rem;
}


.topic-1{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}


.coming-soon {
  height: 120vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.coming-soon h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  
}

.coming-soon p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}



.countdown {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin: 20px 0;
  font-size: 1.5rem;
}


.newsletter {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}



#eml{
  padding: 15px 20px;
  margin-top: 1rem;
  border-radius: 0.4rem;
  outline: hidden;
  border: none;
  width: 350px;
}

.newsletter button {
  font-size: 1rem;
  border: none;
  background-color: #00a43c;
  color: white;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: background 0.3s ease;

}

.newsletter button:hover {
  background-color: #a31616;
}




.footer-section{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 10rem;
  width: calc(30%);
  padding: 1rem;
}

.one-line{
  display: none;
}

.footer-1{
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

}

.footer-1 img{
  width: 50%;
  height: auto;
}

.footer-1 h1{
  font-size: 1rem;
}

.footer-1 p{
  font-size: 1rem;
}

.footer-1 label{
  color: rgb(47, 0, 255);
 
}

.newsletter{
 margin-block: 0.5rem;

}
.newsletter input{
  padding: 0.5rem 1.5rem;
  border-radius: 0.2rem;
  font-size: 1;
  border: none;
  margin-right: 1rem;
}

.newsletter input:hover{
  background-color: #0F0A2B;
  border: 2px solid #2153FF;
  color: white;
}

.newsletter button{
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.2rem;
}

.newsletter button:hover{
  background-color: #0F0A2B;
  border: 2px solid #2153FF;
  color: rgb(0, 76, 255);
}

.footer-2{
  line-height: 2.5rem;
}
.footer-2 span{
  color: rgb(12, 0, 245);
  font-size: 1.2rem;
}


.footer-2 h1{
  font-size: 0.8765rem;
}

/* .footer-2 h1:hover{
 border-bottom: 2px solid #2153FF;
 width: 3.5rem;
 text-wrap: nowrap;
} */

.socail{
  display: flex;
  gap: 1rem;
  align-items: center;
}

.socail img{
  width: 2rem;
  height: 2rem;
  border: 2px solid #2153FF;
  border-radius: 1rem;

}




.last-footer{
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  margin-bottom:1rem;
}

.last-footer h1{
  font-size: 1rem;
  font-weight: 400;
  margin-bottom:1rem;
  margin-left: 5rem;
 
}



  }


@media screen and (max-width:1100px){
  .mainAbout, .buy-hero, .global, .rent-hero, .main-service {
    margin-top: 4rem;
  }


/*   
.mainBlog{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-top: 5rem;

}




.mainBlog p{
  color: #006afd;
}


.search-ctn input{
  border: none;
  background-color: transparent;
  outline: none;
  padding-right: 10rem;
}


.topic-1{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
} */


}
