@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --color-1: #0f1016;
  --text-color: #f0f0f0;
  --accent-color: #006aff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body, html {
  overflow-x: hidden;
}


html {
  font-size: 12pt;
  font-family: 'Poppins', Segoe UI, Tahoma, sans-serif;
}

nav {
  height: 60px;
  background-color: var(--color-1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.links-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
}

nav a {
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

nav a:hover {
  background-color: var(--accent-color);
}

nav .home-link {
  margin-right: auto;
}

nav svg {
  fill: var(--text-color);
}

#sidebar-active {
  display: none;
}

.open-sidebar-button, 
.close-sidebar-button {
  display: none;
}

/* Media Queries */
@media (width < 450px) {
  .links-container {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 10;
    width: 300px;
    background-color: var(--color-1);
    box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25);
    transition: 0.75s ease-out;
  }

  nav a {
    box-sizing: border-box;
    height: auto;
    width: 100%;
    padding: 20px 30px;
    justify-content: flex-start;
  }

  .open-sidebar-button, 
  .close-sidebar-button {
    padding: 20px;
    display: block;
  }

  #sidebar-active:checked ~ .links-container {
    right: 0;
  }

  #sidebar-active:checked ~ #overlay {
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;
  }

  .logo {
    
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    
}

h1 {
  font-family: sans-serif !important;
}



.text-center {

  font-size: 20px;

}

.ht {

  line-height: 5px;


}

  .actionbutton {
    position: absolute;
    background-color: rgb(2, 2, 2);
    justify-content: center;
    align-items: center;
    top: 34%;
    left: 15%;
    display: flex;
    flex-direction: row;
    color: white;
    width: 160px;
    height: 40px;
    border-radius: 18px;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    outline: none;
    border: 2px solid red;
  }

  .actionbutton:hover {
    background-color: darkblue;
    color: white;
  }


  .first-heading {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100% !important;
    height: 100% !important;
  
    /* Centering child elements */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    box-sizing: content-box;
    padding: 10px;
  }

  
  .first-heading > .first-button {
    color: #ffffff;
    height: 50px;
    background-color: rgb(233, 8, 8);
    font-size: 20px;
    font-weight:440; /* Removed invalid `px` */
    box-sizing: border-box;
  
    /* Ensure button content is centered */
    display: flex;
    justify-content: center;
    align-items: center;
  
    width: fit-content;
    padding: 10px 20px; /* Optional for better appearance */
    border: none; /* Optional: Remove default button border */
    border-radius: 5px; /* Optional: Rounded corners */
    cursor: pointer; /* Optional: Pointer cursor for better UX */
  }
  

  .color-change-2x {
    -webkit-animation: color-change-2x 2s linear infinite alternate both;
            animation: color-change-2x 2s linear infinite alternate both;
  }
  /* ----------------------------------------------
 * Generated by Animista on 2025-1-25 6:50:56
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation color-change-2x
 * ----------------------------------------
 */
@-webkit-keyframes color-change-2x {
  0% {
    background: #04fdfdf6;
  }
  100% {
    background: #05e0bc;
  }
}
@keyframes color-change-2x {
  0% {
    background: rgba(175, 102, 84, 0.239);
  }
  100% {
    background: #05e6ee3b;
  }
}

.vibrate-1 {
	-webkit-animation: vibrate-1 0.3s linear infinite both;
	        animation: vibrate-1 0.3s linear infinite both;
}
/* ----------------------------------------------
 * Generated by Animista on 2025-1-25 7:10:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation vibrate-1
 * ----------------------------------------
 */
 @-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-2px, 2px);
            transform: translate(-2px, 2px);
  }
  40% {
    -webkit-transform: translate(-2px, -2px);
            transform: translate(-2px, -2px);
  }
  60% {
    -webkit-transform: translate(2px, 2px);
            transform: translate(2px, 2px);
  }
  80% {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}


  .first-heading > .big {
    position: relative;
    top: 10%;
   color: rgb(51, 51, 51);
    border-radius: 24px;
    font-size: 30px;
    display: flex;
    justify-content: center;


  }

  .first-heading > .big1 {
    position: relative;
    top: 10%;
    color: rgb(51, 51, 51);
    border-radius: 24px;
    font-size: 30px;
    display: flex;
    justify-content: center;

  }

  .first-heading > span {
    color: rgb(51, 51, 51);
    font-weight: 450;
    top: 25%;
    margin-left: 10%;
    position: relative;
  }

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  position: fixed;
  z-index: 999;
  width: 100%;
  padding: 5px !important; /* Optional: Add padding for spacing */

}
#box1 {
 
  overflow-x: hidden;

}







#testimonials {

  display: flex;
  flex-direction: column;
  width: 100%;
  overflow-x: hidden !important;
  box-sizing: border-box !important; 
  padding-left: 0px !important;
  padding-right: 0px !important;
  


}

.open-sidebar-button{
  margin-left: 5px;
}
 
.logo {
  margin-left: 20px;
}


.-mr-48 {

 margin-right: 1px !important;
 padding: 1px !important;

}

.-ml-48 {

 width: 100% !important;
 margin: auto !important;
 margin-left: 0px;
 padding: 0px !important;
}

.normal-text {
 
font-size: 16px;
font-weight: 400;
line-height: 2;

right: 20px ;
color: #811603f6 !important;

}

.first-heading {
  padding: 6px !important;
  box-sizing: border-box;
  border: 2px solid rgb(255, 255, 255);


}

P {

  font-family: "Crimson Text", serif !important;
  font-weight: 500;
  font-style: normal !important;
  text-align: justify;



}

.card {

  position: relative;
  background: linear-gradient(180deg, #4771fa 0%, #eb0404 20%, #31a7e8 40%, #f3e200 60%, #ff57a3 80%, #e60073 100%);

  padding: 1rem; /* Add spacing inside the card */
  border-radius: 1rem; /* Smooth, rounded corners */
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15), 0 6px 6px rgba(0, 0, 0, 0.1); /* Add a soft shadow */
  overflow: hidden; /* Clip any overflowing child elements */

}

.card img {
  display: block;
  width: 100%;
  max-width: 100%; /* Set a max-width for the image */
  margin: 0 auto;
  border-radius: 1rem; /* Smooth corners for images */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Image shadow */
  padding: 0;
}




.leading-tight {

  font-family: "Roboto", serif;
  font-size: 35px !important;
  font-weight: 500;
  font-style: normal;
    "wdth" 100;
}

.name {

  font-family: 'Poppins', sans-serif; /* Modern font */
  font-size: 2rem; /* Large, attention-grabbing text */
  font-weight: 600; /* Slightly bold for prominence */
  color: #ffffff; /* White text color */
  text-align: center; /* Center-aligned text */
  background: linear-gradient(90deg, #6a11cb, #2575fc); /* Eye-catching gradient */
  -webkit-background-clip: text; /* Gradient applied to text */
  -webkit-text-fill-color: transparent; /* Make text transparent to show gradient */
  padding: 10px 20px; /* Add some padding for spacing */
  border: 2px solid rgba(255, 255, 255, 0.2); /* Subtle border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effects */
  display: inline-block; /* Ensure the element takes only the required space */
  cursor: pointer; /* Pointer cursor for interactivity */


}



.responsive-break {
  display: inline !important; /* Treat the <br> as inline for mobile */
  display: none !important;
}



}




@media (min-width: 721px) {
  .first-heading {
    position: absolute;
    top: 50%;
    left: 40%;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
  }

  .big,
  .big1 {
    font-size: 50px;
  }

  .normal-text {
    font-weight: 200;
    font-family: sans-serif ;
  }

  .first-button {
    margin: 5px;
    width: 14.5rem;
    height: 2.5rem;
    color: black;
    background-color: rgb(16, 17, 14);
    font-weight: 400;
    border-radius: 24px;
    border: none;
    outline: none;
    padding: 2px;
  }

  .carousel-inner {
    width: 100%;
    height: 720px;
    overflow: hidden;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

footer {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #f8f9fa;
  padding: 10px;
  text-align: center;
  border-top: 1px solid #ddd;
}

.about-us {
  display: flex;
  justify-content: center;
  font-weight: 400;
}

.logo::first-letter {
  font-family: "UnifrakturMaguntia", serif;
  font-weight: 400;
  font-style: normal;
}
.logo .second-letter {
  font-family: "UnifrakturMaguntia", serif;
  font-weight: 400;
  font-style: normal;
}
.logo .third-letter {
  font-family: "UnifrakturMaguntia", serif;
  font-weight: 400;
  font-style: normal;
}



.logo {
  font-size: 40px;
  font-family: 'Lato', sans-serif !important;
    font-weight: 400 !important;
}


.Half-text {

 
    font-family: "Noto Serif Todhri", serif !important;
    font-weight: 400 !important;
    font-style: normal !important;
  
  


}
.isolate {
  position: relative;
  margin: 2px;
}

.logo {
  color: white;
  font-size: 48px;
  font-weight: 600;
  align-items: center;
  margin-bottom: 4px;

}


.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  height: auto;
  padding: 0px !important;
}

.carousel {
  position: relative;
  margin-top: 4.5rem !important;
  border-radius: 500px !important;

}


@media (min-width: 450px) and (max-width: 720px) {
  





 

  .first-heading {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100% !important;
  height: 100% !important;

  /* Centering child elements */
  justify-content: center; /* Center vertically */
  align-items: center; /* Center horizontally */
}

.first-heading > .first-button {
  height: 50px;
  background-color: rgb(0, 0, 0);
  font-size: 20px;
  font-weight: 600; /* Removed invalid `px` */
  box-sizing: border-box;

  /* Ensure button content is centered */
  display: flex;
  justify-content: center;
  align-items: center;

  width: fit-content;
  padding: 10px 20px; /* Optional for better appearance */
  border: none; /* Optional: Remove default button border */
  border-radius: 5px; /* Optional: Rounded corners */
  cursor: pointer; /* Optional: Pointer cursor for better UX */
  color: rgb(255, 255, 255);
}



    .first-heading > .big {
      position: relative;
      top: 10%;
     color: rgb(51, 51, 51);
      border-radius: 24px;
      font-size: 30px;
      display: flex;
      justify-content: center;
      display: none !important;
  
    }
  
    .first-heading > .big1 {
      position: relative;
      top: 10%;
      color: rgb(51, 51, 51);
      border-radius: 24px;
      font-size: 30px;
      display: flex;
      justify-content: center;
  
    }
  
    .first-heading > span {
      color: rgb(51, 51, 51);
      font-weight: 450;
      top: 25%;
      margin-left: 0%;
      position: relative;
      justify-content: center;
      display: flex;
    }
    


  }



  @media (min-width: 721px) and (max-width: 920px) {
    .first-heading {
      position: absolute;
      top: 25%;
      left: 20%;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
  }
  
  
  .boxbox {
      
      
      background-color: white !important;
  }

  

  .big {

    font-size: 65PX !important;
   font-family: 'Crimson Text', serif;   
    font-weight: 300;
    color: rgb(4, 1, 44) !important;
  }
  .big1 {

    font-size: 27PX !important;
   font-family: 'Crimson Text', serif;   
    font-weight: 300;
    color: rgb(4, 1, 44) !important;
  }

  .heartbeat {
    -webkit-animation: heartbeat 1.5s ease-in-out infinite both;
            animation: heartbeat 1.5s ease-in-out infinite both;
  }

  /* ----------------------------------------------
 * Generated by Animista on 2025-1-25 6:20:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
