/*=============== GOOGLE FONTS ===============*/

@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(230, 75%, 56%);
  /* --title-color: hsl(230, 75%, 15%); */
  --title-color: #EA7B26;
  --text-color: hsl(230, 12%, 40%);
  --body-color: hsl(230, 100%, 98%);
  --container-color: hsl(230, 100%, 97%);
  --border-color: hsl(230, 25%, 80%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Syne", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: 0.938rem;
  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-fixed: 100;
  --z-modal: 1000;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1023px) {
  :root {
    --h2-font-size: 1.5rem;
    --normal-font-size: 1rem;
  }
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button {
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* MARATHI BUTTON SECTION  */

/* Default styles for larger screens */
.marathi-index {
  position: fixed;
  right: 20px;
  top: 400px;
  z-index: 1000; /* Ensures it stays above other elements */
}

.mh {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px; /* Default font size */
  transition: background-color 0.3s, transform 0.3s; /* Smooth transition for hover effect */
}

.mh:hover {
  background-color: #0056b3;
  transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Media query for smaller screens (tablets and mobile devices) */
@media (max-width: 768px) {
  .marathi-index {
      right: 10px; /* Adjust positioning for smaller screens */
      bottom: 10px;
  }

  .mh {
      padding: 8px 16px;  /* Reduce padding for smaller buttons */
      font-size: 14px;    /* Adjust font size */
  }
}

/* Media query for very small screens (mobile devices in portrait mode) */
@media (max-width: 480px) {
  .marathi-index {
      right: 5px;  /* Further adjust positioning */
      bottom: 20px;
  }

  .mh {
      padding: 8px 16px;  /* Even smaller padding */
      font-size: 14px;    /* Smaller font size */
  }
}


 /* MARATHI BUTTON SECTION END  */
 

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 15px;
}

.main {
  position: relative;
  height: 100vh;
}

.main__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  z-index: -1;
}





/*=============== HEADER & NAV ===============*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--body-color);
  box-shadow: 0 2px 16px hsla(230, 75%, 32%, 0.15);
  z-index: var(--z-fixed);
}

.nav {
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__logo{
  height: 5.6rem;
}

.nav__menu {
  /* Navigation for mobile devices */
}
@media screen and (max-width: 1023px) {
  .nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--body-color);
    box-shadow: 0 8px 16px hsla(230, 75%, 32%, 0.15);
    width: 100%;
    padding-block: 4.5rem 4rem;
    transition: top 0.2s;
  }
  
}
.nav__list {
  display: flex;
  flex-direction: column;
  row-gap: 2.5rem;
  text-align: center;
}
.nav__link {
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.2s;
}
.nav__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
}
.nav__actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
  column-gap: 1rem;
}
.nav__login,
.nav__toggle,
.nav__close {
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
  transition: color 0.2s;
}

:is(.nav__logo, .nav__login, .nav__toggle, .nav__link):hover {
  color: var(--first-color);
}

/* Show menu */
.show-menu {
  top: 0;
}

/* drowp down  */
/* Dropdown Styles */



.nav__dropdown {
  position: relative;
  cursor: pointer; /* Add pointer cursor to indicate it's clickable */
  font-family: 'Roboto', Arial, sans-serif;
}

/* Arrow style */
.nav__dropdown .arrow {
  display: inline-block;
  margin-left: 8px;
  border: solid #333;
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
#abus{
  color: #EA7B26;
}

/* Rotate arrow on hover */
.nav__dropdown:hover .arrow,
.nav__dropdown:hover #abus {
  transform: rotate(-135deg); /* Rotate the arrow up */
  border-color: #e49c1e; /* Change arrow color */
  color: #e49c1e; /* Change "About Us" text color on hover */
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; /* Position below the parent item */
  left: 0;
  min-width: 200px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Enhanced shadow for depth */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

/* Dropdown list items */
.dropdown-menu li {
  list-style: none;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

/* Dropdown links */
.dropdown-menu li a {
  display: block;
  padding: 14px 20px;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 8px; /* Add rounded corners to links */
}

/* Hover effects on dropdown links */
.dropdown-menu li a:hover {
  background-color: #f3f7f7;
  color: #e49c1e;
}

/* Show dropdown on hover */
.nav__dropdown:hover .dropdown-menu,
.nav__dropdown:hover .dropdown-menu li {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Animation for dropdown items */
.dropdown-menu li {
  animation: fadeIn 0.4s ease forwards;
  animation-delay: calc(0.05s * var(--i)); /* Staggered animation */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Dropdown Styles */

/* Adjustments for mobile screens */
@media (max-width: 768px) {
  .nav__dropdown .arrow {
    margin-left: 4px;
    padding: 2px;
    border-width: 0 1.5px 1.5px 0;
  }

  .dropdown-menu {
    min-width: 100%; /* Full width for mobile */
    left: 0;
    top: 110%;
    border-radius: 0;
  }

  .dropdown-menu li a {
    font-size: 1rem;
    padding: 12px 16px;
  }

  .dropdown-menu {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile menu adjustments */
@media (max-width: 480px) {
  .nav__dropdown .arrow {
    margin-left: 4px;
    padding: 1.5px;
    border-width: 0 1px 1px 0;
  }

  .dropdown-menu {
    padding: 0;
    left: 0;
    width: 100%;
    border-radius: 0;
    top: 140%; /* Increase top margin further */
  }

  .dropdown-menu li a {
    font-size: 0.9rem;
    padding: 10px 12px;
  }

  .nav__dropdown:hover .dropdown-menu {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
}

/* drowp down  end */



/*=============== BREAKPOINTS ===============*/
/* For medium devices */
@media screen and (max-width: 576px) {
  
  .nav__logo{
    height: 4.6rem;
  }
  .nav {
    height: calc(var(--header-height) + 0.2rem);
    -moz-column-gap: 5rem;
    column-gap: 5rem;
  }
  .nav__list {
    display: flex;
    flex-direction: column;
    row-gap: 1.5rem;
    text-align: center;
  }
  .nav__menu {
    
    padding-block: 4rem 3.5rem;
  }
  
}
/* For large devices */
@media screen and (min-width: 1023px) {
  .nav {
    height: calc(var(--header-height) + 2rem);
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  .nav__close,
  .nav__toggle {
    display: none;
  }
  .nav__menu {
    margin-left: auto;
  }
  .nav__list {
    flex-direction: row;
    -moz-column-gap: 3rem;
    column-gap: 3rem;
  }
  
  
}
@media screen and (min-width: 1150px) {
  .container {
    margin-inline: auto;
  }
  

}



/* user name */
.user-initials {
    background-color: var(--first-color);
    color: white;
    font-weight: bold;
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-right: 1rem;
    cursor: pointer;
}

/* user name end */






/* home */

:root{
  --pink:#ff3616;
  --violet:#293f50;
}

*{
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  outline: none;
  margin: 0; padding: 0;
  box-sizing: border-box;
}

.home{
  min-height: 70vh; /* Adjusted height */
  /* background:linear-gradient(rgba(41, 63, 250,.8),rgba(198, 59, 250,.8)), url(https://34co0u35pfyt37c0y0457xcu-wpengine.netdna-ssl.com/wp-content/uploads/2018/10/What-is-Educational-Technology_-Definition-Examples-Etc..jpg) no-repeat; */
  background:linear-gradient(rgba(250, 138, 41, 0.8),rgba(250, 161, 59, 0.8)), url(https://34co0u35pfyt37c0y0457xcu-wpengine.netdna-ssl.com/wp-content/uploads/2018/10/What-is-Educational-Technology_-Definition-Examples-Etc..jpg) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 0;
  overflow:hidden;
  position: relative;
}

.home .content{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  padding-top: 5rem; /* Adjusted padding */
  padding-bottom: 8rem; /* Adjusted padding */
  text-align: center;
}

.home .content h1{
  font-size: 2rem;
  color: #fff;
  padding:1rem 1rem;
  text-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
  text-transform: uppercase;
}

.home .content p{
  font-size: 1rem;
  color:#eee;
  padding:1rem 25rem;
}

.home .content button{
  height:4rem;
  width:14rem;
  border-radius: 5rem;
  background:var(--pink);
  color:#fff;
  font-size: 2rem;
  cursor: pointer;
  transition: .2s;
  border:none;
  box-shadow: 0 .3rem 1rem rgba(0,0,0,.3);
  margin-top:1rem ;
}

.home .content button:hover{
  letter-spacing: .2rem;
}

.home .box-container{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.home .box-container .box{
  height:30rem;
  width:25rem;
  background:#fff;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 .3rem .5rem rgba(0,0,0,.5);
  margin: 2rem;
  cursor: pointer;
}

.home .box-container .box i{
  height:6rem;
  width:6rem;
  line-height: 6rem;
  text-align: center;
  border-radius: 50%;
  color:#fff;
  background:var(--violet);
  font-size: 3rem;
  margin:2rem 0;
  transition: .2s;
}

.home .box-container .box h3{
  font-size: 2rem;
  color:var(--pink);
  transition: .2s;
}

.home .box-container .box p{
  font-size: 1.3rem;
  padding:.7rem 2rem;
  color:#666;
}

.home .box-container .box:hover i{
  background:var(--pink);
}

.home .box-container .box:hover h3{
  color:var(--violet);
}

.home::before{
  content: '';
  position: absolute;
  bottom:-25rem; left:50%;
  transform: translateX(-50%);
  border-top: 70vh solid #fff;
  width:120%;
  border-radius: 50%;
  z-index: -1;
}

/* media queries  */

@media (max-width:768px){

  .home .content p{
    padding:1.5rem 2rem;
  }

  .home::before{
    display: none;
  }
}

/* ............................. */


/* body {
  font-family: 'Roboto', sans-serif;
} */

/*---Hero---*/
#hero {
  margin-top: 5.7rem;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
}



#hero:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 95%;
  background: linear-gradient(to right, rgba(221, 138, 50, 0.6), rgba(218, 145, 20, 0.582)), url("assets/img/3.png")center top no-repeat;
  /*image-size 1920H 1080W*/
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) rotate(0deg);
}

#hero:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  width: 130%;
  height: 96%;
  background: rgba(212, 189, 129, 0.8);
  opacity: 0.3;
  z-index: 0;
  border-radius: 0 0 50% 50%;
  transform: translateX(-50%) translateY(18px) rotate(2deg);
}

#hero .carousel-container {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  position: relative;
  z-index: 1;
  /* Ensure the text is above the pseudo-elements */
}

#hero h3 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 34px;
  font-weight: bold;
  font-family: var(--body-font);
}

#hero p {
  width: 80%;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
  font-size: 23px;

  font-family: 'Andada Pro', sans-serif;
}
#hero #hero_btn_donote{
  background: none;
    
    font-size: 14px;
    padding: 10px 30px;


}
#hero #hero_btn_donote:hover{
    background: none;
    
}

#hero .carousel-control-prev,
#hero .carousel-control-next {
  width: 10%;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 48px;
  line-height: 1;
  width: auto;
  height: auto;
}

#hero .hero-btn {
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.5s;
  line-height: 1;
  margin: 10px;
  color: #fff;
  animation-delay: 0.5s;
  border: 2px solid #9ef596;
  font-family:  'Arbutus', sans-serif;
  background-color:#1599db ;
  
}

#hero .hero-btn:hover {
  background: none;

  color: #fff;
  text-decoration: none;
}

@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }

  #hero:after {
    width: 180%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero:before {
    top: 0;
    width: 180%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
}

@media (max-width: 575px) {
  #hero:after {
    left: 40%;
    top: 0;
    width: 200%;
    height: 95%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  #hero:before {
    margin-top: 1rem;
    left: 50%;
    top: 0;
    width: 200%;
    height: 94%;
    border-radius: 0 0 50% 50%;
    transform: translateX(-50%) translateY(20px) rotate(4deg);
  }
  
#hero h3 {
  
  font-size: 30px;
  
}

#hero p {
  font-size: 15px;
 
}
#hero{
  margin-top: 2rem;

}
#hero .carousel-container {
 
}

#hero h3 {
  margin-bottom: 5px;
  font-size: 30px;
  
}

#hero p {
 
}

}

/*--End of Hero---*/
/* ............................. */

/* home end */


/* ss info */

.sparsh_mean {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  /* background-color: #fff; */
  background-color: rgba(241, 166, 109, 0.44);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

h3 {
  color: #2980b9;
  text-align: center;
  font-size: 1.5rem;
}

p {
  color: #34495e;
  line-height: 1.6;
  font-size: 1.2rem;
  font-family: 'Adamina', sans-serif;
  text-align: justify;
  text-align-last: center;

}

.sparsh_touch {
  background-color: #ecf0f1;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: justify;
}

/* Animation */
.sparsh_mean {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.5s forwards;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(50px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
/* ss info end */

@media (max-width: 575px) {
  h3 {
  
    font-size: 1.2rem;
  }
  
  p {
   
    font-size: 1rem;
    
  
  }
  .sparsh_mean {
    max-width: 800px;
    /* margin: 50px auto; */
    margin: 0 5px;
    padding: 20px;
    /* background-color: #fff; */
    background-color: rgba(241, 166, 109, 0.44);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  }
}


/* work link  */
/* work-link Section Styles */
/* Base Styles */
#work-link {
  background-color: #f2f2f2;
  padding: 80px 0; /* Adjusted padding for better spacing */
  font-family: 'Roboto', Arial, sans-serif; 
}

#work-link h2 {
  font-size: 2.5rem; /* Scaled down for better mobile responsiveness */
  margin: 0 0 40px; /* Adjusted margin for better spacing */
  text-align: center;
  color: #333;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 30px; /* Reduced gap for a more compact look */
  padding: 0 15px;
}

.card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
  background-color: #eaf4f4;
}

.card img {
  height: 5rem; /* Adjusted height for a more balanced look */
  width: auto;
  margin: 0 auto 15px;
  display: block;
}

.card h3 {
  font-size: 1.8rem; /* Reduced font size for better readability */
  margin: 0 0 10px;
  color: #333;
}

.card p {
  font-size: 1rem;
  margin: 0 0 20px;
  line-height: 1.6;
  color: #555;
}


.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px; /* Reduced margin for consistency */
}

.icon-wrapper i.fas.fa-paperclip {
  font-size: 24px; /* Increased icon size for better visibility */
  color: #1abc9c;
  margin-right: 10px;
}

.icon-wrapper img {
  height: 3rem; /* Adjusted icon size */
  width: auto;
}

.btn-secondary {
  display: inline-block;
  margin: 20px auto 0;
  padding: 12px 24px; /* Adjusted padding for a more compact button */
  border-radius: 25px; /* Slightly rounded corners */
  font-size: 1rem; /* Standardized font size */
  font-weight: bold;
  color: #1abc9c;
  text-decoration: none;
  text-align: center;
  background-color: transparent;
  border: 2px solid #1abc9c;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #1abc9c;
  color: #fff;
}
.apply_btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(45deg, #ff416c, #ff4b2b); /* Vivid gradient background */
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 50px; /* More rounded corners */
    box-shadow: 0 8px 15px rgba(255, 65, 108, 0.3); /* Stronger shadow for a 3D effect */
    transition: all 0.4s ease; /* Smooth hover transitions */
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.apply_btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.3) 10%, transparent 60%);
    transition: transform 0.6s ease;
    transform: translate(-50%, -50%) scale(0);
}

.apply_btn:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.apply_btn:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c); /* Reverse the gradient on hover */
    box-shadow: 0 12px 25px rgba(255, 65, 108, 0.5); /* Glow effect on hover */
    transform: translateY(-5px); /* Lift the button slightly */
}

.apply_btn:active {
    transform: translateY(-2px); /* Slight reduction of lift when clicked */
    box-shadow: 0 8px 15px rgba(255, 65, 108, 0.3); /* Restore original shadow */
}





/* Responsive Styles */
@media (max-width: 768px) {
  #work-link {
    padding: 60px 0; /* Adjusted padding for tablets */
  }

  #work-link h2 {
    font-size: 2rem; /* Adjusted font size for tablets */
    margin-bottom: 30px;
  }

  .grid {
    grid-gap: 20px; /* Adjusted gap for smaller screens */
    padding: 0 10px;
  }

  .card {
    padding: 15px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
  }

  .card h3 {
    font-size: 1.6rem;
  }

  .card p,
  .card a {
    font-size: 0.9rem;
  }

  .card img {
    height: 4rem;
    margin-bottom: 15px;
  }

  .btn-secondary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  #work-link {
    padding: 40px 0; /* Adjusted padding for mobile devices */
  }

  #work-link h2 {
    font-size: 1.8rem; /* Further reduced font size for mobile */
    margin-bottom: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
    grid-gap: 15px;
  }

  .card {
    padding: 10px;
    border-radius: 8px;
  }

  .card h3 {
    font-size: 1.4rem; /* Further reduced font size */
  }

  .card p,
  .card a {
    font-size: 0.85rem;
  }

  .card img {
    height: 3rem;
    margin-bottom: 10px;
  }

  .btn-secondary {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
}


/* work link  end */

/* target info */

/*=============== FEATURES SECTION ===============*/
#features {
  background-color: #e08f3386; /* Primary color for features section */
  padding: 2rem 1rem; /* Adjusted padding for better spacing */
  color: white; /* White text for contrast */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

.tar-dis {
  text-align: center; /* Center-align the content */
  margin-bottom: 1.5rem; /* Space below the section */
}

.tar-dis i {
  font-size: 55px; /* Adjust icon size as needed */
  color: rgb(0, 0, 0); /* Color of the icon */
  display: block; /* Ensure icon is on its own line */
  margin-bottom: 0.2rem; /* Space between icon and heading */
}

#features h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative; /* Make the heading a positioning context for the pseudo-element */
  color: #d1800f; /* Heading color */
}

#features h3::after {
  content: ""; /* No text content */
  display: block; /* Block-level to create a line */
  width: 150px; /* Adjust the width of the line */
  height: 3px; /* Thickness of the line */
  background-color: rgb(22, 124, 207); /* Color of the line */
  margin: 0.5rem auto 0; /* Center the line and add some margin above */
}

.features-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.feature-card {
  background-color: white;
  padding: 4rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  max-width: 690px; /* Use max-width instead of width to be more flexible */
  color: #071952; /* Dark navy text */
  width: 100%; /* Ensure cards take full width on small screens */
  box-sizing: border-box; /* Ensure padding is included in width */
}

.feature-card li {
  font-size: 1rem;
  padding: 5px;
  margin-left: 1.4rem;
  font-family: 'Actor', sans-serif;
}

.feature-card ion-icon {
  font-size: 50px; /* Adjust icon size as needed */
  color: #071952; /* Dark navy color */
  margin-bottom: 1rem; /* Space between icon and text */
}

/*=============== MEDIA QUERIES ===============*/

/* For small devices (phones) */
@media (max-width: 576px) {
  #features h3 {
    font-size: 1.5rem; /* Slightly smaller font size on small screens */
  }

  .feature-card {
    padding: 0.75rem; /* Reduced padding for small screens */
  }

  .feature-card li {
    font-size: 1.2rem; /* Slightly smaller font size for better fit */
  }

  .feature-card ion-icon {
    font-size: 40px; /* Slightly smaller icon size */
  }
}

/* For medium devices (tablets) */
@media (min-width: 577px) and (max-width: 768px) {
  #features h3 {
    font-size: 1.75rem; /* Adjusted font size for tablets */
  }

  .feature-card {
    padding: 1rem; /* Standard padding for medium screens */
  }

  .feature-card li {
    font-size: 1.4rem; /* Adjusted font size for tablets */
  }

  .feature-card ion-icon {
    font-size: 45px; /* Adjusted icon size for tablets */
  }
}

/* For large devices (desktops) */
@media (min-width: 769px) {
  #features h3 {
    font-size: 2rem; /* Larger font size for larger screens */
  }

  .feature-card {
    padding: 1rem; /* Standard padding for larger screens */
  }

  .feature-card li {
    font-size: 1.5rem; /* Standard font size for larger screens */
  }

  .feature-card ion-icon {
    font-size: 50px; /* Standard icon size for larger screens */
  }
}


/* target info end */



/* Footer  */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

#picassoFooter {
    /* background: linear-gradient(135deg, #1a1a1a, #2c2c2c); */
    background: linear-gradient(135deg, #222e39, #148fcd);
    color: #ffffff;
    padding: 40px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.footer-section {
    margin: 20px;
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    color: #f0f0f0;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #AFEEEE);
    transition: width 0.3s ease;
}

.footer-section h3:hover::after {
    width: 100%;
}

.footer-navigation ul {
    list-style: none;
    padding: 0;
}

.footer-navigation ul li {
    margin-bottom: 10px;
}

.hover-effect {
    color: #ffffff;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.hover-effect::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #FFD700;
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out;
}

.hover-effect:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

.hover-effect:hover {
    color: #FFD700;
}





.footer-logo p {
    margin-top: 5px;
    /* font-style: italic; */
    color: white;
    font-size: 1rem
}


.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: white;
    text-transform: lowercase;
}

.footer-contact i {
    margin-right: 10px;
    color: #AFEEEE;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.footer-art {
    position: absolute;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    z-index: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 40px;
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    border-top: 1px solid rgba(255, 255, 255, 0.703);
    position: relative;
    z-index: 2;
}
.footer-bottom p{
  color:  rgba(255, 255, 255, 0.703);
    
}
.footer-legal a{
  color: black;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        margin: 10px 0;
    }

    .footer-section h3::after {
        left: 25%;
        width: 50%;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-art {
        position: relative;
        width: 100%;
        height: 150px;
        margin-top: 20px;
    }

    #picassoCanvas {
        width: 100%;
        height: 100%;
    }
}
/* Footer End */