/*--------------------------------------------------------------
# Global Variables (Make sure these are defined in :root or elsewhere)
--------------------------------------------------------------*/
/* Example: 
:root {
  --default-color: #333;
  --background-color: #fff;
  --accent-color: #007bff;
  --contrast-color: #fff;
  --surface-color: #f8f9fa;
  --heading-color: #111;
  --heading-font: 'Poppins', sans-serif;
}
*/




/*--------------------------------------------------------------
# Mobile Styles (Responsive)
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10001;
  }

  .social-links {
    display: none;
  }

  .navmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #333;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
  }

  .navmenu.open {
    transform: translateX(0);
  }

  .navmenu ul {
    flex-direction: column;
    align-items: center;
  }

  .navmenu ul li {
    padding: 10px;
  }

  .navmenu a {
    font-size: 18px;
    padding: 15px;
  }

  .navmenu a .navicon {
    font-size: 24px;
  }
}

@media (min-width: 992px) {
  .mobile-nav-toggle {
    display: none;
  }

  .navmenu {
    position: static;
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 100%;
    background-color: transparent;
    transform: none;
  }

  .navmenu ul {
    flex-direction: row;
    justify-content: center;
  }

  .navmenu ul li {
    padding: 0 20px;
  }

  .navmenu a {
    font-size: 18px;
    padding: 10px 20px;
  }

  .navmenu a .navicon {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  line-height: 0;
}


.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# AOS on mobile
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 20px;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  color: #fff;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
  text-align: left;
  color: #fff;
}

.hero p span {
  letter-spacing: 1px;
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  margin-right: 20px;
  transition: 0.3s;
}

.hero-content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: right;
  color: white;
  max-width: 500px;
  padding: 20px;
}

@media (max-width: 768px) {
  .hero {
    padding: 40px 0;
  }

  .hero h2 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .social-links a {
    font-size: 20px;
    margin-right: 15px;
  }

  .hero-content {
    right: 10px;
    bottom: 10px;
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .hero h2 {
    font-size: 28px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .social-links a {
    font-size: 18px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Sections & Section Title
--------------------------------------------------------------*/
section, .section {
  padding: 60px 0;
}

.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  line-height: 0;
}

.bold-center-text {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  margin: 30px 0;
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item i {
  font-size: 44px;
  float: left;
  line-height: 0;
}

.stats .stats-item .purecounter {
  font-size: 48px;
  font-weight: 700;
  margin-left: 60px;
  display: block;
}

.stats .stats-item p {
  margin: 0 0 0 60px;
  padding-top: 15px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.col-lg-3.col-md-6 {
 background:#fff;
  border:2px solid #cde1f9;
  border-radius:12px;
  box-shadow:0 6px 16px rgba(0,0,0,0.07);
  transition: all 0.3s ease;
  gap: 20px;
  cursor:pointer;
  margin: 10px 0;
  padding: 15px;
  min-height: 150px;
}




.skill-item {
  text-align: center;
  flex: 1 1 180px;
  max-width: 150px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 10px;
  border-radius: 10px;
}

.skill-item:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.skill-item i {
  font-size: 3rem;
  transition: color 0.3s;
}

.skill-item:hover i {
  color: #fff;
}

.skill-name {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}

.beat-image {
  animation: beat 1s infinite;
}

@keyframes beat {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

@media (max-width: 768px) {
  .skills-container {
    justify-content: center;
  }

  .skill-item {
    flex: 1 1 150px;
    max-width: 120px;
  }

  .skill-item i {
    font-size: 2.5rem;
  }

  .beat-image {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .skill-item {
    flex: 1 1 100px;
    max-width: 100px;
  }

  .skill-item i {
    font-size: 2rem;
  }

  .beat-image {
    width: 40px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
# Resume Section
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin: 20px 0;
}

.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  position: relative;
}

.resume .resume-item h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.resume .resume-item h5 {
  font-size: 16px;
  padding: 5px 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 10px;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: var(--background-color);
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  list-style: none;
  padding: 0;
  margin: 0 auto 20px auto;
  text-align: center;
}

.portfolio .portfolio-filters li {
  display: inline-block;
  font-size: 14px;
  margin: 0 10px 10px;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.3s;
}



@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    padding: 8px 15px;
    border: 1px solid #ddd;
    margin: 5px;
  }
}

.portfolio .isotope-container {
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap;
}

.portfolio .portfolio-item {
  padding: 15px;
  flex: 1 1 calc(33.333% - 30px);
  box-sizing: border-box;
}

.portfolio .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.portfolio .portfolio-content:hover {
  transform: translateY(-10px);
}

.portfolio .portfolio-content img,
.portfolio .portfolio-content video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.3s;
}

.portfolio .portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-info h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.portfolio .portfolio-info p {
  font-size: 14px;
}

.portfolio .portfolio-info .preview-link,
.portfolio .portfolio-info .details-link {
  font-size: 20px;
  margin: 0 5px;
  color: #fff;
  transition: color 0.3s ease;
}


.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
}

.gallery-item {
  flex: 1 1 calc(33.33% - 20px); /* 3 items per row */
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 123, 255, 0.2);
}

.gallery-item video,
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item .content {
  padding: 15px;
}

.gallery-item .content h3 {
  margin: 0;
  font-size: 18px;
  color: #007bff;
}

.gallery-item .content p {
  font-size: 14px;
  color: #555;
  margin-top: 8px;
}


@media (max-width: 768px) {
  video {
    display: none !important;
  }
}



/*--------------------------------------------------------------
# Services Section - Final with Card Shadow
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Services Section - Final Styled
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.services .section-title h2 {
  color: #333;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
}

.services .section-title p {
  color: #555;
  font-size: 15px;
  text-align: center;
  max-width: 800px;
  margin: auto;
  line-height: 1.8;
}

.service-item:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 40px rgba(0, 123, 255, 0.25); /* Brighter shadow on hover */
  border-color: #007bff;
}


/* Title */
.service-item .title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Description */
.service-item .description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Responsive Fix */
@media (max-width: 992px) {
  .service-item {
    flex-direction: row;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .service-item .icon {
    margin-bottom: 15px;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
}

.testimonials .quote-icon-left,
.testimonials .quote-icon-right {
  font-size: 26px;
  line-height: 0;
}

.testimonials .quote-icon-left {
  position: relative;
  left: -5px;
}

.testimonials .quote-icon-right {
  position: relative;
  right: -5px;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 6px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.testimonials .testimonial-item p::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: 0.3s ease-in-out;
}

.contact .info-item:hover i {
  background: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 0;
 
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {

}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  border: none;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.4s;
}

.contact .php-email-form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  font-size: 15px;
  padding: 0;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  margin: 0;
}

/*--------------------------------------------------------------
# Custom Modal Styles
--------------------------------------------------------------*/
#successModal .modal-content {
  background-color: #f8f9fa;
  border-radius: 15px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

#successModal .modal-header {
  background-color: #007bff;
  color: #fff;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

#successModal .modal-title {
  font-size: 1.5rem;
  font-weight: 600;
}

#successModal .modal-body {
  font-size: 1.1rem;
  color: #333;
  padding: 20px;
  text-align: center;
}

#successModal .modal-footer {
  border: none;
  justify-content: center;
  padding-bottom: 20px;
}

#successModal .btn-secondary {
  background-color: #6c757d;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#successModal .btn-secondary:hover {
  background-color: #5a6268;
}






































































































 








