

:root {

  --primary-color: #6366f1; /* Indigo */
  --secondary-color: #f43f5e; /* Rose */
  --bg-light: #f9fafb;
  --Lighttext-color: #000000;
  --darktext-color:white;
  --card-bg: #f3eded;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --radius: 0;
  --font-main: 'Poppins', sans-serif;
  --hoverbg :#555;
  --pSize:0.9rem;
  --border:2px dotted white;
}html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  box-sizing: border-box;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var();
  padding:15px 40px;
  line-height: 1.6;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  background: linear-gradient(to right, #0068d1, #ffffff 70%);
  /* Dot grid pattern using radial-gradient */
  background-image:
  radial-gradient(circle, #f5f9ff 4px, transparent 30px),
  radial-gradient(circle, #e6e9ec 4px, transparent 30px);
  background-position: 0 0, 20px 20px; /* offset second grid */
  background-size: 30px 30px; /* spacing of dots */


}
/* body scroll animation learn from youtube-------------------------------------------------- */
@keyframes ScrollAnn
{
  from{
    opacity: 0;
    scale: 0.5;
  }
  to
  {
    opacity: 1;
    scale: 1;
  }
}

.block
{
  animation: ScrollAnn  linear;
  animation-timeline: view();
  animation-range: entry 0 cover 30%;

}
/* body scroll animation end-------------------------------------------------- */
/* Animated cursor for all pages ---------------------------------*/
.cursor
{
  z-index: 999;
  background-color:transparent;
  backdrop-filter: blur(25px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  pointer-events: none;
  outline: 2px double white;
  border:1px double white;
  box-shadow: 0 0 4px #80ff00, 0 0 4px #f71599;
  position: absolute;
  transition:0.1s;
}
/* Animated cursor end  ---------------------------------*/


header
{
  overflow: hidden;
  height:100px;
  font-size: 3rem;
  font-style: italic;
  background-color:#6366f1;
  border-radius:var(--radius);
}.Logo
{
  height: 100px;
  width:25vw;
  background-color:transparent;
  padding: 0;
  font-size:20px;
  font-style: normal;
  color: white;
}.Logo img
{
  height:100px;
  width:100%;
}
/* For all pages's  Navbar ----------------------------------------------------------------------------------------------------------------------------*/

.topnav {
  overflow: hidden;
  background-color:var(--primary-color);
  height:100px;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  outline: none;
  border: none;
}

.active {
  background-color:transparent;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  padding-top:4px;
  padding-top:0px;


}

.dropdown .dropbtn {
  font-size: 17px;
  border: none;
  outline: none;
  color: white;
  padding: 18px 16px;
  background-color: inherit;
  font-family: inherit;
  border: none;
  outline: none;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color:var(--hoverbg);
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* navbar code end  here ------------------------------------------------------------------------------------------------------------------- */
/* whatsapp , inter , remove btns for all pages ----- */
 #btn1
{
  padding: 12px 12px;
  background-color: var(--primary-color);
  color: var(--card-bg);
  font-size: 1rem;
  position:fixed;
  top: 90%;
  right:12.5%;
  border-radius: var(--radius);
  border:var(--border);
  display: none;
}
 #btn2
{
  padding: 8px 15px;
  background-color:transparent;
  color:rgb(244, 72, 72);
  position:fixed;
  top: 82%;
  left: 82%;
  font-size: 1.5rem;
  font-weight: bolder;
  display: none;
  border-radius: 50%;
  border:var(--border);

} #btn1:hover
{
  background-color: var(--hoverbg);
}#btn2:hover
{
  background-color: var(--hoverbg);
}#whatsappbtn
{
  background-color:rgb(255, 255, 255);
  position:fixed;
  top: 85%;
  left:4%;
  height:60px;
  width:60px;
  font-size: 1.5rem;
 font-weight: bolder;
  display:block;
  border-radius: 50%;
  border:var(--border);
}#whatsappbtn img{
  height: 57px;
  width: 57px;
}#whatsappbtn:hover
{
  background-color: var(--hoverbg);
}#movebtn
{
  background-color:rgb(255, 255, 255);
  position:fixed;
  top: 85.5%;
  left:90%;
  height:60px;
  width:60px;
  font-size: 1.5rem;
  font-weight: bolder;
  display:none;
  border:var(--border);
  border-radius: 50%;
  padding:3.5px;
}#movebtn img{
  height:50px;
  width:50px;
}#whatsappbtn:hover
,#movebtn:hover
{
  background-color: var(--hoverbg);
}


.Footer
{
  height:auto;
  background-color:rgb(54, 51, 51);
  padding: 1.5rem 2rem;
  color: var(--bg-light);

}#quicklinks
{
  height:50px;
  margin-top:12px;
  padding: 1rem 0;

}.contact a

{
  color: white;
  padding: 2px 5px;
  text-decoration: none;
}

#quicklinks a
{
  color: var(--bg-light);
  text-decoration: none;
  display:inline;
  padding: 2rem 1rem 1rem 0;

}#quicklinks , #Sociallinks a:hover
{
  color: rgb(170, 167, 163);
}
#Sociallinks
{
  height:100px;
  padding: 1rem 1rem 1rem 0;
  margin-top: 12px;
}#Sociallinks a
{

  padding: 0.5rem 1rem 0.5rem 0;
  font-size: 30px;
  color: var(--bg-light);
}#CopyRight
{
  height:100px;


}


@media screen and (max-width:700px)
{
  body{
      padding:10px;
  }
  /* For all Mobile  Navbar ----------------------------------------------------------------------------------------------------------------------------*/

.Logo
{
  height: 80px;
  width: 100%;
  background-color:transparent;
  padding: 0;
}.Logo img
{
  height:80px;
  width:100%;
}
  .topnav {

  height:auto;
}


  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }  .topnav.responsive {
    position: relative;
    height:auto;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
 #btn1
{
  padding: 12px 12px;
  font-size: 1rem;
  top: 90%;
  right:10.5%;
}
 #btn2
{
  padding: 8px 15px;
  top: 80%;
  left: 70%;
  font-size: 1.5rem;


}#whatsappbtn
{
  top: 85%;
  left:10%;
  height:55px;
  width:55px;
}#whatsappbtn img{
  height:50px;
  width:50px;

}
#movebtn
{
  top:85%;
  left:77%;
  height:55px;
  width:55px;
}#movebtn img{
  height:45px;
  width:45px;
}
#quicklinks
{
  height: auto;
}
#quicklinks a
{

  padding:0.2rem 0.2rem;
  color: var(--bg-light);
  display: block;

}
#CopyRight
{
  height:100px;
  font-size:0.7rem;


}
}

@media screen and (min-width: 450px) and (max-width:1000px)
{
.Logo
{
  height: 100px;
  width:48vw;
}.Logo img
{
  height:100px;
  width:100%;
}#quicklinks a
{
  color: var(--bg-light);
  text-decoration: none;
  display:inline;
  padding: 2rem 1rem 1rem 1rem;


}
}
@media screen and (min-width: 701px) and (max-width:780px)
{
.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 15px;
  outline: none;
  border: none;
}

}


