/*=========================== Global Part ===================*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat&family=Titillium+Web:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}
body{
  color: aqua;
  background: black;
}
/*=========================== Menu/Navbnar Part ==================*/
.nav-container{
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar {
  background: #000000;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  z-index: 1;
}
.logo img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: hbeat 2s linear infinite;
}
.navbar a {
  text-decoration: none;
  color: #ffffff;
}
.navbar ul {
  list-style: none;
}
.menu-items {
  display: flex;
  align-items: center;
}
.menu-items li {
  padding: 0.5rem 1rem;
  transition: 0.3s ease-in-out;
}
.menu-items li:hover {
  background-color: #ff652f;
}
.menu-items .active{
  background: #ff652f;
  padding: 5px 15px;
  border-radius: 30px;
  display: inline-block;
}
/*---------------------- Mega Menu Part -----------------------*/
.mega-menu {
  position: absolute;
  left: 0;
  width: 100%;/*are for edit*/
  top: 80px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mega-menu .content {
  background: #122331;
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
  justify-content: space-between;
}
.service .content{
  grid-template-columns: repeat(4, 1fr);
}
.expandable .col-3{
  grid-template-columns: repeat(2, 1fr);
}
.expandable .col h2{
  text-align: center;
}
.col-3 h2{
  text-align: center;
}
.col-3 .mega-links{
  display: grid;
  justify-content: center;
}
.blog .content {
  grid-template-columns: repeat(3, 1fr);
}
.content .col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  line-height: 2.4rem;
}
.content .col .img-wrapper {
  display: block;
  position: relative;
  width: 100%;
  height: 17vw;
  overflow: hidden;
}
.content .col .img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.content .col img {
  width: 100%;
  height: 90%;
  transition: transform 0.3s ease-in-out;
}
.content .col .img-wrapper:hover img {
  transform: scale(1.2);
}
.content .col h2 {
  color: goldenrod;
  font-size: 1.2rem;
  line-height: 3rem;
  font-weight: bold;
}
.content .col p {
  margin-top: 10px;
  color: gold;
  line-height: 1.3rem;
}
.content .col .mega-links {
  border-left: 1px solid #1ea55d;
} 
.content .ex-col .mega-links{
  border-left: none;
}
.content .col .read-more {
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: white;
  background: #1ea55d;
  width: 35%;
  margin: 15px auto;
  transition: color 0.3s ease;
  border-radius: 3px;
}
.col .mega-links li,
.col .mega-links li a {
  padding: 0 1rem;
}
.menu-items li:hover .mega-menu {
  top: 60px;
  opacity: 1;
  visibility: visible;
}
.content .col .read-more:hover {
  color: green;
}
/*----------- Navbar Button ----------------*/
.menu-btn {
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  z-index: 2;
}
.menu-btn__lines::before,
.menu-btn__lines::after {
  content: "";
  position: absolute;
}
.menu-btn__lines,
.menu-btn__lines::before,
.menu-btn__lines::after {
  width: 1.5rem;
  height: 0.1rem;
  background: gold;
  transition: all 0.5s ease-in-out;
}
.menu-btn__lines::before {
  transform: translateY(-0.5rem);
}
.menu-btn__lines::after {
  transform: translateY(0.5rem);
}
/*------------------------ Animation ----------------------*/
.menu-btn.open .menu-btn__lines {
  transform: translateX(2rem);
  background: transparent;
}
.menu-btn.open .menu-btn__lines::before {
  transform: rotate(45deg) translate(-1.5rem, 1.5rem);
  background: #ffffff;
}
.menu-btn.open .menu-btn__lines::after {
  transform: rotate(-45deg) translate(-1.5rem, -1.5rem);
  background: #ffffff;
}
/*----------------------- MEDIA QUERY ---------------------*/

@media screen and (max-width: 850px) {
  .menu-btn {
    display: flex;
  }
  .logo img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  .home-item{
    margin-top: 30px;
  }
  .navbar .menu-items {
    position: absolute;
    height: 100vh;
    width: 100%;
    /* max-width: 350px; */
    top: 0;
    right: 0;
    background: #27005D;
    display: block;
    padding: 1rem;
    line-height: 2rem;
    overflow-y: auto;
    transform: translateY(-100vh);
    transition: transform 0.3s ease-out;
    z-index: -1;
  }
  .menu-items.open {
    opacity: 1;
    transform: translateY(0);
  }
  .menu-items li {
    margin: 15px 10px;
  }
  .menu-items li a {
    padding: 0 1rem;
    display: block;
    font-size: 1.4rem;
  }
  .menu-items li:hover {
    background-color: transparent;
  }
  .menu-items .mega-menu {
    position: static;
    opacity: 1;
    top: 4rem;
    visibility: visible;
    padding-left: 1rem;
    width: 100%;
    max-height: 0;
    transform: scaleY(0);
    transform-origin: top;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .expand-btn.open + .expandable {
    max-height: 100%;
    transform: scaleY(1);
  }
  .expandable li {
    margin: 0;
  }
  .expandable li a {
    font-size: 1rem;
  }
  .mega-menu .content {
    grid-template-columns: auto;
    padding: 1rem 1rem 0 1rem;
  }
  .mega-menu .content .col {
    width: 100%;
    padding-top: 1rem;
    /* margin-bottom: 1rem; */
    border-top: 2px solid #1d762c;
  }
  .mega-menu .content .col:nth-child(1) {
    border-top: 0px;
  }
  .content .col .mega-links {
    border-left: 0px;
    padding-left: 1rem;
    /* border-top: 1.2px solid #1ea55d; */
  }
  .content .col .read-more {
    font-size: 15px;
    border-radius: 3px;
  }
  .col .mega-links li {
    margin: 0;
  }
}
/* ======================= HERO Section ========================= */
.hero-typing-wrapper{
  display: flex;
  gap: 1vw;
  background: black;
}
.hero-typing-1{
  display: flex;
  justify-content: end;
  width: 28%;
  background: black;
  color: yellow;
  padding: 4vw 0;
  font-size: 5vw;
}
.hero-typing-2{
  width: 72%;
  background: black;
  color: aqua;
  padding: 4vw 0;
  font-size: 5vw;
}
/* #1C3D31 #1F4132 #4D653E #93994E #4E663D */
.header{
  background: linear-gradient(rgba(4,9,30, 0.8), rgba(59, 63, 16, 0.5));
}
.banner{
  display: grid;
  grid-template-columns: 2fr 1fr;
  place-items: center;
  align-content: center;
  gap: 35px;
  padding: 80px 0 40px 60px;
  height: 60vh;
  /* text-align: center; */
}
.banner-img img{
  width: 250px;
  height: 250px;
  border-radius: 50%;
  animation: hbeat 4s linear infinite;
}
svg {
    width: 100%;
    height: 20vh;
}
.banner h2 {
    color: yellow;
    font-weight: 500;
    font-size: 30px;
    margin: 0 0 20px;
    animation: heart 2s linear infinite;
}
.banner p {
    margin: 0 0 20px;
    line-height: 1.8;
    font-size: 17px;
}
.banner button{
  /* background: linear-gradient(45deg, #AAAA54, #4D653D); */
  background: #12d923;
  color: #000;
  padding: 8px 25px;
  font-size: 16px;
  border-radius: 30px;
  border-top-right-radius: 0;
}
.banner button:hover{
  background: darkorange;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0;
  transition: 0.5s ease-in-out;
  scale: 1.1;
}
.waves > use {
    animation: move-forever 2s -2s linear infinite;
}
.waves > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 6s;
}
.waves > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 3s;
} 
@media (max-width:960px) {
  .banner{
    height: 75vh;
    grid-template-columns: 1fr;
    padding: 80px 30px 30px;
    gap: 0;
  }  
  .banner-img img{
    width: 150px;
    height: 150px;
  }
  .banner h2{
    font-size: 20px;
    margin-top: 30px;
  }
}
@media (max-width:480px) {
  .banner{
    height: 85vh;
    padding: 80px 15px 15px;
  } 
}
@keyframes move-forever {
0% {
    transform: translate(-90px, 0%);
}
100% {
    transform: translate(85px, 0%);
}
} 
/* ===================== Moving Text Section ========================== */
.muv-container{
  background: rgb(187, 176, 159);
  padding: 60px 0 60px 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
}
#muv-text {
  height: 60vh;
  overflow: hidden; /* Horizontal scroll-bar removed.*/
  white-space: nowrap; /* Remove it for interval visibility.*/
  background: rgb(187, 176, 159);
}
.muv-con {
  /* white-space: nowrap; */
  display: inline-block;
  animation-name: on-going;
  animation-duration: 25s;
  animation-timing-function: linear; /* Change this 'linear' value for 'stop & begin' effect*/
  animation-iteration-count: infinite;
}
#muv-text h2 {
  font-size: 10vw;
  display: inline-block;
}
.muv-container P {
  padding: 3vw 2vw;
  color: aqua;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.9;
  background-image: linear-gradient(rgba(4,9,30, 0.5), rgba(4,9,30, 0.5)), url(images/access.png);
  background-position: center;
  background-size: cover;
}
#bindu {
  height: 7vw;
  width: 7vw;
  border-radius: 50%;
  display: inline-block;
  background-color: #afff02;
  margin: 180px 5vw -0.5vw; /* 1-top, 2-left & right, 3-bottom*/
}
@keyframes on-going {
  from {
      transform: translateX(0);
  }
  to {
      transform: translateX(-100%);
  }
}
@media (max-width: 850px) {
.muv-container {
  height: 100vh;
  grid-template-columns: 1fr; 
  padding: 10px 10px 10px;
}
#muv-text {
  height: 25vh;
}
#muv-text h2 {
  font-size: 15vw;
}
#bindu {
  margin: 75px 5vw 0; /* 1-top, 2-left & right, 3-bottom*/
}
.muv-p{
  margin-top: -50px;
  order: 2;
}
}
/* ===================== SERVICE Section ========================== */
.service-container {
  text-align: center;
  background: #4f2102;
}
.service-container h2{
  display: inline-block;
  margin: 2rem 0;
  background: linear-gradient(45deg, #7a140e, #a35c06);
  box-shadow: 0 0 20px 0px rgba(221, 236, 5, 0.3);
  color: #e4f30e;
  padding: 1rem 5rem;
  border-radius: 0.5rem;
}
.service-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 1rem 4rem 2rem 4rem;
}
.service-item {
  color: #d8e4d7;
  padding: 1rem 4rem 4rem 4rem;
  border-radius: 8px;
  background: linear-gradient(45deg, #000000, #120e62);
  box-shadow: 0 0 20px 0px rgba(234, 234, 16, 0.4);
  /* box-shadow: inset 0px -6px 25px 34px rgba(0, 0, 0, 0.2); */
  text-align: center; /* Center the text horizontally within .grid-item */
  line-height: 1.4;
}
.service-item:hover {
    box-shadow: 0 0 20px 0px rgb(172, 165, 165);
    scale: 1.02;
    transition: 0.6s;
}
.service-item h3 {
  text-align: center;
  margin: 1.4rem 0;
  color: #e4f30e;
}
.service-item p {
  text-align: left;
  margin-bottom: 3rem;
}
.service-item a {
  display: inline-block;
  background: linear-gradient(45deg, #a35c06, #7a140e );
  padding: 10px 20px;
  border-radius: 5px;
  color: #0bf407;
  text-decoration: none;
}
.service-item a:hover{
  background: #163020;
  transition: 0.5s;
}
@media (max-width: 920px) {
  .service-item {
    padding: 1rem 2rem 2rem 2rem;
  }
}
@media (max-width: 700px) {
  .service-column {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .service-column {
    padding: 15px;
    gap: 20px;
  }
  .service-item{
    padding: 1rem;
  }
  .service-item p{
    margin-bottom: 1.7rem;
  }
  .service-container h2{
    margin-bottom: 0.6rem;
    padding: 0.6rem;
  }
}
/* ===================== CTA SECTION ===================== */
.cta-section {
  background: linear-gradient(135deg, #7a140e 0%, #a35c06 50%, #320e7a 100%);
  padding: 80px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/pattern.png') repeat;
  opacity: 0.1;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #FDE767;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-content .highlight {
  color: #FDE767;
  font-weight: bold;
  font-size: 1.4rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-align: center;
}

.phone-btn {
  background: #25D366;
  color: white;
}

.whatsapp-btn {
  background: #128C7E;
  color: white;
}

.email-btn {
  background: #FDE767;
  color: #333;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-note {
  font-size: 0.9rem;
  color: #FDE767;
  font-style: italic;
  margin-top: 20px;
}

.cta-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}
/* ===================== PORTFOLIO Section ========================== */
.pf-intro{
  color: #12d923;
  background: linear-gradient(360deg, #6e381b, #423e43);
  padding: 5vw 17vw 2vw;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}
.pf-intro h2{
  margin-bottom: 1vw;
  color: #fff;
}
.pf-intro h3{
  margin-bottom: 2vw;
}
.pf-intro p{
  margin-bottom: 2vw;
  color: #fff;
}
.demo-1{
  text-align: center;
  color: #fff;
  background: linear-gradient(360deg, #423e43, #6e381b);
}
.demo-1 h3{
  margin-bottom: 2vw;
 }
.demo-1 img{
  width: 90%;
  height: auto;
  margin: 2vw 0 1vw;
}
.demo-1 a{
  background: #ff652f;
  border-radius: 3px;
  padding: 6px 13px;
  color: #fff;
  text-decoration: none;
}
.demo-1 p{
  text-align: center;
  color: #12d923;
}
.demo-1 .p-2{
  padding: 5px 0 20px;
}
@media (max-width:700px) {
  .demo-1 h3{
    margin-bottom: 5vw;
   }
   .pf-intro p{
    margin-bottom: 4vw;
  }
  .pf-intro h4{
    margin-bottom: 3vw;
  }
  .demo-1 img{
    padding-top: 7px;
  }
}
.demo-con{
  text-align: center;
  background: linear-gradient(45deg, #a35c06, #7a140e );
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 20px;
}
.demo-sub{ /*added*/
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  padding: 30px;
}
.demo-con h3{
  padding: 2vw 0 3vw;
}
.demo-sub h3, a{
  color: #fff;
}
.demo-sub p{
  color: #ffee00;
}
.demo-sub a{
  background: #ff652f;
  border-radius: 3px;
  padding: 6px 13px;
  color: #fff;
  text-decoration: none;
}
.demo-sub img{
  width: 100%; /*added*/
  height: auto; /*added*/
  aspect-ratio: 4/4; /*added*/
  object-fit: cover;  /*added*/
  margin: 3vw 0 1vw;
}
.demo-sub .p-2{
  padding: 5px 0 20px;
}
@media (max-width:700px) {
  .demo-sub h3{
    margin-bottom: 3vw;
   }
   .demo-sub img{
    padding-top: 7px;
  }
}
/* ======================== SUCCESS Story Section ========================== */
/*A lot of time taken to match the css of this section, coz - css of most items are related to each other*/
.success-story-section h2{
  text-align: center;
  font-size: 3vw;
  color: #fff;
  background: linear-gradient(45deg, #320e7a, #4a1155);
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.3);
  padding: 30px 0;
}
.story-container{
  display: flex;
  /* flex-wrap: wrap; */ /*This wrap is not working after giving width to 'right-part'*/
}
.left-part {
  background: #736b6b;
  display: grid;
  place-items: center;
  width: 30%;
  height: 60vh;
}
.left-part h4{
color: #22ff00;
}
.image-part {
  width: 60%;
  height: 100%;
  animation: hbeat 2s linear infinite;
}
.image-part img{
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.right-part{
  padding: 30px;
  line-height: 1.8;
  width: 70%; /*After giving width to this part 'flex-wrap:wrap'is not working*/
  background: #4a3063;
  color: #fff;
}
.right-part h3{
margin-bottom: 20px;
text-align: center;
}
@keyframes hbeat {
0% {
  transform: rotate(0deg) scale(1);
}
20% {
  transform: rotate(0deg) scale(1.05);
}
40% {
  transform: rotate(0deg) scale(1.1);
}
60% {
  transform: rotate(0deg) scale(1.1);
}
80% {
  transform: rotate(0deg) scale(1.05);
}
100% {
  transform: rotate(0deg) scale(1);
}
}
@media (max-width:680px) {
.story-container{
  flex-direction: column;
}
.story-reverse{
  flex-direction: column-reverse;
}
.left-part, .right-part{
  width: 100%;
}
.image-part{
  width: 40%;
}
}
/* ============================= BLOG Section ============================= */
.blog-container{
  padding: 3% 2%;
}
.blog-img{
  width: 100%;
  background: radial-gradient(#3e703e 23%,#5a7614 25%, #7D7D7E 25%, #3a3939 50%);
  background-size: cover;
  text-align: center;
  padding: 5%;
}
.blog-img h2{
  color: #fff;
  animation: heart 2s linear infinite;
}
@keyframes heart {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(0deg) scale(1.02);
  }
  50% {
    transform: rotate(0deg) scale(1.05);
  }
  75% {
    transform: rotate(0deg) scale(1.03);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
  }
.blog-content{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
.blog-content img{
  width: 100%;
  aspect-ratio: 4/2;
}
.blog-col{
  text-align: center;
}
.blog-col h3{
  margin: 35px 0 20px;
}
.blog-col p{
  margin-bottom: 10px;
  line-height: 1.5;
}
.blog-col button{
  margin-top: 10px;
  padding: 7px 20px;
  background: #0bf407;
  border-radius: 30px;
  font-size: 14px;
}
.blog-col button:hover{
  background: #ffffff;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 0;
  transition: 0.5s ease-in-out;
  scale: 1.1;
}
@media (max-width:700px) {
  .blog-content{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/* ============================= Testimonial Section ============================= */
.testimon{
  padding: 3% 2%;
}
::selection{
  background: rgba(23,162,184,0.3);
}
.test-img{
  width: 100%;
  background: radial-gradient(#3e703e 23%,#3e703e 25%, #3e703e 25%, #3a3939 50%);
  background-size: cover;
  text-align: center;
  color: #ffffff;
  padding: 5%;
}
.test-img h2{
  animation: heart 2s linear infinite;
}
.wrapper{
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-top: 3%;
  gap: 20px;
}
.wrapper .box{
  background: #8d6565;
  /* width: calc(33% - 10px); */
  padding: 20px;
  border-radius: 3px;
  box-shadow: 0px 4px 8px rgba(203, 226, 53, 0.31);
  line-height: 1.5;
}
.wrapper .box i.quote{
  font-size: 20px;
  color: #17a2b8;
}
.wrapper .box .content{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.box .info .name{
  font-weight: 600;
  font-size: 17px;
}
.box .info .job{
  font-size: 16px;
  font-weight: 500;
  color: #17a2b8;
}
.box .info .stars{
  margin-top: 2px;
}
.box .info .stars i{
  color: #17a2b8;
}
.box .content .image{
  height: 75px;
  width: 75px;
  padding: 3px;
  background: #17a2b8;
  border-radius: 50%;
}
.content .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
}
.box:hover .content .image img{
  border-color: #fff;
}
@media (max-width: 700px){
  .wrapper{
    flex-wrap: wrap;
  }
  .test-img h2{
    font-size: 3vw;
  }
} 
/*==================================== FAQ Section ==================================*/
.accordion-con{
  background: #7d2ae8;
  padding: 3% 2%;
}
::selection{
  background: #7d2ae8;
  color: #fff;
}
.accordion{
  display: flex;
  /* max-width: 1010px; */
  width:100%;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
}
.accordion .image-box{
  height: 300px;
  width: 260px;
}
.accordion .image-box img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.accordion .accordion-text{
  width: 60%;
}
.accordion .accordion-text .title{
  text-align: center;
  font-size: 35px;
  font-weight: 600;
  color: #7d2ae8;
  font-family: 'Fira Sans', sans-serif;
}
.accordion .accordion-text .faq-text{
  margin-top: 25px;
  height: 263px;
  overflow-y: auto; /*when I comment this property - scrollbar becomes hidden*/
}
/* .faq-text::-webkit-scrollbar{
  display: none;
} */
.accordion .accordion-text li{
  list-style: none;
  cursor: pointer;
}
.accordion-text li .question-arrow{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-text li .question-arrow .question{
  font-size: 18px;
  font-weight: 500;
  color: #595959;
  transition: all 0.3s ease;
}
.accordion-text li .question-arrow .arrow{
  font-size: 20px;
  color: #595959;
  transition: all 0.3s ease;
}
.accordion-text li.showAnswer .question-arrow .arrow{
  transform: rotate(-180deg);
}
.accordion-text li:hover .question-arrow .question,
.accordion-text li:hover .question-arrow .arrow{
  color: #7d2ae8;
}
.accordion-text li.showAnswer .question-arrow .question,
.accordion-text li.showAnswer .question-arrow .arrow{
  color: #7d2ae8;
}
.accordion-text li .line{
  display: block;
  height: 2px;
  width: 100%;
  margin: 10px 0;
  background: rgba(0, 0, 0, 0.1);
}
.accordion-text li p{
  width: 92%;
  font-size: 15px;
  font-weight: 500;
  color: #595959;
  display: none;
}
.accordion-text li.showAnswer p{
  display: block;
}
@media (max-width: 994px) {
  .accordion{
    max-width: 100%;
    padding: 45px 60px 45px 60px;
  }
  .accordion .image-box{
    height: 360px;
    width: 220px;
  }
  .accordion .accordion-text{
    width: 63%;
  }
}
@media (max-width: 820px) {
  .accordion{
    flex-direction: column;
  }
  .accordion .image-box{
    height: 250px;
    background: #7d2ae8;
    width: 100%;
    border-radius: 25px;
    padding: 30px;
  }
  .accordion .accordion-text{
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 538px) {
  .accordion{
    padding: 25px;
  }
  .accordion-text li p{
    width: 98%;
  }
}
/* ===================== FOOTER SECTION ===================== */
.footer-section {
  background: #122331;
  color: white;
  padding: 60px 0 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: #FDE767;
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1ea55d;
  display: inline-block;
}

.footer-about {
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  animation: hbeat 2s linear infinite;
}

.footer-logo span {
  font-weight: 600;
  color: #FDE767;
}

.footer-links li,
.footer-services li,
.footer-contact li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-links a,
.footer-services a {
  color: #ccc;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover,
.footer-services a:hover {
  color: #FDE767;
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  line-height: 1.5;
}

.footer-contact i {
  color: #1ea55d;
  min-width: 20px;
}

.social-links {
  margin-top: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #2c3e50;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #1ea55d;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid #2c3e50;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright p {
  color: #ccc;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FDE767;
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
}
/* ===================== RESPONSIVE IMPROVEMENTS ===================== */
/* @media (max-width: 768px) { */
  /* .hero-typing-wrapper { */
    /* flex-direction: column; */
    /* text-align: center; */
  /* } */
  
  /* .hero-typing-1, */
  /* .hero-typing-2 { */
    /* width: 100%; */
    /* padding: 2vw 0; */
  /* } */
  
  /* .banner h2 { */
    /* font-size: 1.5rem; */
  /* } */
  
  /* .service-column { */
    /* padding: 1rem; */
  /* } */
/* } */
/* ===================== PERFORMANCE OPTIMIZATION ===================== */
img {
  max-width: 100%;
  height: auto;
}

/* ===================== ACCESSIBILITY ===================== */
/* @media (prefers-reduced-motion: reduce) { */
  /* *, */
  /* *::before, */
  /* *::after { */
    /* animation-duration: 0.01ms !important; */
    /* animation-iteration-count: 1 !important; */
    /* transition-duration: 0.01ms !important; */
  /* } */
/* } */
/* ===================== PRINT STYLES ===================== */
/* @media print { */
  /* .cta-section, */
  /* .footer-section, */
  /* .menu-btn, */
  /* .social-icons { */
    /* display: none !important; */
  /* } */
/* } */
/* ===================== READ MORE BUTTON ENHANCEMENTS ===================== */
.read-more-dynamic {
  display: inline-block !important;
  background: linear-gradient(45deg, #a35c06, #7a140e) !important;
  padding: 10px 20px !important;
  border-radius: 5px !important;
  color: #0bf407 !important;
  text-decoration: none !important;
  margin-top: 15px !important;
  font-weight: bold !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer !important;
  font-family: inherit !important;
}

.read-more-dynamic:hover {
  background: #163020 !important;
  color: #fff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3) !important;
}

/* Service item text truncation */
.service-item p {
  position: relative;
  transition: all 0.3s ease;
}

/* Blog item text truncation */
.blog-col p {
  position: relative;
  transition: all 0.3s ease;
}

/* Fade effect for truncated text */
.truncated::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.8));
}

/* Article link styles in mega menu */
.content .col .read-more {
  display: flex;
  justify-content: center;
  font-size: 13px;
  color: white !important;
  background: #1ea55d;
  width: 35%;
  margin: 15px auto;
  transition: color 0.3s ease;
  border-radius: 3px;
  text-decoration: none !important;
  padding: 8px 15px !important;
}

.content .col .read-more:hover {
  background: #ff652f !important;
  color: white !important;
  transform: scale(1.05);
}

/* Ensure all read more buttons have consistent styling */
a[href*="article.html"] {
  text-decoration: none !important;
}
/*==================================== About Section ==================================*/
.about-container{
  background: #13d010;
}
.about-container img{
  width: 100%;
  height: 90vh;
}

 