
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

  *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
  }
  :root{
    --bg-color:#e3edf7;
    --gradient-white-bg:linear-gradient(0deg,#fff 0%,#edf4fa 51%,#e5eef7 100%);
    --gradient-color-bg:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    --main-color:#e6006d;
    /* --font-color:#90979f; */
    --font-color:white;
    --hover-box-shadow:rgba(0,0,0,0.19)0px 10px 20px,
                       rgba(0,0,0,0.23)0px 6px 6px;     
    --gradient-white-bg2:linear-gradient(98deg,#e5eef7 0%,#fff 100%);
  }
  a{
    text-decoration: none;
    color:white;
  }
  html, body {
    overflow-x: hidden;
  }
  body{
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
    
  }
  header{
    position: fixed;
    padding: 15px 8%;
    height: 77px;
    width: 100%;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: black;
    border-bottom: 1px solid white;
    /* background: var(--gradient-white-bg); */
    z-index: 100;
    /* transition: .3s; */
   
  }
  header .logo{
    font-size: 1.7rem;
    font-weight: 700;
    animation: slideRight 1s ease forwards;
  }
  header .logo img{
    /* left: 60px; */
    position: relative;
    top: 4px;
    width:70px ;
    height: 70px;
  }

  header span{
    background:var(--gradient-color-bg);
    -webkit-background-clip: text;
    color: transparent;
  }
  header .navlist{
    display: flex;
  }
  .navlist li{
    margin: 0 1rem;
  }
  .navlist li a{
    display: inline-flex;
    font-weight: 600;
    /* animation: slideNav 3s ease forwards; */
  
  }
  .navlist li a:hover{
    background:var(--gradient-color-bg);
    -webkit-background-clip: text;
    box-shadow: rgba(255, 237, 237, 0.19)0px 2px 4px,
    rgba(255, 255, 255, 0.23)0px 6px 6px;
    color: transparent;
   
  }

  .right-header{
    display: flex;
    align-items: center;
    justify-content: end;
    grid-gap: .8rem;
    animation: slideNav 4s ease forwards;
  }
  .btn{
    background:var(--gradient-color-bg);
    color: white;
    padding: 8px 10px;
    border-radius: 6px;
    font-weight: 500;
    transition:  all .3s ease;
}

  
  .btn:hover,.btn-box .d-CV:hover{
    box-shadow: rgba(255, 237, 237, 0.19)0px 2px 4px,
    rgba(255, 255, 255, 0.23)0px 6px 6px;
  }
 .menu-icon{
 position: relative;
 display: block;
 height: 30px;
 width: 30px;
 cursor: pointer;
 /* background-color: blue; */
 }

 .menu-icon .bar,
 .menu-icon::after,
 .menu-icon::before{
    content: "";
    display: none;
    width: 100%;
    height: 4px;
    border-radius: 3px;
    background: white;
    margin: 6px 0;
    transition: .4s;
 }
.menu-icon.active::before{
    transform: rotate(-45deg) translate(-6px,6px);
}
.menu-icon.active::after{
    transform: rotate(45deg)translate(-8px,-8px);
}
.menu-icon.active .bar{
    opacity: 0;
}




/* ===========>>>>>>>>>>>>  Section home design<<<<<<<<<<<========== */

section{
    padding: 90px 8%;
    
}
.home{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    grid-gap: 4em;
    /* background: rgb(23, 22, 22); */
    background-image: url('/home1.jpg') ;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.9;
    
}



.hero-info{
    margin-top: 3rem;
}
.hero-info h3{
color: var(--font-color);
font-weight: 600;
text-transform: uppercase;
font-size: 1.1rem;
animation: slideTop 1s ease forwards;
}
.hero-info h1{
    font-size: 3rem;
    color: white;
    animation: slideBot 2s ease forwards;
}

.text-animate{
    width: 22.8rem;
    position: relative;

}
.text-animate h2{
font-size: 2rem;
font-weight: 700;
margin-bottom: 1rem;
color: transparent;
-webkit-text-stroke: 0.05vw white;
background: var(--gradient-color-bg);
background-repeat: no-repeat;
-webkit-background-clip: text;
background-position: 0 0;
transition: .6s;
letter-spacing: 2px;
animation: moveText 3s linear infinite;
animation-delay: 2s;
animation: slideTop 1s ease forwards;
}

.text-animate h2::before{
    content: "";
    position: absolute;
    top: 7px;
    left: -3px;
    width: 0;
    height: 70%;
    border-right: 2px solid var(--main-color);
    animation: moveCursorText 3s linear infinite;
    animation-delay: 2s;
}
.hero-info p{
 font-size: 1rem;
 color: var(--font-color);
 line-height: 1.5rem;
 animation: slideBot 2s ease forwards;
}
.btn-box{
    display: flex;
    justify-content: space-between;
    width: 350px;
    margin-top: 2rem;
    margin-bottom: 5rem;
}
.btn-box .btn{
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  transition: .3s ease;
  animation: slideRight 1s ease forwards;
}

.btn-box .d-CV{
    background: var(--gradient-white-bg2);
    padding:10px;
    border-radius:5px ;
    font-weight: 500;
    color: #000;
    box-shadow: rgb(60,64,67,0.19);
    animation: slideRight 1s ease forwards;
}
.social-media{
    /* border: 2px solid red; */
    display: flex;
    justify-content: space-between;
    width: 200px;
    height: 45px;
    animation: slideRight 1s ease forwards;
}
.social-media a{
   width: 42px;
   height: 42px;
   font-size: 1.5rem;
   color: var(--main-color); 
   border-radius: 50%;
   background: #fff;
   display: inline-flex;
   justify-content: center;
   align-items: center;
   transition: .4s;
   z-index: 1;
   animation: slideRight 1.5s ease forwards;
}


.social-media a:hover{
    background: var(--gradient-color-bg);
    color: white;
}
.bg-icon{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-icon span{
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: animate 1s linear infinite;
}
.img-hero{
    position: relative;
    animation: floatImage 4s ease-in-out infinite;
    animation-delay: 3s;
}

.img-hero img{
    position: relative;
    top: 70px;
    border-radius: 50%;
    width: 400px;
    height: auto;
    z-index: 10;
    animation: ZoomIn 1s ease forwards;
}

.rotate-text{
    position: absolute;
    top: 4%;
    left: -53px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
    animation: ZoomIn 1s ease forwards;
}

.rotate-text span{
    position: relative;
    width: 442px;
    height: 442px;
    background: red;
    border: 6px solid #eaeef0;
    border-radius: 50%;
    z-index: 1;
    overflow: hidden;
}

.rotate-text span::before{
    content: "";
    position: absolute;
    inset: 20px;
    background: #00aaff;
    border-radius: 50%;
    z-index: 1;
}

.rotate-text span i{
    position: absolute;
    inset: 0;
    background: var(--gradient-color-bg);
    filter: blur(5px);
    animation: animate 2s linear infinite;
}


.rotate-text .text{
    position: absolute;
    width: 490px;
    height: 490px;
    background: #f2f6fb;
    border-radius: 50%;
    box-shadow: 0 1px 6px 5.94px rgba(0,0,0,0.2);
    animation: rotateText 30s linear infinite; /* click to stop animation*/
}

.text b{
    /* border: 2px solid red; */
    position: absolute;
    transform-origin: 0 247px;
    display: block;
    padding: 5px;
    top: 0;
    left: 50%;
    font-size: 1rem;
}

/* =================  Sale website ================== */

.card {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-image: url('img/Untitled\ design.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  
}
.gallery:hover {
  transform: scale(1.05) rotateY(5deg);
}
.gallery {
  transition: transform 0.3s ease-in-out;
  flex: 1 1 calc(30% - 20px);
  max-width: 30%;
  border-radius: 20px;
  box-shadow: rgb(0, 0, 0) 0px 5px 3px, rgb(0, 0, 0) 0px 15px 15px;
}

.gallery img {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: 300px; /* Adjust height as per your design */
  padding: 10px;
  border-radius: 20px;
  object-fit: cover; /* Ensures the image doesn’t stretch */
}
 

.inf {
  color: rgb(0, 0, 0);
  padding: 10px;
  text-align: center;
}
.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.buttons button {
  flex: 1;
  margin: 0 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  background-color: #ff991c;
  color: white;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s;
  text-align: center;
}

.buttons button:first-child {
  margin-left: 0;
}

.buttons button:last-child {
  margin-right: 0;
}

.buttons button:hover {
  background-color: #b96600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gallery {
    flex: 1 1 calc(45% - 20px);
    max-width: 45%;
  }

  .gallery img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .gallery {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .gallery img {
    height: 180px;
  }
}

/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #fff;
}


/* Video Container */
.video-container {
    border: 2px solid red;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Overlay on Top of Video */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark background for text contrast */
}

/* ============== About Section with Video Background ============== */



.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    background-image: url('/aboutimg.jpg') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: white;
  }
  .about .about-img {
    position: relative;
    
  }
  
  .about .about-img .aboutHero {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 40vw;
    height: 480px;
    border-radius: 5px;
    border-top-right-radius: 40px;
    border-bottom-left-radius: 40px;
    /* border: 2px solid green; */
  }
  .about .about-content h2 {
    color: var(--main-color);
  }
  .about .about-content h3 {
    font-size: 2rem;
    line-height: 3rem;
    margin: 0.5rem 0;
    padding-bottom: 5px;
  }
  .about .about-content p {
    color: var(--font-color);
  }
  .text-box p {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1rem;
    font-weight: 500s;
  }
  .cvConttent {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    transition: 0.3s ease;
  }
  
  .btn-box .d-CV {
    background: var(--gradient-white-bg2);
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    color: #000;
    box-shadow: rgb(60, 64, 67, 0.19);
  }
  

/* About Content */
.about-content {
    position: relative;
    max-width: 700px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    color: #fff;
    animation: fadeIn 1.5s ease-in-out;
}

/* Heading */
.about-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

/* Paragraph */
.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    text-align: justify;
}

/* ===============================
   Mobile and Tablet Responsiveness
================================ */

/* Tablet View (up to 1024px) */
@media (max-width: 1024px) {
    .about-section {
        padding: 20px 10px;
        flex-direction: column;
        height: auto;
    }

    .about-content {
        padding: 20px;
        width: 90%;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* Mobile View (up to 768px) */
@media (max-width: 768px) {
    .about-section {
        height: auto;
        padding: 10px;
    }

    .about-content {
        padding: 15px;
        width: 95%;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-content p {
        font-size: 14px;
        text-align: center;
    }
}

/* Small Mobile View (up to 480px) */
@media (max-width: 480px) {
    .about-section {
        padding: 10px;
    }

    .about-content {
        width: 100%;
        padding: 10px;
    }

    .about-content h2 {
        font-size: 20px;
    }

    .about-content p {
        font-size: 12px;
    }
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ==================>>>>>section <<<<<<============= */
.services{
    color: white;
    background-image: url('/abb.jpg') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}
.main-text{
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
}
.main-text .heading{
    color: var(--main-color);
}
.main-text span{
    color: var(--gradient-white-bg2);
    text-transform: uppercase;
    font-weight: 200;
}
.allServices{
   
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,auto));
    align-items: center;
    gap: 2rem;
    z-index: 1;
}
.serviceItem{
    /* height: 240px; */
    box-shadow: rgba(255,255,255,0.1)0px 4px 3px 0,
                  rgba(255,255,255,0.6)0px 1px 2px 0;
    padding:2rem 1rem;
    border-radius: 10px;
    background-color: var(--gradient-white-bg2);
    text-align: center;
}
.icon-services{
    position: relative;
    display: inline-flex;
    top: 2px;
}
.icon-services i{
    box-shadow: rgba(255,255,255,0.1)0px 4px 3px 0,
                  rgba(255,255,255,0.6)0px 1px 2px 0;
    padding: .5rem;
    border-radius: 50%;
    background: var(--gradient-color-bg);
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    transition: .3s;
    z-index: 1;
}
.icon-services:hover i{
    outline: 1px solid var(--main-color);
    transform: scale(1.1);
}
.icon-services span{
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--gradient-color-bg);
    border-radius: 50%;
    left: -5px;
    top: -5px;
    animation: animate 1s linear infinite;
    /* border-radius: 50%; */
}
.serviceItem h3{
    margin: 1rem 0 0 0.5rem;
}
.serviceItem p{
    padding: 5px;
    margin-bottom:1.5rem;
    font-size: 16px;
    color: var(--font-color);

}
.serviceItem .readMore{
    background: var(--gradient-white-bg2);
    color: black;
    box-shadow:rgba(255,255,255,0.9)0px 4px 3px 0,
    rgba(255,255,255,0.9)0px 1px 2px 0; 
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight:500 ;
    margin-right: .8rem;
    cursor: pointer;
    
}

/* =============>>>>proposal<<<<<<<<<<<============= */

.proposal{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: var(--gradient-white-bg2);
    color: black;
   margin-top: 8rem;
   border-radius: 10px;
   padding: 0rem 2rem;
   z-index: 1;
   box-shadow: rgba(255, 237, 237, 0.19)0px 20px 20px,
   rgba(255, 255, 255, 0.23)0px 6px 6px;
}
.proposal img{
    width: 40VW;
    height: auto;
    margin: -4rem 0 0;
    z-index: 2;
}
.services .text-box span{
    font-size: 1.2rem;
    font-weight: 600;
}
.services .text-box h3{
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    font-weight: 800;
}

.services .text-box .btn{
    padding: 10px 20px;
}
/* =============== pricing table ====================== */
.pricetable{
  background-image: url('/pp.jpg') ;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
} 
.wrapper{
    
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-gap: 15px;
    margin: 0px;
    padding: 20px 20px;
    

}
.pricing-table{
   box-shadow: 0px 0px 9px #ccc;
   text-align: center;
   padding: 30px 0px;
   border-radius: 5px;
   position: relative;
   background-image: url('/ab.jpg') ;
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center;
}
.pricing-table .head {
    border-bottom:1px solid #eee;
    padding-bottom: 50px;
    transition: all 0.5s ease;
}
.pricing-table:hover .head{
   border-bottom:1px solid #8E2DE2;
   
}
.head h4{
    color: white;
}
.pricing-table .head .title{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
}

.pricing-table .content .price{
    background:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    width: 90px;
    height: 90px;
    margin: auto;
    line-height: 90px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px #ccc;
    margin-top: -50px;
     transition: all 0.5s ease;
}
.pricing-table:hover .content .price{
    transform: scale(1.2);
 
}
.pricing-table .content .price h1{
    color:#fff;
    font-size: 30px;
    font-weight: 700;
}
.pricing-table .content ul{
   list-style-type: none;
   margin-bottom: 20px;
   padding-top: 10px;
}

.pricing-table .content ul li{
    margin: 20px 0px;
    font-size: 14px;
    color:#ffffff;
}

.pricing-table .content .sign-up{
    background:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    border-radius: 40px;
    font-weight: 500;
    position: relative;
    display: inline-block;
}


.pricing-table .btn1 {
	color: #fff;
	padding: 14px 40px;
	display: inline-block;
	text-align: center;
	font-weight: 600;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	border: none;
	font-size: 14px;
	text-transform: capitalize;
	position: relative;
	text-decoration: none;
    margin: 2px;
    z-index: 9999;
    text-decoration: none;
    border-radius:50px;
 
}

.pricing-table .btn1:hover{
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
}

.pricing-table .btn1.bordered {
	z-index: 50;
	color: #333;
}
.pricing-table:hover .btn1.bordered{
	color:#fff !important;
}

.pricing-table .btn1.bordered:after {
	background: #fff none repeat scroll 0 0;
	border-radius: 50px;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3 linear;
	transition: all 0.3 linear;
	width: 100%;
	z-index: -1;	
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	transform:scale(1);
}
.pricing-table:hover .btn1.bordered:after{
	opacity:0;
	transform:scale(0);
}

@media screen and (max-width:768px){
   .wrapper{
        grid-template-columns: repeat(2,1fr);
    } 
}

@media screen and (max-width:600px){
   .wrapper{
        grid-template-columns: 1fr;
    } 
}


/* ============== Youtbe video section ======================== */



.heading-3d {
    text-align: center;
    font-size: 2.5em;
    color: #ffffff;
    margin-bottom: 30px;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #c400a3, #6019a3);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    transform: perspective(500px) rotateX(10deg) rotateY(-10deg);
    transition: transform 0.3s ease;
  }

  .heading-3d:hover {
    transform: perspective(500px) rotateX(0deg) rotateY(0deg);
  }

  .video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
  }

  .video-card {
    background: rgba(255, 255, 255, 0.215);
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
    transition: transform 0.3s ease;
    width: auto;
  }

  .video-card:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  }

  .video-title {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 10px;
    font-weight: bold;
    
    color: #333;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
  }

  .video-wrapper {
      
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
  }

  .video-wrapper iframe {
     
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  /* Responsive improvements */
  @media (max-width: 500px) {
    .heading-3d {
      font-size: 2em;
      padding: 8px 16px;
    }

    .video-card {
      transform: none;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      padding: 10px;
    }

    .video-title {
      font-size: 1em;
    }
  }



/* ============================  FAQ ================================ */

.faqs-container {
    margin: 0 auto;
    max-width: 100%;
    padding: 10px;
  
  }
  
  .faq {
    /* background-color: transparent; */
    border: 1px solid #9FA4A8;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
    transition: 0.3s ease;
    background-image: url('/ab.jpg') ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  
  .faq.active {
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1), 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .faq.active::after, .faq.active::before {
    color: #2ecc71;
    content: '\f075';
    font-family: 'Font Awesome 5 Free';
    font-size: 7rem;
    position: absolute;
    opacity: 0.2;
    top: 20px;
    left: 20px;
    z-index: 0;
  }
  
  .faq.active::before {
    color: #3498db;
    top: -10px;
    left: -30px;
    transform: rotateY(180deg);
  }
  
  .faq-title {
    color: white;
    margin: 0 35px 0 0;
  }
  
  .faq-text {
    color: white;
    display: none;
    margin: 30px 0 0;
  }
  
  .faq.active .faq-text {
    display: block;
  }
  
  .faq-toggle {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 0;
    position: absolute;
    top: 30px;
    right: 30px;
    height: 30px;
    width: 30px;
  }
  
  .faq-toggle:focus {
    outline: none;
  }
  
  .faq.active .faq-toggle {
    background-color: #9FA4A8;
  }
  
  .faq-toggle .fa-times {
    display: none;
  }
  
  .faq.active .faq-toggle .fa-times {
    display: block;
  }
  
  .faq-toggle .fa-chevron-down {
    color: #83888E;
  }
  
  .faq.active .faq-toggle .fa-chevron-down {
    display: none;
  }
  
  @media screen and (max-width: 480px) {
  
    .social-panel-container.visible {
      transform: translateX(0px);
    }
    
    .floating-btn {
      right: 10px;
    }
  }

/*  ============================= footer ================================= */

footer{
    background: url(/footbg.jpg); 
    background-repeat: no-repeat;
    background-blend-mode: overlay;

    background-size: cover;
    background-position: center;
    width: 100%;
    color:white;
    /* background: rgb(68, 67, 67); */
    padding: 50px 0 30px;
    font-size: 13px;
    line-height: 20px;
}
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}
.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}
.footer_logo{
    width: 80px;
    position: relative;
    top: -18px;
    left: 0px;
    padding-bottom: 20px;
}
.footer_about{
    position: relative;
    top: -23px;
}
.col h3{
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}
.footer_email{
    width: fit-content;
    border-bottom: 1px solid white;
    margin: 20px 0;
}
.col ul li{
    list-style: none;
    margin-bottom: 12px;
}
.col ul li a{
    text-decoration: none;
    /* color: #fff; */
    color:white;
}
.col form{
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border-bottom: 1px solid #fee140; */
    border-bottom: 1px solid white;
    margin-bottom: 50px;
}
.col form .icon{
    font-size: 18px;
    margin-right: 10px;
}
.col form input{
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}
.col form button{
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}
.col form button .icon_right{
    font-size: 16px;
    color: #ccc;
}
.col .social_icons .social_icon{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #fff;
    background:#a27b5c;
    margin-right: 15px;
    padding: 5px;
    cursor: pointer;
}
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid white;
    margin: 0px auto;
}
footer .copyright{
    text-align: center;
}
.bottom_line{
    width: 100%;
    height: 5px;
    background: #ffffff;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}
.bottom_line span{
    width: 15px;
    height: 100%;
    /* background: #fee140; */
    background: #000000;
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: 10px;
    animation: moveline 2s linear infinite;
}
@keyframes moveline{
    0%{
        left:-20px;
    }
    100%{
        left:100%;
    }
}

@media screen and (max-width: 866px) {
  .col{
    flex-basis: 110%;
    padding: 10px;
}
.bottom_line  ul{
  display: flex;
}
.footer_logo{
  top:-67;
  left: 80px;
}
.footer_about{
  top:-10px;
}

}
/* @keyframes  MoveText animation  */

@keyframes moveText{
    0%,10%,100%{
        background-position: -24rem 0;
    }
    65%,85%{
        background-position: 0rem 0;
    }
}
@keyframes moveCursorText{
    0%,10%,100%{
        width:0;
    }
    65%,78%,85%{
        width: 100%;
        opacity: 1;
    }
    75%,85%{
        opacity: 0;
    }
}
@keyframes animate{
0%{
    transform: rotate(0deg);
}
100%{
    transform:rotate(360deg) ;
}
}

@keyframes rotateText{
    0%{
        transform: rotate(360deg);
    }
    100%{
        transform:rotate(0deg) ;
    }
    }





    /* keyframe animation on page  */
    
    @keyframes slideRight{
        0%{
            transform: translateX(-100px);
            opacity: 0;
        }
        100%{
            transform: translateX(0);
            opacity: 1;
        }
    }

/* animation on home sction */
      
    @keyframes  slideLeft{
        0%{
            transform: translateX(100px);
            opacity: 0;
        }
        100%{
            transform: translateX(0);
            opacity: 1;
        }
    }
/* animation on navbar */
    @keyframes  slideNav{
        0%{
            transform: translateY(100px);
            opacity: 0;
        }
        100%{
            transform: translateY(0);
            opacity: 1;
        }
    }
    /* animation on home sction */
     @keyframes  slideTop{
        0%{
            transform: translateY(100px);
            opacity: 0;
        }
        100%{
            transform: translateY(0);
            opacity: 1;
        }
    }
    /* animation on home sction */
    @keyframes  slideBot{
        0%{
            transform: translateY(-100px);
            opacity: 0;
        }
        100%{
            transform: translateY(0);
            opacity: 1;
        }
    }

    /* for img Zoom */

    @keyframes  ZoomIn{
        0%{
            transform: scale(0);
            opacity: 0;
        }
        100%{
            transform:scale(1);
            opacity: 1;
        }
    }
