/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');
@import url("https://fonts.cdnfonts.com/css/rightman-signature");
@import url('https://fonts.cdnfonts.com/css/spectral'); 
@import url('https://fonts.cdnfonts.com/css/derivia');
/* General Styles */
/* Ensure the menu icons are white */
.navbar-toggler span i {
    color: white !important; /* Forces white color */
    font-size: 1.8rem;
    transition: color 0.3s ease-in-out;
    
  }
  .navbar-toggler{
    border: 0px;
  } 
body {
    font-family: 'Poppins', sans-serif;
    background: #0a0c1b;
    color: white;
    margin: 0;
    padding: 0;
}

/* Navbar */
.navbar {
    background: rgba(10, 12, 27, 0.9);
    padding: 15px 0;
}

.navbar-brand {
    color: #6df0c2;
    font-weight: bold;
    font-size: 22px;
}
.navbar-brand:hover{
    color: #ff79c6;
} 
.navbar-brand:focus{
    color: #6df0c2;
}

.navbar-nav .nav-link {
    color: white;
    margin: 0 10px;
    transition: 0.3s;
    position: relative;
    display: inline-block;
    padding-bottom: 1px;
    font-size: 20px;
}



.navbar-nav .nav-link:hover {
    color: #6df0c2;
}

.navbar-nav .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #6df0c2;
    transition: width 0.3s ease-in-out;
    position: absolute;
    left: 50%;
    bottom: 2px; 
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

@media (max-width: 991px) {
    .navbar-collapse {
        text-align: center;
        font-size: 1.2rem;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }
    .navbar-nav .nav-link:hover::after {
        width: 100%;
    }
    
}
/* Hero Section */
.hero {
    padding: 120px 0;
}

.hero h1 {
    font-size: 32px;
    font-weight: 600;
}

.hero h2 {
    font-size: 38px;
    font-weight: bold;
    margin-top: 10px;
}

.hero .highlight {
    color: #ff79c6;
}

.hero .dev-title {
    color: #6df0c2;
}

/* Social Icons */
.social-icons {
    margin-top: 20px;
}

.social-icons a {
    color: #ff79c6;
    font-size: 25px;
    margin-right: 15px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #6df0c2;
}

/* Buttons */
.buttons {
    margin-top: 20px;
}

.contact-btn {
    background: transparent;
    border: 2px solid #ff79c6;
    color: #ff79c6;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #ff79c6;
    color: white;
}

.resume-btn {
    background: #845ef7;
    border: 2px solid #845ef7;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    margin-left: 10px;
    transition: 0.3s;
}

.resume-btn:hover {
    color: #845ef7;
    background: transparent;
    border: 2px solid #845ef7;
}

/* Code Box */
.code-box {
    background: #161b3c;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin-top: 20px;
}

.code {
    font-family: 'Courier New', monospace;
    color: #ff79c6;
    font-size: 16px;
}
.about-section {
    padding: 80px 10%;
    position: relative;
}

/* Title */
.section-title {
    color: #3cf94a;  /* Green Color */
    font-weight: bold;
    margin-bottom: 20px;
}

/* Text */
.about-text p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
}

/* Side Button */
.side-button {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    background-color: #241d4e;
    color: white;
    padding: 10px 15px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.experience-section {
    padding: 90px 0;
    text-align: center;
}

.about-section {
    
    text-align: center;
}
/* Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Experience Card */
.experience-card {
    background: rgba(64, 64, 64, 0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    text-align: left;
    position: relative;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect */
.experience-card:hover {
    transform: translateY(-5px);
    background: rgba(120, 50, 255, 0.3);
}

/* Date */
.date {
    color: #3cf94a;
    font-weight: bold;
    
}

/* Job Position */
.position {
    font-size: 20px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 8px;
}

/* Company Name */
.company {
    font-size: 16px;
    color: #aaaaaa;
    margin-bottom: 0px!important;
}

.skills-section {
    padding: 90px 0;
    text-align: center;
}

/* Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Skill Card */
.skill-card {
    background: rgba(64, 64, 64, 0.2);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
    margin-top: 60px;
}

.skill-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.skill-card p {
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    margin: 0;
}

/* Hover Effect */
.skill-card:hover {
    transform: translateY(-5px);
    background: rgba(120, 50, 255, 0.3);
}

.projects-section {
    padding: 60px 0;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

/* Project Card */
.project-card {
    background: #13131a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    max-width: 700px;
    margin: auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

/* MacOS Style Header */
.card-header {
    display: flex;
    gap: 5px;
    padding: 8px;
}

.dot {
    height: 12px;
    width: 12px;
    border-radius: 50%;
    display: inline-block;
}

.red { background-color: #ff5f57; }
.yellow { background-color: #ffbd2e; }
.green { background-color: #28c840; }

/* Code Block */
.code-block {
    background-color: #0f0f14;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    color: #39ff14; /* Neon green text */
    font-size: 14px;
}

/* Project Title */
.project-title {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 10px;
}


.education-section {
    padding: 80px 0;
    text-align: center;
}

/* Section Title */
.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    
}

/* Education Cards */
.education-card {
    background: #13131a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: left;
    transition: 0.3s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}
.education-card:hover {
    transform: translateY(-5px);
    background: rgba(120, 50, 255, 0.3);
}

/* Year */
.year {
    font-size: 14px;
    color: #39ff14; /* Neon Green */
    margin-bottom: 5px;
}

/* Degree */
.degree {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

/* Institution */
.institution {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px!important;
}

/* Image */
.education-image {
    width: 100%;
    max-width: 500px;
}

.contact-section {
    padding: 50px 0;
    text-align: center;
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
}
.formdata{
    height: 100%;
}
.contact-form input,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    margin-top: 18px;
    margin-bottom: 18px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #ccc;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border: 1px solid #5a5a5a;
    background-color: #241d4e;
    color: white;
}

.contact-form .btn {
    background: linear-gradient(45deg, #c850c0, #4158d0);
    border: none;
    color: white;
    font-weight: bold;
    max-width: 200px;
}

.contact-form .btn:hover {
    background: linear-gradient(45deg, #4158d0, #c850c0);
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    width: 45%; /* Reduce width */
    padding: 20px; /* Reduce padding */
    font-size: 14px; /* Reduce text size */
    margin: 5px; 
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(120, 50, 255, 0.3);
}

.contact-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color:#007bff ;
    
}

.contact-card h4 {
    margin: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.contact-card p {
    margin: 5px 0 0;
    font-size: 16px;
}

/* Social Media Icons */
.social-icons a {
    color: #fff;
    font-size: 20px;
    margin: 5px;
    
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4CAF50;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .contact-form, .contact-card {
        width: 90%;
        margin: 10px auto;
    }
    .education-section {
        padding: 60px 0;
    }
    .skill-card {
        margin-top: 0px;
    }
}

.footer {
    padding: 15px;
    background-color: #111;
    /* background: linear-gradient(45deg, rgb(200, 80, 192), rgb(65, 88, 208)); */
}

.highlights {
    color: #4caf50;
    font-weight: bold;
}
/* code snippet */
.code-container {
    background: #0d1117;
    padding: 20px;
    border-radius: 10px;
    color: #c9d1d9;
    font-family: 'Courier New', monospace;
    font-size: 16px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-top: 20px;
}

/* .code-header {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #161b22;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.code-header .dots {
    display: flex;
    gap: 6px;
}

.code-header .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.code-content {
    padding: 15px;
    background: #161b22;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    white-space: pre-wrap;
    word-wrap: break-word;
} */

.code-content .keyword {
    color: #ff7b72;
    font-weight: bold;
}

.code-content .string {
    color: #f2cc60;
}

.code-content .boolean {
    color: #79c0ff;
}

.code-content .function {
    color: #7ee787;
}

/* whatsapp */
.whatsapp-icon {
    position: fixed;   /* Stays in place even when scrolling */
    bottom: 35px;      /* 20px from the bottom */
    left: 35px;        /* 20px from the left */
    background-color: #25D366; /* WhatsApp Green */
    color: white;      /* Icon color */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Circular shape */
    font-size: 35px;   /* Icon size */
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;     /* Keep it above other elements */
    transition: transform 0.3s ease-in-out;
  }
  .whatsapp-icon:before {
    animation: _pulse 1.2s infinite;
    border-color: inherit;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(37, 211, 101, 0);
    content: "";
    height: 50px;
    position: absolute;
    width: 50px;  
} 
@keyframes _pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 101, .75);
    }
    100% {
        box-shadow: 0 0 0 15px rgba(37, 211, 101, 0);
    }
}
  @media (max-width: 768px) {
    .whatsapp{
      width: 45px;
      height: 45px;
      
    }
    .whatsapp-icon{
        bottom: 20px;
        left: 20px;
    }
    .whatsapp-icon:before {
      width: 45px;
      height: 45px;
    }
    #scrollToTopBtn {
      bottom: 20px !important;
      right: 20px !important;
    }
  }
  .whatsapp-icon:hover {
    transform: scale(1.2); /* Smooth hover effect */
  }

  /* Scroll to top buttom */
  /* #scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background-color: #2d39da;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: none; 
    justify-content: center;
    align-items: center;
    z-index: 1000; 
    
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  #scrollToTopBtn:active {
    background-color: #ff0090;
  }
  #scrollToTopBtn:hover {
    background-color: #ff0090;
    transform: scale(1.1);
  } */
  #scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: none;
    background-color:rgb(255, 121, 198);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    z-index: 1000;
    transition: opacity 0.3s;
  }
  
  #scrollToTopBtn svg {
    position: absolute;
    top: 10;
    left: 5;
  }
  
  #progress {
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.3s;
  }
  .fa-chevron-up{
    font-size:smaller;
    color: #fff;
  }

  .footer-para{
    margin: 0px;
  }
  .navbar-toggler{
    background-color: #2d39da;
  }


  .stats-header {
    text-align: center;
    margin-bottom: 15px;
}


.stats-header i {
    font-size: 40px;
    color: #4CAF50; /* Green accent color */
}

.about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.stat-box:hover{
    background-color:rgba(120, 50, 255, 0.3)
}

.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1;
    margin: 0 10px;
    transition: 0.3s ease-in-out
}

.stat-box h3 {
    font-size: 24px;
    color: #4CAF50;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 16px;
    color: #ddd;
}
.stat-box i{
    color:#007bff
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-box {
        width: 80%;
        margin-bottom: 10px;
    }

    .about-text {
        padding-right: 0;
        text-align: center;
    }

    .stats-header {
        text-align: center;
    }
   
}



.testimonials {
    text-align: center;
    padding: 90px 30px;
    color: white;
}

.testimonial-slider {
    position: relative;
}

.testimonial-container {
    padding-top: 100px;
    display: flex;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 415px;
    height: 315px; /* Fixed height for all cards */
    text-align: left;
    flex: 0 0 auto;
    display: none;
    flex-direction: column;
    position: relative;
    transition: transform 0.5s ease-in-out;
}

.testimonial-content {
    flex-grow: 1;
    min-height: 190px;
    overflow: hidden;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
}

.testimonial-footer img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #6df0c2;
}

/* Dots */
.dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bb8888;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.dot:hover {
    background-color: #d48888;
    transform: scale(1.2);
}

.dot.active {
    background-color: #9adeaa !important;
    box-shadow: 0 0 5px #9adeaa;
    transform: scale(1.3);
}

/* Responsive: Show 1 card for mobile */
@media (max-width: 767px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
        
        padding-top: 0px!important;
        
    }
    .testimonial{
        height: 350px;
        width: 550px;
    }
    .testimonials {
       
        padding: 40px 20px;
    }
    .experience-section {
        padding: 60px 0;
    }
}




@media (max-width: 768px) {
    .testimonial-container {
        flex-direction: column;
        align-items: center;
    }
    .testimonial {
        width: 100%;
    }
    .arrow-list{
        justify-content: center;
    }
}

.expicons{
    position: relative;
    margin-bottom: 10px;
    font-size: 30px;
    color: #ff79c6;
    transition: 0.3s;
   
}

.arrow-list {
    list-style: none;
    padding: 0;
    text-align: justify;
}

.arrow-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 16px;
    font-family: Arial, sans-serif;
}

.arrow-list li::before {
    content: ">";
    position: absolute;
    left: 0;
    color:#4CAF50; /* Change color as needed */
    font-weight: bold;
}

.service-card {
    background: rgb(64, 64,64, 0.4);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
    height: 200px; /* Fixed Height for Consistency */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 100px;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(120, 50, 255, 0.3);
}

.service-card i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 10px;
}

.service-card h5 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
    color: #ffffff;
}

.services{
    text-align: center;
    padding: 60px 0;
}


.ho {
    font-size: 28px;
    font-weight: bold;
    text-transform: uppercase;
    color: #dddada;
    text-align: center;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.ho::after {
    content: "";
    width: 50px;
    height: 4px;
    background-color: #007bff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .ho {
        font-size: 24px;
    }

    .ho::after {
        width: 40px;
        height: 3px;
    }
    .service-card{
        margin-top: 0px;
    }
}

@media (max-width: 768px) {
    .anim{
        width: 100%!important;
        height: 100%!important;
        margin-top: 50px!important;
    }
    .services{
        padding: 20px 0;
    }
}

.highlight, .dev-title {
    font-weight: bold; /* Adjust color */
    
    white-space: nowrap;
   
    display: inline-block;
}

/* Blinking cursor effect */
@keyframes blink {
    50% {
        border-color: transparent;
    }
}

.highlight::after, .dev-title::after {
    content: "";
    display: inline-block;
    
    height: 1em;
    
    animation: blink 0.8s infinite;
}

@media (max-width: 768px) {
    .typing-container {
        font-size: 1.5rem; /* Reduce font size */
        text-align: center; /* Ensure center alignment */
        padding: 10px;
    }

    .highlight, .dev-title {
        font-size: 2.0rem; /* Adjust text size for mobile */
        
    }

    .footer-para, .highlights{
        font-size: 16px;
    }

    
    .hero h2{
        font-size: 2.0rem;

    }
    .hero{
        padding: 80px 10px;
    }
    
    .about-section{
        padding: 20px 20px;
    
    }
    .about-text{
        padding-left: 5px;
    }
    .arrow-list li {
        padding-left: 15px;
        padding-right: 10px;
    }

    .animat{
        max-width: 300px;
        max-height: 200px;
    }
    .skills-section{
        padding: 10px 0px!important;
    }
    .education-section{
        padding: 10px 0px;
    }
    .animate{
        max-width: 300px;
        max-height: 200px;
    }
    .skills-section {
        padding: 60px 0;
    }
    .profile-img img {
        width: 250px!important; /* Set a fixed width */
        height: 280px !important; /* Ensure height equals width */
        /* Ensures image fills the circular space */
    }
    .institution{
        line-height: 25px !important;
        margin-bottom: 0px;
    }
}

.fab{
    font-size: xx-large;
  }

  .profile-img img {
    width: 450px; /* Set a fixed width */
    height: 515px; /* Ensure height equals width */
    border-radius: 50%; /* Makes it a perfect circle */
    display: block;
    margin: 0 auto;
    object-fit: fill; 
    margin-top: 30px;
    border: 5px solid #6df0c2;/* Ensures image fills the circular space */
}


.signature {
    font-family: "Rightman Signature", sans-serif; /* Signature-style font */
    font-size: 44px;
    margin-top: 0px;
    text-align: center;

}
.fa-bars{
    color: #fff;
}

.fab:hover{
    color:#ff79c6
}

.internet {
    display: flex;
    align-items: center; /* Align items in a row */
    justify-content: flex-start; /* Align to the left */
    gap: 10px; /* Add spacing between elements */
}

.pro {
    font-weight: bold;
    color: #ffffff;
}

.custom-github-icon {
    font-size: 24px;
    transition: transform 0.3s ease-in-out;
}

@media(max-width:480px){
    .typing-container {
        font-size: 1.5rem; /* Reduce font size */
        text-align: center; /* Ensure center alignment */
        padding: 10px;
    }

     .dev-title {
        font-size: 1.8rem;
        /* Adjust text size for mobile */
        
    }
    .resume-btn {
        margin-left: 5px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .contact-btn {
        padding-left: 15px;
        padding-right: 15px;
        
    }

}
.fa-graduation-cap{
    color: #007bff;
    font-size: 20px;
}
.customcolor:hover{
    color: #ff79c6;
}
  img {
    pointer-events: none; /* Disables right-click and drag on images */
    -webkit-user-drag: none; /* Prevents dragging on Safari */
    -moz-user-drag: none; /* Prevents dragging on Firefox */
    -o-user-drag: none;
    /* Removed unsupported property 'user-drag' */
  }
a{
    text-decoration: none;
}

.place{
    color: rgb(164, 164, 164);
}
li{
    font-family: 'Spectral', sans-serif;
}
.para09{
    font-family: 'Spectral', sans-serif !important;
}