/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .8s ease-out, visibility 0s linear .0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

/* scrollbar scrolling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #7e22ce;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7e22ce;
}
/* scrollbar scrolling end */

/* Home page animated text  */
.index-animated-text {
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080, #8000ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease-in-out infinite, textFadeIn 2s ease-in-out;
}

@keyframes textGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* toggle button cross */
/* Style for the close button */
.nav-close-btn {
    position: fixed;
    top: 46px;
    right: 15px;
    z-index: 1050; /* Above the navbar */
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    padding: 0.5rem;
    line-height: 1;
}

/* Ensure the original toggle button is visible when needed */
.navbar-toggler {
    z-index: 1; /* Keep below the close button when both are visible */
}
/* toggle button cross end */

/* animated typing text */
.typewriter-animation {
    overflow: hidden;
    white-space: nowrap;
    margin: 0 auto;
    letter-spacing: 0.07rem;
    animation: typing 3.5s steps(60, end), blink-caret 0.75s step-end infinite;
    border-right: 0.15em solid orange;
    font-size: 16.5px;
    margin-bottom: 3rem;
    margin-top: -2%;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }

  
/* Keyframes for typewriter effect */
@keyframes typing {
    from {
      width: 0;
    }
  
    to {
      width: 100%;
    }
  }
  
  @keyframes blink-caret {
  
    from,
    to {
      border-color: transparent;
    }
  
    50% {
      border-color: orange;
    }
  }
  
  @keyframes pulsate {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
  
    70% {
      transform: scale(1.05);
      box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
  
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
  }

  @media (max-width: 768px) {
  .typewriter-animation {
    animation: none;
    border-right: none;
    white-space: normal;
    text-align: center;
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    position: relative;
    bottom: unset;
    right: unset;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    padding: 10px;
    width: 100%;
    max-width: 90%;
  }
  }
/* animated typing text end */


/* Home page animated text  */

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/* animation text */
.index-animated-text{
    display: inline-block;
    font-weight: bold;
    background: linear-gradient(90deg, #ff8c00, #ff0080, #8000ff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 3s ease-in-out infinite, textFadeIn 2s ease-in-out;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes textFadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}
/* animation text end */

/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
    margin-left: -50px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
    padding: 3px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 7s infinite linear;
    animation-timing-function: all;
}

@keyframes mymove {
    from {
        left: -100%;
    }

    to {
        left: 100%;
    }
}
@media only screen and (max-width: 575.98px) {
    .topbar{
        display: block !important;
        visibility: visible;
    }
    .topbar .top-info{
        display: none !important;
        visibility: hidden;
    }
    .topbar .phone_no{
        display: block !important;
        visibility: visible;
        position: absolute;
        top: 1.2%;
        left: 3%;
    }
    .topbar .phone_no{
        color: white;
    }
    .topbar .top-link{
        /* margin-left: 10%; */
        justify-content: flex-end;
        align-items: flex-end;
    }
    .topbar .top-link a {
        width: 26px;
        height: 26px;

    }

    .topbar .top-link .lord-icon {
        width: 16px;
        height: 50px;

    }

        
}
/*** Topbar End ***/



/* carousel image start */
.img-fluid_ {
    width: 100%;
    height: 585px;
    object-fit: cover;
}

/* carousel image end */
/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-indigo) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}


/* @media only screen and (max-width: 575.98px) {
    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

} */

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
    display: block;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 100%;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 34%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 45px;
    height: 45px;
    position: absolute;
    top: 34%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
    margin-top: -5px;
    padding: 3px 2px; /* Adjust padding for smaller size */
    font-size: 12px; /* Reduce font size */
    line-height: 1;
    /* padding: 5px 15px;  
    height: 20px; */
    
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}



.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
    margin-top: -5px;
    padding: 3px 2px; /* Adjust padding for smaller size */
    font-size: 12px; /* Reduce font size */
    line-height: 1;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }

    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px !important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }

    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 34px !important;
        width: 147%;
        margin-left: -64px;
    }

    .carousel-item h6 {
        font-size: 14px;
    }

    .carousel-item p {
        font-size: 12px !important;
        color: #b3b3b3;
    }

    .carousel-control-next {
        width: 27px;
        height: 42px;
        position: absolute;
        top: 41%;
        right: 0;
        border-radius: 21px 0 0 21px;
        opacity: 1;
    }

    .carousel-control-prev {
        width: 27px;
        height: 42px;
        position: absolute;
        top: 41%;
        left: 0;
        border-radius: 0 21px 21px 0;
        opacity: 1;
    
    }

    #carouselId .carousel-indicators li {
        display: none;
    }

    .carousel-caption .carousel-content a button.carousel-content-btn2 {
        background: var(--bs-primary);
        color: var(--bs-white);
        opacity: 1;
        border: 0;
        border-radius: 20px;
        margin-top: 10px;
        margin-right: 16px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    height: 10px;
}

.page-header .header-content {
    margin-top: -4.8%;
}

.page-header .header-content h1 {
    line-height: 1px;
    font-size: 34px;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

@media only screen and (max-width: 575.98px) {
    .page-header .header-content {
        margin-top: -15.5%;
    }

    .carousel-caption .carousel-content a button.carousel-content-btn1 {
        background: var(--bs-secondary);
        color: var(--bs-white);
        opacity: 1;
        border: 0;
        border-radius: 20px;
        position: absolute;
        top: 63%;
        left: 2%;
        height: 30px;
    }

    .carousel-caption .carousel-content a button.carousel-content-btn2 {
        background: var(--bs-primary);
        color: var(--bs-white);
        opacity: 1;
        border: 0;
        border-radius: 20px;
        position: absolute;
        top: 60.2%;
        left: 57%;
        height: 30px;
        width: 40%;
    }
    .carousel-caption .carousel-content{
        margin-top: -117px;
    }
    .img-fluid_ {
        height: 515px;
    }

}

/*** Carousel End ***/

/* Mission vision Start  */
.mission{
    text-align: justify;
    margin-left:-7%;
}
.vision_img img{
    height: 320px;
    margin-bottom: 25%;
    margin-left: 10%;
    object-fit: cover;
}
.mission_img img{
    height:350px;
    margin-bottom: 25%;
}

.mission li {
    text-align: justify;
}
@media only screen and (max-width: 575.98px) {
    .vision_img img{
        height: 260px;
        object-fit: cover;
    }
    .mission_img img{
        height:260px;
        margin-bottom: 10%;
        margin-left: 10%;
    }
    .mission{
        margin-left: 0%;
        margin-bottom: 10%;
    }
}
/* Mission vision End */

/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}


/*** Services End ***/

/* register start */
.custom-body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #1a1a2e, #3a0ca3);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.custom-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    width: 350px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.custom-container:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(19, 1, 1, 0.2);
}

.custom-heading {
    margin-bottom: 20px;
    color: #fff;
    font-size: 30px;
}

.custom-input {
    width: 85%;
    padding: 12px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.custom-input::placeholder {
    color: #ccc;
}

.custom-input:focus {
    box-shadow: 0 0 15px rgba(123, 44, 191, 0.6);
    transform: scale(1.05);
}

.custom-button {
    background: #7b2cbf;
    color: white;
    padding: 12px 15px;
    border: none;
    width: 40%;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s, transform 0.2s;
    margin-top: 15px;
}

.custom-button:hover {
    background: rgb(142, 80, 229);
    transform: scale(1.1);
}

.custom-text {
    margin-top: 15px;
    font-size: 14px;
    color: #ccc;
}

.custom-link {
    color: #7b2cbf;
    text-decoration: none;
    transition: 0.3s;
}

.custom-link:hover {
    text-decoration: underline;
}
/* register end */


/*** Project Start ***/

.project-img {
    position: relative;
    padding: 10px;
}

.project-img::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    left: 0;
    background: var(--bs-secondary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-img::after {
    content: "";
    width: 150px;
    height: 150px;
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--bs-primary);
    border-radius: 10px;
    opacity: 1;
    z-index: -1;
    transition: .5s;
}

.project-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.project-content a {
    display: inline-block;
    padding: 20px 25px;
    background: var(--bs-primary);
    border-radius: 10px;
}

.project-item:hover .project-content {
    opacity: 1;
    transition: .5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
    opacity: 0;
}

/*** Project End ***/


/*** Blog Start ***/
/* Dark Theme Base */
.blog {
    
    position: relative;
    overflow: hidden;
}

.blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: 
        linear-gradient(45deg, transparent 65%, rgba(0, 240, 255, 0.05) 65%) 0 0,
        linear-gradient(-45deg, transparent 65%, rgba(0, 240, 255, 0.05) 65%) 0 0;
    background-size: 30px 30px; */
    opacity: 0.3;
}

/* Ultra-Modern Card Design */
.blog-card {
    height: 380px; /* Reduced height */
    background: rgba(20, 20, 40, 0.7);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 240, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 240, 255, 0.3),
        0 0 30px rgba(0, 240, 255, 0.1);
}

/* Glare Effect */
.card-glare {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 60%);
    z-index: 2;
    pointer-events: none;
}

/* Hover Effect Layer */
.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), 
                rgba(0, 240, 255, 0.1) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    pointer-events: none;
}

.blog-card:hover .card-hover-effect {
    opacity: 1;
}

/* Image Styling */
.blog-thumbnail {
    width: 100%;
    height: 160px;
    object-fit: cover;
    filter: grayscale(20%) contrast(110%);
    transition: all 0.5s ease;
}

.blog-card:hover .blog-thumbnail {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.05);
}

/* Category Badge */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 240, 255, 0.9);
    color: #111;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

/* Content Styling */
.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
    height: calc(100% - 160px);
    display: flex;
    flex-direction: column;
}

.author {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #00f0ff;
    margin-right: 10px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.blog-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
}

.author-name {
    color: #fff;
    margin: 0;
    font-size: 0.9rem;
}

.post-date {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
}

.post-title {
    color: #fff;
    font-size: 1.2rem;
    margin: 0 0 10px 0;
    line-height: 1.3;
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: all 0.3s ease;
}

.blog-card:hover .post-title {
    background: linear-gradient(90deg, #00f0ff, #fff);
    -webkit-background-clip: text;
}

.post-excerpt {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

/* Footer with Interactive Elements */
.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.read-more-btn {
    color: #00f0ff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more-btn i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover {
    color: #fff;
}

.read-more-btn:hover i {
    transform: translateX(3px);
}

.hover-reveal {
    opacity: 0;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-card:hover .hover-reveal {
    opacity: 1;
}

.hover-reveal span {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    margin-right: 10px;
}

.reaction-buttons i {
    color: rgba(255,255,255,0.6);
    margin-left: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.reaction-buttons i:hover {
    color: #00f0ff;
    transform: scale(1.2);
}

/* Dynamic Mouse Tracking */
.blog-card {
    cursor: pointer;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-card {
        height: 360px;
    }
}

@media (max-width: 768px) {
    .blog-card {
        height: 340px;
    }
    
    .blog-thumbnail {
        height: 140px;
    }
}

/* Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.wow.fadeInUp {
    animation: float 6s ease-in-out infinite;
}

.wow.fadeInUp:nth-child(2) {
    animation-delay: 0.2s;
}

.wow.fadeInUp:nth-child(3) {
    animation-delay: 0.4s;
}
/*** Blog End ***/

/* blog-details start */
/* Cyberpunk Base Styles */
       
        
        /* Header */
        .blog-header {
            text-align: center;
            padding: 25px 20px;
            position: relative;
            
        }
        
        .back-button {
            position: absolute;
            left: 55px;
            top: 40px;
            color:  #8a00ff;
            text-decoration: none;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .back-button:hover {
            color: #fff;
            transform: translateX(-5px);
        }
        
        .back-button i {
            margin-right: 8px;
        }
        
       
        
        .blog-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-bottom: -14px;
        }
        
        .blog-author-info {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .blog-author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid  #00f0ff;
            object-fit: cover;
            transition: all 0.3s ease;
        }
        
        .blog-author-avatar:hover {
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
        }
        
        .blog-author-name {
            font-weight: bold;
            margin: 0;
        }
        
        .post-date {
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }
        
        /* Blog Content Card */
        .blog-detail-card {
            max-width: 70%;
            margin: 0 auto 60px;
            background:  rgba(20, 20, 40, 0.9);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(0, 240, 255, 0.2);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            position: relative;
        }
        
        .blog-hero-image {
            width: 100%;
            height: 23rem;
            object-fit: cover;
            filter: grayscale(20%) contrast(110%);
            transition: all 0.5s ease;
        }
        
        .blog-detail-card:hover .blog-hero-image {
            filter: grayscale(0%) contrast(120%);
        }
        
        .blog-content {
            padding: 40px;
            position: relative;
        }
        
        .category-tag {
            position: absolute;
            top: -15px;
            right: 30px;
            background: rgba(0, 240, 255, 0.9);
            color: #111;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
        }
        
        .content-section {
            margin-bottom: 30px;
            position: relative;
        }
        
        .content-section:hover::before {
            content: "";
            position: absolute;
            left: -20px;
            top: 0;
            height: 100%;
            width: 4px;
            background:  #00f0ff;
            border-radius: 2px;
        }
        
        h2.blog-section-title {
            color:  #00f0ff;
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        h2.blog-section-title::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 2px;
            background:  #00f0ff;
        }
        
        .blog-details-p {
            margin-bottom: 20px;
            color: rgba(255,255,255,0.8);
        }
        
        /* Interactive Elements */
        .highlight-box {
            background: rgba(0, 240, 255, 0.1);
            border-left: 3px solid  #00f0ff;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            transition: all 0.3s ease;
        }
        
        .highlight-box:hover {
            background: rgba(0, 240, 255, 0.15);
            transform: translateX(5px);
        }
        
        .image-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        .grid-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            transition: all 0.3s ease;
            filter: grayscale(20%) contrast(110%);
        }
        
        .grid-image:hover {
            filter: grayscale(0%) contrast(120%);
            transform: scale(1.02);
            box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
        }
        
        /* Footer & Actions */
        .blog-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .blog-action-buttons {
            display: flex;
            gap: 15px;
        }
        
        .blog-action-btn {
            background: transparent;
            border: 1px solid  #00f0ff;
            color: #00f0ff;
            padding: 8px 20px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .blog-action-btn:hover {
            background: rgba(0, 240, 255, 0.1);
            transform: translateY(-3px);
        }
        
        .share-menu {
            position: relative;
        }
        
        .share-dropdown {
            position: absolute;
            bottom: 100%;
            right: 0;
            background:  rgba(20, 20, 40, 0.9);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 8px;
            padding: 15px;
            display: none;
            flex-direction: column;
            gap: 10px;
            min-width: 200px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        
        .share-menu:hover .share-dropdown {
            display: flex;
            animation: fadeIn 0.3s ease;
        }
        
        .share-link {
            color: #fff;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 5px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        
        .share-link:hover {
            background: rgba(0, 240, 255, 0.1);
            padding-left: 10px;
        }
        
        .read-time {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Related Posts */
        .related-posts {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .related-title {
            text-align: center;
            font-size: 1.8rem;
            margin-bottom: 40px;
            color:  #00f0ff;
        }
        
        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-detail-card {
                max-width: 97%;
            }
            .blog-header {
                padding-top: 70px;
            }
            
            .back-button {
                top: 20px;
                left: 20px;
            }
            
            
            .blog-hero-image {
                height: 250px;
            }
            
            .blog-content {
                padding: 25px;
            }
            
            .image-grid {
                grid-template-columns: 1fr;
            }
            
            .blog-actions {
                flex-direction: column;
                gap: 20px;
            }
            
            .blog-action-buttons {
                width: 100%;
                justify-content: space-between;
            }
            
            .share-dropdown {
                left: 0;
                right: auto;
            }
        }
/* blog-details end */


/*** Team Start ***/

.team-item {
    border-top: 30px solid var(--bs-secondary) !important;
    background: rgb(21 21 66 / 80%);
}

.team-content::before {
    height: 200px;
    display: block;
    content: "";
    position: relative;
    top: -101px;
    background: var(--bs-secondary);
    clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
    padding: 60px;
    opacity: 1;
}

.team-img-icon {
    position: relative;
    margin-top: -200px;
    padding: 30px;
    padding-bottom: 0;
}

.team-img {
    border: 9px solid var(--bs-white);
    margin-left: 32%;
    width: 38%;
}

.team-img img {
    border: 10px solid var(--bs-secondary);
    transition: .5s;
}

.team-item:hover h4 {
    color: var(--bs-primary);
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
    border: 10px solid var(--bs-secondary);
}

.team-carousel .owl-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.team-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 50px;
    display: flex;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
    width: 56px;
    height: 56px;
    border-radius: 56px;
    margin-left: 15px;
    background: var(--bs-secondary);
    color: var(--bs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .team-carousel {
        margin-top: 3rem;
    }

    .team-carousel .owl-nav {
        top: -85px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        margin-left: -15px;
    }
}

/*** Team End ***/


/*** Testimonial Start ***/
/* text */
.text-testimonial-button {
    width: 15%;
    padding: 5px 0px;
    margin-top: 32px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    color: white;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    /* Center the button by default */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.text-testimonial-button:hover {
    background: linear-gradient(135deg, #4361ee, #4cc9f0);
    transform: translateY(-2px);
}

/* Extra: Responsive adjustment if needed */
@media (max-width: 768px) {
    .text-testimonial-button {
        width: 50%; /* make it bigger on mobile */
        font-size: 16px;
    }
}


/* text end */






.testimonial {
    background: url('../img/testimonial_bg.png');
    background-position: 47% 36%;
    background-size: 72% auto;
    background-repeat: no-repeat;
}
.text-testimonial {
    background-position: 47% 36%;
    background-size: 72% auto;
    background-repeat: no-repeat;
}

.testimonial-item {
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
    height: 13rem; 
    padding: 20px;
}

.testimonial-item p {
    max-height: 6rem; /* control the height of the feedback text */
    overflow-y: auto; /* add vertical scrollbar if text is long */
}
.testimonial-carousel img{
    width: 50px;
    height: 50px;
}

.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #c1dad0;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    backdrop-filter: blur(5px) saturate(180%);
    -webkit-backdrop-filter: blur(5px) saturate(180%);
    background-color: rgba(17, 25, 40, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

/*** Testimonial End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #4B0082;
}

.contact-form {
    background: #4B0082;
}

.contact_us .contact_us_icon {
    background: var(--bs-secondary);
}

.contact_us .contact_us_h4 {
    color: var(--bs-indigo);
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    position: relative;
    background: linear-gradient(135deg, #1a1e25 0%, #0f1620 100%);
    color: #f8f9fa;
    min-height: 100vh;
    padding: 120px 0 17px;
    overflow: hidden;
}

/* Wave Divider at Top */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url("/static/images/footer-bg.jpg");
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,149.3C960,160,1056,160,1152,138.7C1248,117,1344,75,1392,53.3L1440,32L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23670fff" fill-opacity="1" d="M0,0L48,21.3C96,43,192,85,288,101.3C384,117,480,107,576,112C672,117,768,139,864,160C960,181,1056,203,1152,213.3C1248,224,1344,224,1392,224L1440,224L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"/></svg>');
    background-size: cover;
    background-position: 10% 10%;
}

/* Animated Background Pattern */
.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1%, transparent 1%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1%, transparent 1%);
    background-size: 60px 60px;
    opacity: 0.3;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: translateY(-5px);
}

.footer h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
}

.footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    border-radius: 10px;
}

.footer-column {
    /* background: rgba(255, 255, 255, 0.03); */
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.about-text {
    color: #adb5bd;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
    margin-top: 20px;
    text-align: justify;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 18px;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-links li:hover {
    padding-left: 20px;
}

.footer-links li:hover::before {
    width: 8px;
    height: 8px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 400;
    display: block;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.map-container {
    height: 200px;
    margin-bottom: 25px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.map-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 118, 230, 0.2) 0%, rgba(142, 84, 233, 0.2) 100%);
    pointer-events: none;
}

/* .map-container iframe {
    filter: grayscale(8.8) contrast(5.2);
    transition: all 0.5s ease;
} */

.map-container:hover iframe {
    filter: grayscale(0) contrast(1);
}

.subscribe-text {
    color: #adb5bd;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.subscribe-form {
    margin-bottom: 25px;
    position: relative;
    margin-left: -21px;
    width: 17.5rem;
}

.subscribe-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #fff;
    padding: 15px 25px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.subscribe-form .form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.subscribe-form .form-control::placeholder {
    color: #adb5bd;
    opacity: 0.7;
}

.subscribe-form .btn {
    position: absolute;
    right: 5px;
    top: 8px;
    border-radius: 50px;
    padding: 10px 15px;
    font-size: 12px;
    background: linear-gradient(90deg, #4776E6 0%, #8E54E9 100%);
    border: none;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(71, 118, 230, 0.3);
    transition: all 0.3s ease;
}

.subscribe-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(71, 118, 230, 0.4);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    z-index: -1;
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 50%;
}

.social-links a:hover {
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-links a:hover::before {
    transform: scale(1);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 50px;
    color: #adb5bd;
    font-size: 0.9rem;
    position: relative;
}

.copyright p {
    margin-bottom: 0;
}

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4776E6 0%, #8E54E9 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(71, 118, 230, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(71, 118, 230, 0.4);
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .footer {
        padding: 100px 0 30px;
    }
    
    .footer-column {
        padding: 25px;
    }
}

@media (max-width: 767.98px) {
    .footer {
        padding: 80px 0 30px;
    }
    
    .footer-column {
        margin-bottom: 20px;
    }
    
    .map-container {
        height: 180px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Animation for elements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-column {
    animation: fadeInUp 0.6s ease forwards;
}

.footer-column:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-column:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-column:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-column:nth-child(4) {
    animation-delay: 0.4s;
}
/*** Footer End ***/




/* services start  */
.service-card {
    border-radius: 15px;
    text-align: center;
    padding: 20px 30px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 25rem;
    position: relative;
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(25, 17, 51, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(112, 86, 255, 0.847);
    box-shadow: 0px 1px 2px rgb(114 0 255 / 50%), 0px 2px 4px rgb(59 0 255 / 50%), 0px 4px 8px rgb(67 0 255 / 50%), 0px 8px 16px rgb(102 0 255 / 50%);
}


.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-secondary);
    color: #4d79ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #e8e8e8;
}

.service-description {
    color: #b7b7b7;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.service-btn {
    position: absolute;
    top: 87%;
    left: 32%;
    background: var(--bs-secondary-1);
    color: white;
}

.project-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
    padding: 20px;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.project-img:hover .project-content {
    opacity: 1;
}

/* services end */

/* testimonial start */
.testimonial-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-image {
    flex: 1;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-image:hover {
    transform: scale(1.02);
}

.testimonial-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.testimonial-form-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.form-card {
    padding: 30px;
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(25, 17, 51, 0.85);
    border-radius: 16px;
    border: 1px solid rgba(112, 86, 255, 0.847);
    height: auto; /* Let content define height */
    width: 540px;
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 1px 2px rgb(114 0 255 / 50%), 
                0px 2px 4px rgb(59 0 255 / 50%), 
                0px 4px 8px rgb(67 0 255 / 50%), 
                0px 8px 16px rgb(102 0 255 / 50%);
}

@media only screen and (max-width: 575.98px) {
    .form-card {
        width: 350px;
        padding: 15px;
    }
}

.form-card h1 {
    font-size: 1.6rem;
    color: #f0f0f0;
    margin-bottom: 8px;
    text-align: center;
}   

.form-card p {
    font-size: 1rem;
    color: #b8b8b8;
    margin-bottom: 25px;
    text-align: center;
}

.testimonial-form .form-group {
    margin-bottom: 20px;
    position: relative;
}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea {
    width: 100%;
    padding: 10px 15px; 
    border-radius: 6px;
    font-size: 0.95rem; 
    background: rgba(40, 40, 70, 0.8); 
    color: white;
    border: 1px solid rgba(112, 86, 255, 0.3);
    transition: all 0.3s ease;
}

.testimonial-form input:focus,
.testimonial-form textarea:focus {
    outline: none;
    border-color: rgba(112, 86, 255, 0.847);
    box-shadow: 0 0 0 2px rgba(112, 86, 255, 0.2);
    background: rgba(40, 40, 70, 0.9);
    
}

.testimonial-form input::placeholder,
.testimonial-form textarea::placeholder {
    color: #b8b8b8;
    opacity: 0.7;
}

.testimonial-form textarea {
    resize: none;
    height: 90px;
}

/* Enhanced File Input */

.testimonial-form input[type="file"] {
    padding: 7px 9px; /* Reduced padding */
    background: rgba(40, 40, 70, 0.6); /* Slightly lighter background */
    border-radius: 4px; /* Sleek border radius for file input */
}

.testimonial-form input[type="file"]::file-selector-button {
    padding: 8px 12px;
    background: rgba(112, 86, 255, 0.5);
    border: none;
    border-radius: 4px;
    color: white;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.testimonial-form input[type="file"]::file-selector-button:hover {
    background: rgba(112, 86, 255, 0.7);
}

/* Smaller Submit Button */
.submit-btn {
    display: block;
    width: auto;
    padding: 10px 30px;
    margin: 25px auto 0;
    background: linear-gradient(135deg, #6a5acd, #8a2be2);
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #8a2be2, #6a5acd);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(138, 43, 226, 0.4);
}

/* Enhanced Rating Group */
.rating-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.rating-group input {
    display: none;
}

.rating-group label {
    font-size: 2rem;
    color: #444;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-group label:hover {
    transform: scale(1.2);
}

.rating-group input:checked ~ label {
    color: #ffca28;
    text-shadow: 0 0 5px rgba(255, 202, 40, 0.5);
}

.rating-group label:hover,
.rating-group label:hover ~ label {
    color: #ffca28;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        align-items: center;
        margin-top: -25%;
    }

    .testimonial-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .form-card h1 {
        font-size: 1.5rem;
    }

    .form-card p {
        font-size: 0.9rem;
    }

    .testimonial-form input,
    .testimonial-form textarea {
        font-size: 0.9rem;
        padding: 10px 12px;
    }

    .submit-btn {
        font-size: 0.9rem;
        padding: 8px 25px;
    }

    .rating-group label {
        font-size: 1.7rem;
    }
}

/* testimonial end */

/* enquiry button start */
.button-container {
    text-align: center;
}

/* Glowing Button */
.glow-button {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    padding: 9px 20px;
    border: none;
    border-radius: 30px;
    background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb3b, #ff7300, #ff0000);
    background-size: 300% 300%;
    animation: gradientShift 4s infinite;
    box-shadow: 0 0 5px rgba(255, 115, 0, 0.8);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 0%;
}

/* Hover Effects */
.glow-button:hover {
    box-shadow: 0 0 8px rgba(255, 115, 0, 1), 0 0 20px rgba(255, 235, 59, 0.6);
    transform: scale(1.1);
}

/* Animation for Gradient */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Smooth Bounce and Shake Animation */


/* enquiry button end */

/* logo carousel start  */
@keyframes slides {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.logos {
    overflow: hidden;
    padding: 0px 0px;
    white-space: nowrap;
    position: relative;
    margin-top: -6.7%;
}

.logos:before,
.logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 2;
}

.logos:before {
    left: 0;
    /* background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255,.1)); */
}

.logos:after {
    right: 0;
    /* background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255,.1)); */
}

.logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img {
    height: 100px;
}

/* logo carousel end */


/* Text Fill Animation */
.text-fill {
    position: relative;
    display: inline-block;
    font-weight: bold;
    overflow: hidden;
    background: linear-gradient(90deg, #ff7300, #ffeb3b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: textFill 2s ease-in-out forwards;
}

.text-filled {
    background: linear-gradient(90deg, #ff7300, #ffeb3b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* .text-filled::after {
    content: "";
    width: 0%;  
    height: 2px;
    background: linear-gradient(90deg, #ff7300, #ffeb3b);
    position: absolute;
    z-index: 999;
    left: 0;
    top: 105px;
    animation: border-width 3s ease-in-out infinite; 
    visibility: visible;
} */

/* Keyframes for Text Fill Animation */
/* @keyframes border-width {
    0% {
        width: 0%;
    }
    50% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
} */

/* text fill animation end */

.features_sec {
    background: url('../img/Untitled_esign.jpg');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 999;
    padding: 14px;
}

/* .why-choose-us-row{
    margin: auto;
} */
/* Card Styling */




.section_card {
    position: relative;
    backdrop-filter: blur(1px) saturate(180%);
    -webkit-backdrop-filter: blur(1px) saturate(180%);
    background-color: rgba(25, 17, 51, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(112, 86, 255, 0.847);
    padding: 20px;
    overflow: hidden;
    width: 100%; /* Instead of fixed 625px */
    margin: -8px auto; /* Centers cards properly */
}


@media only screen and (max-width: 575.98px) {
    .section_card {
    width: 100%; 
    margin: 0 auto; 
    }
}


.sec-icon {
    background: var(--bs-indigo);
}

/* enquiry form start  */

.glassmorphism-card {
    position: relative;
    backdrop-filter: blur(10px) saturate(180%); /* Increased blur for better effect */
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    background-color: rgba(25, 17, 51, 0.75);
    
    max-height: 90%;
    max-width: 85%;
    
    border-radius: 16px;
    border: 1px solid rgba(112, 86, 255, 0.847);
    box-shadow: 0px 1px 2px rgb(114 0 255 / 50%), 
                0px 2px 4px rgb(59 0 255 / 50%), 
                0px 4px 8px rgb(67 0 255 / 50%), 
                0px 8px 16px rgb(102 0 255 / 50%);
    overflow: hidden;
}



/* Input Fields with Glass Look */
.glass-input {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white */
    color: #000;
    /* Text color */
    border-radius: 12px;
    border: none;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(72, 38, 157, 0.2);
}

.glass-input::placeholder {
    color: rgba(183, 183, 183, 0.749);
    /* Placeholder color */
}

/* Button Styling */
.btn-dark {
    background-color: #48269d;
    color: white;
    border: none;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    font-size: 14px; /* Decrease text size */
    padding: 6px 12px; /* Reduce button size */
    width: 20px; /* Make button fit content */
    display: block;
    margin: 1px 7.7rem;
    max-width: 11rem;
    text-align: center;
    justify-content: center;
}

.btn-dark:hover {
    background-color: #3a1e7e;
    /* Slightly darker shade on hover */
}

/* enquiry form end */


/* modal design start */
/* Modal Enhancements */
.en-modal-header {
    background-color: var(--bs-secondary);
    color: white;
    border-bottom: 1px solid #dee2e6;
}

.modal-title {
    font-weight: bold;
}

.close {
    color: white;
    font-size: 2.5rem;
    background: none;
    outline: none;
    border: none;
}

.en-modal-body {
    background-color: #252525;
    padding: 30px;
}
.enquiry-modal-dialog {
    max-width: 475px;
}
.form-control {}

.form-control:focus {
    border-color: #495057;
    box-shadow: none;
}

.glass-input {
    width: 100%;
    padding: 10px;
    margin: 2px 0;
    border: none;
    border-bottom: 2px solid rgb(101 113 255 / 76%);
    font-size: 14px;
    color: #777;
    outline: none;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

.glass-input::placeholder {
    color: rgb(205, 205, 205);
}

.glass-input:focus {
    background: #bab8b83b;
    color: rgb(255, 255, 255);
}

textarea.form_control {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border: none;
    border-bottom: 2px solid rgb(101 113 255 / 76%);
    font-size: 14px;
    color: #777;
    outline: none;
    background: transparent;
    transition: all 0.3s ease-in-out;
}

.enq-btn-dark {
    background-color: var(--bs-secondary);
    border: none;
    width: 30px; /* Set a small width */
    height: 35px; /* Set a small height */
    padding: 5px; /* Reduce padding */
    font-weight: bold;
    font-size: 14px; /* Adjust font size */
    color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 65px; /* Centers the button */
    border-radius: 5px; /* Optional: Add rounded corners */
}

@media (max-width: 768px){
    .enq-btn-dark {
        background-color: var(--bs-secondary);
        border: none;
        max-width: 55%;
        width: 30px; /* Set a small width */
        height: 30px; /* Set a small height */
        padding: 5px; /* Reduce padding */
        font-weight: bold;
        font-size: 12px; /* Adjust font size */
        color: white;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 48px; /* Centers the button */
        border-radius: 5px; /* Optional: Add rounded corners */
    }
    .glassmorphism-card {
        max-width: 100%;
    }
}

.btn-dark:hover {
    background-color: #23272b;
}

.row.g-3 {
    margin-bottom: 5px;
}

/* modal design end */

/* alert start  */
.message-success {
    width: 32%;
    height: 80px;
    position: absolute;
    z-index: 99999;
    border-radius: 5px;
    margin: 35%;
    background: rgb(221, 255, 205);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 2px solid rgba(20, 180, 2, 0.989);
    font-family: sans-serif;
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    margin-top: 10px;

}

.message-success p {
    font-size: 20px;
    color: black;
    margin-top: 20px;

}

.message-success img {
    width: 60px;
    height: 60px;
    /* margin-top: 20px; */
    margin-right: 10px;
    mix-blend-mode: multiply;

}

#alertCloseBtn {
    color: black;
    margin-left: 15%;
}

/* alert end */


/* Project cards start  */
.project_card {
    display: grid;
    place-items: center;
    width: 80vw;
    max-width: 21.875rem;
    height: 28.125rem;
    overflow: hidden;
    border-radius: 0.625rem;
    box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
}

.project_card>* {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.card__background {
    object-fit: cover;
    max-width: 100%;
    height: 100%;
    opacity: 0.8;
}

.card__content {
    --flow-space: 0.9375rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-self: flex-end;
    height: 55%;
    padding: 12% 1.25rem 1.875rem;
    background: linear-gradient(180deg,
            hsla(0, 0%, 0%, 0) 0%,
            hsla(0, 0%, 0%, 0.4) 10%,
            hsl(0, 0%, 0%) 100%);
}

.card__content--container {
    --flow-space: 1.25rem;
}

.card__title {
    position: relative;
    width: fit-content;
    width: -moz-fit-content;
    color: rgb(183, 183, 183);
}


.card__title::after {
    content: "";
    position: absolute;
    height: 0.3125rem;
    width: calc(100% + 1.25rem);
    bottom: calc((1.25rem - 0.5rem) * -1);
    left: -1.25rem;
    background: linear-gradient(90deg, #ff7300, #ffeb3b);
}

.card__button {
    padding: 0.65em 1.6em;
    width: fit-content;
    width: -moz-fit-content;
    /* Prefijo necesario para Firefox  */
    font-variant: small-caps;
    font-weight: bold;
    border-radius: 0.45em;
    border: none;
    background: linear-gradient(90deg, #ff7300, #ffeb3b);
    font-family: var(--font-title);
    font-size: 1.125rem;
    color: black;
}

.card__button:focus {
    outline: 2px solid black;
    outline-offset: -5px;
}

@media (any-hover: hover) and (any-pointer: fine) {
    .card__content {
        transform: translateY(62%);
        transition: transform 500ms ease-out;
        transition-delay: 500ms;
    }

    .card__title::after {
        opacity: 0;
        transform: scaleX(0);
        transition: opacity 1000ms ease-in, transform 500ms ease-out;
        transition-delay: 500ms;
        transform-origin: right;
    }


    .card__background {
        transition: transform 500ms ease-in;
    }

    .card__content--container> :not(.card__title),
    .card__button {
        opacity: 0;
        transition: transform 500ms ease-out, opacity 500ms ease-out;
    }

    .project_card:hover,
    .project_card:focus-within {
        transform: scale(1.05);
        transition: transform 500ms ease-in;
    }

    .project_card:hover .card__content,
    .project_card:focus-within .card__content {
        transform: translateY(0);
        transition: transform 500ms ease-in;
    }

    .project_card:focus-within .card__content {
        transition-duration: 0ms;
    }

    .project_card:hover .card__background,
    .project_card:focus-within .card__background {
        transform: scale(1.3);
    }

    .project_card:hover .card__content--container> :not(.card__title),
    .project_card:hover .card__button,
    .project_card:focus-within .card__content--container> :not(.card__title),
    .project_card:focus-within .card__button {
        opacity: 1;
        transition: opacity 500ms ease-in;

    }

    .project_card:hover .card__title::after,
    .project_card:focus-within .card__title::after {
        opacity: 1;
        transform: scaleX(1);
        transform-origin: left;
        transition: opacity 500ms ease-in, transform 500ms ease-in;


    }

    .project_card:hover .card__title {

        background: linear-gradient(90deg, #ff7300, #ffeb3b);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;

    }
}



@media only screen and (max-width: 575.98px) {
    .project_card {
        display: grid;
        place-items: center;
        width: 80vw;
        max-width: 21.875rem;
        height: 28.125rem;
        overflow: hidden;
        border-radius: 0.625rem;
        box-shadow: 0.25rem 0.25rem 0.5rem rgba(0, 0, 0, 0.25);
        margin-left: 13px;
    }

}



/* Project cards end */


/* service page start  */
/* .wrapper {
    background: linear-gradient(30deg, #151515 10%, #0e1822);
    min-height: 100vh;
    width: 100%;
    display: flex;
    margin: 0;
    padding: 0;
} */

.service_container {
    width: 100%;
    /* max-width: 1200px; */
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
}

.service_row {
    /* display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 30px; */
    width: 100%;

}



.service__card {
    display: flex;
    align-items: center;
    gap: 48px;
    color: #fcfcfc;
    padding: 32px;
    border-radius: 30%;
    position: relative;
    z-index: 1;
    box-shadow: 6px 28px 46px -6px #000;
    margin-bottom: 20px;
 
    /* margin: 10px; */
}

.service__card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f27121, #000000 40%);
    z-index: -2;
}

.service__card::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border-radius: 1rem;
    background: linear-gradient(90deg, #171721, #060609);
    transition: box-shadow 0.3s ease;
    z-index: -1;
}


.service__card .info {
    display: flex;
    flex-flow: column nowrap;
}

.service__card .info .sub {
    color: #ff7a00;
    line-height: 28px;
    font-size: 17px;
    font-weight: 400;
}

.service__card .info .title {
    max-width: 260px;
    line-height: 28px;
    font-size: 14px;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service__card .info .btn {
    margin-top: 28px;
    color: #fff;
    background: transparent;
    border: unset;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 16px;
    margin-right: auto;
    cursor: pointer;
    position: relative;
    z-index: 0;
    transition: background 0.3s ease;
}

.service__card .info .btn::before,
.service__card .info .btn::after {
    content: '';
    position: absolute;
}

.service__card .info .btn::before {
    left: 50%;
    top: 50%;
    background: linear-gradient(90deg, #ff7a00 0%, transparent 45%, transparent 55%, #ff7a00 100%);
    transform: translate(-50%, -50%) rotate(55deg);
    width: 100%;
    height: 240%;
    border-radius: 16px;
    z-index: -2;
    opacity: 0.4;
    transition: all 0.3s ease;
}

.service__card .info .btn::after {
    left: 2px;
    top: 2px;
    background: #171721;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 16px;
    z-index: -1;
}

.service__card .info .btn:hover::before {
    animation: 5s move infinite linear;
    opacity: 1;
}

.service__card .image {
    width: 86px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 8px 12px 16px #000;
    position: relative;
    z-index: 0;
}
.service__card .image::before {
    content: '';
    position: absolute;
    background: linear-gradient(110deg, #ff7a00 10%, #000000);
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -2;
}

.service__card .image::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: calc(100% - 1px);
    height: calc(100% - 1px);
    border-radius: 50%;
    background: linear-gradient(90deg, #12121a, #030303);
    box-shadow: 6px 6px 14px -6px #f2712150 inset;
    z-index: -1;
}

.service__card .image>i {
    font-size: 30px;
    color: #ff7a00;
}


@keyframes move {
    0% {
        transform: translate(-50%, -50%) rotate(55deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(415deg);
    }
}
@media (max-width: 1024px) {
    .service_row {
        flex-direction: column;
        align-items: center;
    }

    .service__card {
        max-width: 90%;
        padding: 24px;
    }

    .service__card .image {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .service__card {
        max-width: 100%;
        padding: 20px;
    }

    .service__card .image {
        width: 50px;
        height: 50px;
    }

    .service__card .info .btn {
        font-size: 12px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .service__card {
        padding: 16px;
        gap: 10px;
    }

    .service__card .image {
        width: 40px;
        height: 40px;
    }

    .service__card .info .btn {
        font-size: 12px;
        padding: 6px 12px;
    }
}
/* service page end */


/* What we do page start  */

.why-choose-us h1 {
    text-align: center;
    margin-top: 20px;
}

/* Domain Section */
.domain-section {
    text-align: center;
    margin-bottom: 20px;
}

.domain-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.domain-section p {
    font-size: 1.2em;
    color: #555;
}

.justify-text{
    text-align: justify;
}

/* Content Wrapper */
.content-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.content {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.text-section h1,
.text-section p {
    margin-bottom: 10px;
    color: rgb(211, 209, 209);
    text-align: justify;
}

.sub-section {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.sub-section div {
    width: 48%;
}

.image {
    width: 40%;
    text-align: center;
}

.image img {
    height: auto;
    border-radius: 10px;
    width: 400px;
    height: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s ease-in-out;
}

.image img:hover {
    transform: scale(1);
}

/* Service Box */
.service_wrapper {
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

.service_box {
    background: #130739;
    padding: 17px 30px;
    border-radius: 10px;
    border: 1px solid transparent;
    transition: 0.3s;
    margin: 15px auto;
    height: 235px;
}

.service_box:hover {
    border: 1px solid #7AFCBB;
    transform: translateY(-10px);
}

.service_box h2 {
    font-size: 29px;
    font-weight: 800;
    margin: 21px 0 20px 0;
    color: white;
    text-align: left;
}

.service_box p {
    font-size: 14px;
    line-height: 26px;
    color: #b1aeae;
    text-align: left;
}

.main_container img {
    width: 279px;
    height: 265px;
    border-radius: 10px;
    margin-left: -30px;
}



/* Responsiveness */
@media (max-width: 768px) {
    .domain-section h2 {
        font-size: 1.5em;
    }

    .domain-section p {
        font-size: 1em;
    }

    .content-wrapper {
        flex-direction: column;
        padding: 0 15px;
        margin-bottom: 20px;
    }

    .content {
        width: 100%;
    }

    .sub-section {
        flex-direction: column;
    }

    .sub-section div {
        width: 100%;
    }

    .image {
        width: 100%;
    }

    .image img {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .service_wrapper {
        padding: 60px 20px;
    }

    .service_box {
        padding: 30px 20px;
        width: 100%;
    }

    .service_box h2 {
        font-size: 24px;
    }

    .service_box p {
        font-size: 13px;
    }
}

@media only screen and (max-width: 575.98px) {
    .domain-section h2 {
        font-size: 1.2em;
    }

    .domain-section p {
        font-size: 0.9em;
    }

    .content-wrapper {
        width: 100%;
        padding: 0 10px;
        gap: 10px;
    }

    .content {
        margin-bottom: 20px;
    }

    .text-section h1 {
        font-size: 1.2em;
    }

    .text-section p {
        font-size: 0.9em;
    }

    .sub-section div {
        margin-bottom: 10px;
    }

    .image img {
        max-width: 100%;
        height: auto;
    }

    .service_box {
        padding: 22px 22px;
        margin: 9px 22px;
        width: 19.2rem;
    }
    
    .service_box h2 {
        font-size: 27px;
        margin-bottom: 15px;
    }

    .service_box p {
        font-size: 14px;
    }
}



/* What we do page end */

/* floating animation start  */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* floating animation end */

/* loader start  */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    position: relative;
    width: 150px;
    height: 150px;
}

.line {
    position: absolute;
    width: 4px;
    height: 100px;
    background: #ff6f0f;
    animation: glow 2s infinite ease-in-out;
}

.line:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 50%;
    left: 0;
    animation-delay: 0.2s;
}

.line:nth-child(3) {
    top: 50%;
    right: 0;
    animation-delay: 0.4s;
}

.line:nth-child(4) {
    bottom: 0;
    left: 50%;
    animation-delay: 0.6s;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #00ffcc;
    border-radius: 50%;
    animation: glow 2s infinite ease-in-out;
}

.node:nth-child(5) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.8s;
}

.node:nth-child(6) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1s;
}

.node:nth-child(7) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 1.2s;
}

.node:nth-child(8) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1.4s;
}

@keyframes glow {

    0%,
    100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

.text {
    position: absolute;
    top: 200px;
    left: -10px;
    width: 180px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.highlight {
    color: #ff6f0f;
}

/* loader end */

/* gallery section start  */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 20px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.3s ease;
}
@media only screen and (max-width: 575.98px) {
    .gallery {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        padding: 20px;
    }
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Modal (Full Image View) */
.imageModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    /* Blurs the background */
    opacity: 0;
    transition: opacity 0.5s ease;
    /* Fade-in effect */
}

/* Modal Content (Image) */
.image-modal-content {
    width: 80%;
    height: auto;
    max-width: 800px;
    max-height: 600px;
    border-radius: 10px;
    transform: scale(0.8);
    transition: transform 0.3s ease-in-out;
    /* Smooth scale transition */
}

/* Close Button */
.closeBtn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.closeBtn:hover {
    color: red;
}

/* gallery section end */


/* contact us  */
.contact_us_icon{
    width: 60px; 
    height: 60px;
}

/* Dark Theme Container */


/* Heading */
.dark-contact-heading {
    color: #fff;
    font-weight: 600;
    font-size: 1.7rem;
    position: relative;
    padding-bottom: 10px;
}


/* Compact Contact Row */
.compact-contact-row {
    
    background: rgb(27 27 45 / 70%);
    border-radius: 8px;
    padding: 10px 0;
    margin: 0 auto;
    max-width: 900px;
}

.compact-contact-row:hover {
    transition: all 0.3s ease;
transform: translateY(-5px);
    box-shadow: 0px 1px 2px rgb(114 0 255 / 20%), 
                0px 2px 4px rgb(59 0 255 / 20%), 
                0px 4px 8px rgb(67 0 255 / 20%), 
                0px 8px 16px rgb(102 0 255 / 20%);
}

.compact-contact-item {
    padding: 0 10px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.compact-contact-item:last-child {
    border-right: none;
}

.compact-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(76, 201, 240, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4cc9f0;
    font-size: 14px;
    transition: all 0.3s ease;
}

.compact-contact-item:hover .compact-contact-icon {
    background: rgba(76, 201, 240, 0.2);
    transform: scale(1.1);
}

.compact-contact-label {
    font-size: 12px;
    color: #a1a1a1;
    margin-bottom: 2px;
}

.compact-contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

/* Dark Form Styles */
.dark-contact-form {
    background: rgba(25, 25, 45, 0.8);
    padding: 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}




.dark-contact-form:hover{
    transition: all 0.3s ease;
transform: translateY(-5px);
    box-shadow: 0px 1px 2px rgb(114 0 255 / 20%), 
                0px 2px 4px rgb(59 0 255 / 20%), 
                0px 4px 8px rgb(67 0 255 / 20%), 
                0px 8px 16px rgb(102 0 255 / 20%);
}

.dark-form-input, .dark-form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgb(32 23 56 / 57%);
    border: 1px solid rgb(75 228 255 / 20%);
    border-radius: 6px;
    color: #fff;
    transition: all 0.3s ease;
    margin-bottom: 0;
}



.dark-form-input:focus, .dark-form-textarea:focus {
    outline: none;
    border-color: #4cc9f0;
    box-shadow: 0 0 0 2px rgba(76, 201, 240, 0.2);
    background: rgba(20, 20, 40, 1);
}

.dark-form-textarea {
    min-height: 120px;
    resize: vertical;
}

.dark-form-input::placeholder, .dark-form-textarea::placeholder {
    color: #6c757d;
}

/* Submit Button */
.dark-submit-btn {
    background: linear-gradient(135deg, #4cc9f0, #4361ee);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.dark-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 97, 238, 0.3);
    
}

/* Map Container */
.dark-map-container {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dark-contact-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .compact-contact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
    }
    
    .compact-contact-item:last-child {
        border-bottom: none;
    }
    
    .dark-contact-heading {
        font-size: 1.5rem;
    }
    
    .dark-contact-form {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .dark-contact-heading {
        font-size: 1.3rem;
    }
    
    .compact-contact-row {
        padding: 5px 0;
    }
    
    .compact-contact-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .compact-contact-value {
        font-size: 12px;
    }
    
    .dark-form-input, .dark-form-textarea {
        padding: 10px 12px;
    }
}


/* contact us  */

/* enquiry button start */

.enquiry-btn {
    position: fixed;
    bottom: 25%;
    right: -10px;
    background: linear-gradient(45deg, #ff4081, #ff1f74);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: none;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    border: 2px solid transparent;
    backdrop-filter: blur(8px);
    transform: scale(1);
    opacity: 0.8;
}

.enquiry-btn:hover {
    background: linear-gradient(45deg, #ff1f1f, #ff4040);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 2px solid #fff;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6);
}

.enquiry-btn:active {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .enquiry-btn {
        display: block;
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.enquiry-btn {
    animation: float 3s ease-in-out infinite;
}

/* enquiry button end */



/* 404 Page start  */


#notfound {
    position: relative;
    height: 100vh;
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 520px;
    width: 100%;
    line-height: 1.4;
    text-align: center;
}

.notfound .notfound-404 {
    position: relative;
    height: 240px;
}

.notfound .notfound-404 h1 {
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 252px;
    font-weight: 900;
    margin: 0px;
    color: #c0c0c0;
    text-transform: uppercase;
    letter-spacing: -40px;
    margin-left: -20px;
}

.notfound .notfound-404 h1>span {
    text-shadow: -8px 0px 0px #525151;
}

.notfound .notfound-404 h3 {
    font-family: 'Cabin', sans-serif;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0px;
    letter-spacing: 3px;
    padding-left: 6px;
}

.notfound h2 {
    font-family: 'Cabin', sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
    color: #f5f5f5;
    margin-top: 0px;
    margin-bottom: 25px;
}

@media only screen and (max-width: 767px) {
    .notfound .notfound-404 {
        height: 200px;
    }

    .notfound .notfound-404 h1 {
        font-size: 200px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound .notfound-404 {
        height: 162px;
    }

    .notfound .notfound-404 h1 {
        font-size: 162px;
        height: 150px;
        line-height: 162px;
    }

    .notfound h2 {
        font-size: 16px;
    }
}

/* 404 Page end */


/* Notice start  */
/* Center the entire page content */

.notification-container {
    width: 97%;
    max-width: 700px;
    text-align: center;
    margin: auto;
}

.notification-container h1 {
    margin-bottom: 20px;
    color: #4a4a4a;

}

/* Notification box design */
.notification-box {
    margin: 10px 0;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    /* Smooth hover animation */

    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgba(0, 51, 91, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.125);
}

.notification-box:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
    /* Slight scaling on hover */
}

/* Date box design */
.date-box {
    background-color: #4caf50;
    color: white;
    font-weight: bold;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    margin-right: 15px;
    flex-shrink: 0;
}

.date-box span {
    display: block;
    font-size: 18px;
}

/* Notification details */
.notification-details h2 {
    margin: 0;
    font-size: 1.2em;
    text-align: left;
}

.notification-details h2 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 23px;
}

.notification-details h2 a:hover {
    color: #4caf50;
}

/* Ensure responsiveness */
@media (max-width: 600px) {
    .notification-box {
        flex-direction: column;
        text-align: center;
        margin: 28px 0px 0px 20px;
        display: flex;
        flex-direction: row;
    }

    .date-box {
        margin: 0 0 15px 0;
   
    }
    .notification-details h2 {
        margin: 0;
        font-size: 1.2em;
        text-align: left;
        margin-left: 10px;
    }
    .notification-details h2 a {
        transition: color 0.3s ease;
        color: #f6faff;
        text-decoration: underline;
        font-size: 25px;
    }
}
/* Notice end */

/* Notice details start  */

.notice-box {
    border-radius: 15px;
    width: 90%;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
    border-radius: 23px;
    border-radius: 21px;
    background: linear-gradient(145deg, #c1d2ea, #dae0e8);
    /* box-shadow: 3px 3px 10px #2b3d56, -3px -3px 28px #374f70; */
    margin: 24px auto;
}

/* Title with Icon */
.notice-title {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(0,170,25);
background: linear-gradient(50deg, rgba(0,170,25,1) 35%, rgba(1,89,17,1) 93%);
    color: #fff;
    padding: 20px;
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
}

.notice-title i {
    margin-right: 10px;
}

/* Message styles */
.notice-content {
    padding: 20px;
    font-size: 1.1em;
    line-height: 1.6em;
    color: #0a0e1e;
    text-align: center;
}

.notice-content p {
    margin-bottom: 15px;
    text-align: left;
}

.notice-date {
    font-size: 0.9em;
    color: #888;
    margin-top: 15px;
    text-align: right;
}

/* Button styles */
.notice-btn {
    display: inline-block;
    text-align: center;
    background-color: #0077e0;
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    margin: 20px auto;
    border-radius: 30px;
    font-size: 1em;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    display: block;
    max-width: 150px;
}

.notice-btn:hover {
    background: #283e51;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    color: white;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .notice-title {
        font-size: 1.2em;
        padding: 10px;
    }

    .notice-content {
        font-size: 0.9em;
        line-height: 1.4em;
    }

    .notice-btn {
        padding: 8px 16px;
    }
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(15deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-15deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.bell-icon {
    font-size: 40px;
    /* Adjust the size */
    animation: ring 1s infinite;
    /* Loop the animation */
    display: inline-block;
    transition: transform 0.3s ease-in-out;
    color: rgb(255, 174, 0);
}


/* Notice details end */

/* cutome underline start */
.title-underline {
    position: relative;
    display: inline-block;

}

.title-underline::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Adjust this to move the line closer or farther */
    left: 0;
    width: 100%;
    height: 2px; /* Thickness of the underline */
    background: linear-gradient(to right, rgba(255, 0, 0, 0) 0%, rgb(188, 188, 188) 30%, rgb(249, 249, 249) 70%, rgba(255, 0, 0, 0) 100%);
    
    /* Start with scale 0 */
    transform: scaleX(0);
    transform-origin:center; /* Expand from the center */
    transition: transform 0.5s ease-in-out;
    animation: expand 2s ease-in-out infinite; /* Infinite animation */
}

@keyframes expand {
    0% {
        transform: scaleX(0); /* Start at 0 (centered) */
    }
    50% {
        transform: scaleX(1); /* Full width */
    }
    100% {
        transform: scaleX(0); /* Shrink back to 0 */
    }
}

/* cutome underline end */


/* Advisory Comittee start  */
/* Black Theme Advisor Cards */
.team-section {
    padding: 60px 20px;
    background: #121212; /* Dark background */
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: #ff6f61;
    margin-bottom: 45px;
    position: relative;
}

.advisory_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.advisory_card {
    background: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    position: relative;
    border: 1px solid #333;
}

.advisory_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(255, 111, 97, 0.2);
    border-color: #ff6f61;
}

.advisor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #ff6f61;
    object-fit: cover;
    margin: 20px auto;
    display: block;
    transition: all 0.3s ease;
}

.advisory_card:hover .advisor-img {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 111, 97, 0.4);
}

.advisory_card-body {
    padding: 0 20px 20px;
    text-align: center;
    color: #e0e0e0;
}

.advisory_card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff6f61;
    margin-bottom: 5px;
    display: block;
    text-decoration: none;
    transition: color 0.3s;
}

.advisory_card-title:hover {
    color: #ff8c7a;
}

.advisory_card-text {
    font-size: 0.95rem;
    color: #aaa;
    margin-bottom: 15px;
}

.advisory_card-description {
    font-size: 0.85rem;
    color: #b0b0b0;
    line-height: 1.5;
    margin: 15px 0;
    padding: 10px;
    background: #252525;
    border-radius: 8px;
    display: none; /* Hidden by default */
}

.advisory_card:hover .advisory_card-description {
    display: block; /* Show on hover */
    animation: fadeIn 0.5s ease;
}

.social-icons {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #333;
}

.social-icons a {
    margin: 0 10px;
    color: #aaa;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ff6f61;
    transform: translateY(-3px);
}

/* Animation for description */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .advisory_card {
        max-width: 100%;
    }
    
    .advisor-img {
        width: 100px;
        height: 100px;
    }
}
/* Advisory Comittee end */

/* advisory details  */
/* Main Profile Wrapper */
.advisor-profile-wrapper {
    max-width: 1100px;
    margin: 40px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}
/* Adding a Unique Background Effect */
.advisor-profile-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(93, 63, 211, 0.1);
    border-radius: 50%;
}
.advisor-profile-wrapper::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(93, 63, 211, 0.1);
    border-radius: 50%;
}
/* Hover Effect */
.advisor-profile-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}
/* Header Banner */
.advisor-header-banner {
    background: linear-gradient(135deg, #5e60ce, #5390d9);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    font-weight: bold;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 20px;
    transition: background 0.3s ease-in-out;
}
/* Hover Effect for Header */
.advisor-header-banner:hover {
    background: linear-gradient(135deg, #5390d9, #5e60ce);
}
/* Profile Section - Aligning Photo to Left */
.advisor-profile-section {
    display: flex;
    gap: 25px;
    margin-top: -20px;
    align-items: center;
    text-align: left;
    padding: 20px;
}
/* Profile Picture - Positioned Left */
.advisor-profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 6px solid white;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, border 0.3s ease-in-out;
}
/* Hover Effect for Profile Picture */
.advisor-profile-pic:hover {
    transform: scale(1.08);
    border: 6px solid #5390d9;
}
/* Profile Details - Text Justified */
.advisor-profile-details {
    flex: 1;
    text-align: justify;
}
/* Unique Font Styles */
.advisor-profile-details h2 {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-in-out;
}
/* Hover Effect */
.advisor-profile-details h2:hover {
    color: #5e60ce;
}
.advisor-profile-details h4 {
    color: #ff5733;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease-in-out;
}
/* Hover Effect */
.advisor-profile-details h4:hover {
    color: #d43f00;
}
.advisor-profile-details small {
    color: #666;
    font-size: 14px;
    text-align: center;
    display: block;
    line-height: 1.6;
}
/* Information Section */
.advisor-info-section {
    margin-top: 20px;
    font-weight: bold;
    color: #2575fc;
    text-align: center;
    font-size: 16px;
}
/* Accordion Button */
.advisor-accordion-button {
    font-weight: bold;
    color: #333;
    background-color: #f4f7fc;
    border: none;
    padding: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
/* Hover Effect */
.advisor-accordion-button:hover {
    background-color: #2575fc;
    color: white;
    transform: scale(1.02);
}
/* Accordion Body */
.accordion-body {
    max-height: 250px;
    overflow-y: auto;
    padding: 15px;
    text-align: justify;
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    background: rgba(245, 245, 245, 0.7);
    border-radius: 8px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .advisor-profile-section {
        flex-direction: column;
        text-align: center;
    }
    .advisor-profile-pic {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    .advisor-profile-details {
        text-align: center;
    }
    .advisor-profile-wrapper {
        margin: 40px 10px;
        padding: 20px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .advisor-profile-wrapper {
        padding: 15px;
    }
    .advisor-header-banner {
        font-size: 18px;
        height: 120px;
        padding: 10px;
    }
    .advisor-profile-pic {
        width: 120px;
        height: 120px;
        margin-top: 20px;
    }
    .advisor-profile-details h2 {
        font-size: 22px;
        margin-top: 10px;
    }
    .advisor-profile-details h4 {
        font-size: 14px;
    }
    .advisor-accordion-button {
        font-size: 14px;
    }
}


/* apply job */


.apply-job {
    font-family: 'Poppins', sans-serif;
    background-color: #0f172a;
    color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #7e22ce;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7e22ce;
}

/* Hero Section */

/* Section Styles */
section {
    padding: 10px 0;
    position: relative;
}

.jobs-section {
    background-color: #020617;
    position: relative;
    overflow: hidden;
}

.jobs-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
}

.internships-section {
    background: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    position: relative;
    overflow: hidden;
}

.internships-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(126, 34, 206, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(50px);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-container {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.section-title-decoration {
    position: absolute;
    bottom: 5px;
    left: -10px;
    width: calc(100% + 20px);
    height: 12px;
    background-color: rgba(126, 34, 206, 0.2);
    z-index: 0;
    border-radius: 6px;
}

.internships-section .section-title-decoration {
    background-color: rgba(59, 130, 246, 0.2);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Controls */
.filter-controls {
    background-color: rgba(30, 41, 59, 0.5);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid #334155;
    margin-bottom: 40px;
}

.search-box, .select-box {
    position: relative;
}

.search-box i, .select-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
}

.search-box input, .select-box select {
    padding-left: 40px;
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid #334155;
    color: #f8fafc;
    border-radius: 8px;
    height: 48px;
}

.search-box input:focus, .select-box select:focus {
    background-color: rgba(15, 23, 42, 0.9);
    border-color: #7e22ce;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
    color: #f8fafc;
}

.select-box select option {
    background-color: #0f172a;
    color: #f8fafc;
}

/* Job Cards */
.job-card {
    background: linear-gradient(145deg, #1e293b 0%, rgba(30, 41, 59, 0.8) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
    border-color: rgba(126, 34, 206, 0.3);
}

.job-card-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(126, 34, 206, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 0 0 0 100%;
    z-index: 0;
}

.job-card-header {
    display: flex;
    align-items: center;
    padding: 25px 25px 15px;
    position: relative;
    z-index: 1;
}

.company-logo {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin-right: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.job-card-title {
    flex: 1;
}

.job-card-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.company-name {
    color: #7e22ce;
    font-weight: 500;
    margin-bottom: 0;
}

.job-card-body {
    padding: 0 25px 20px;
    position: relative;
    z-index: 1;
}

.job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-detail {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.job-detail i {
    margin-right: 5px;
    font-size: 0.85rem;
}

.job-description {
    color: #f8fafc;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.salary-range {
    display: flex;
    align-items: center;
    color: #10b981;
    font-weight: 500;
    margin-bottom: 20px;
}

.salary-range i {
    margin-right: 8px;
}
.job-card-footer {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.skills-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skills-heading {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.job-tag {
    background-color: rgba(126, 34, 206, 0.15);
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.job-tag:hover {
    background-color: rgba(126, 34, 206, 0.25);
    transform: translateY(-2px);
}

.job-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-apply {
    background: linear-gradient(135deg, #7e22ce 0%, #9333ea 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(126, 34, 206, 0.5);
    color: white;
}

.btn-save {
    background-color: transparent;
    border: 1px solid #334155;
    color: #94a3b8;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-save:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #7e22ce;
    border-color: #7e22ce;
}

/* Internship Cards */
.internship-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
}

.internship-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.8) 0%, #1e293b 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #334155;
    box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.3);
}

.internship-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6 0%, #7e22ce 100%);
}

.internship-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

.internship-card-content {
    padding: 25px;
    flex: 1;
}

.internship-header {
    margin-bottom: 20px;
    position: relative;
}

.internship-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.company-badge {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.internship-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 15px;
}

.internship-detail {
    display: flex;
    align-items: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

.internship-detail i {
    margin-right: 8px;
    font-size: 0.85rem;
}

.internship-description {
    color: #f8fafc;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.internship-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.internship-tag {
    background-color: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.internship-tag:hover {
    background-color: rgba(59, 130, 246, 0.25);
    transform: translateY(-2px);
}

.internship-card-action {
    padding: 20px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-apply-internship {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-apply-internship:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
    color: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.job-item, .internship-item {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.job-item:nth-child(1), .internship-item:nth-child(1) { animation-delay: 0.1s; }
.job-item:nth-child(2), .internship-item:nth-child(2) { animation-delay: 0.2s; }
.job-item:nth-child(3), .internship-item:nth-child(3) { animation-delay: 0.3s; }
.job-item:nth-child(4), .internship-item:nth-child(4) { animation-delay: 0.4s; }
.job-item:nth-child(5), .internship-item:nth-child(5) { animation-delay: 0.5s; }
.job-item:nth-child(6), .internship-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .internship-listings {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .internship-listings {
        grid-template-columns: 1fr;
    }
    
    .job-card, .internship-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .job-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .company-logo {
        margin-bottom: 15px;
    }
    
    .job-details, .internship-details {
        flex-direction: column;
        gap: 8px;
    }
}

/* Add these styles to the end of your existing CSS file */

/* Modal Styles */
.modal-content-job {
    background: linear-gradient(145deg, #1e293b 0%, rgba(30, 41, 59, 0.9) 100%);
    border: 1px solid #334155;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header, .modal-footer {
    border-color: rgba(255, 255, 255, 0.1);
}

.modal-title {
    font-weight: 600;
}

.modal-title span {
    color: #7e22ce;
    font-weight: 700;
}

#internshipApplicationModal .modal-title span {
    color: #3b82f6;
}

/* Form Styles */
.form_control, .form-select {
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid #334155;
    color: #f8fafc;
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background-color: rgba(15, 23, 42, 0.9);
    border-color: #7e22ce;
    box-shadow: 0 0 0 3px rgba(126, 34, 206, 0.2);
    color: #f8fafc;
}

#internshipApplicationModal .form-control:focus, 
#internshipApplicationModal .form-select:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.form-check-input {
    background-color: rgba(15, 23, 42, 0.7);
    border: 1px solid #334155;
}

.form-check-input:checked {
    background-color: #7e22ce;
    border-color: #7e22ce;
}

#internshipApplicationModal .form-check-input:checked {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

.invalid-feedback {
    font-size: 0.8rem;
    font-weight: 500;
}

/* Progress Bar Styles */
.application-progress {
    margin-bottom: 2rem;
}

.progress-container {
    position: relative;
    padding: 0 10px;
}

.progress {
    height: 6px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 30px;
}

.progress-bar {
    border-radius: 3px;
    transition: width 0.5s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -7px;
    width: 100%;
    left: 0;
    padding: 0 10px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0f172a;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 8px;
    transition: all 0.3s ease;
}

.progress-step.active .step-indicator {
    background-color: #7e22ce;
    border-color: #7e22ce;
    color: white;
    transform: scale(1.2);
}

.progress-step.active .step-label {
    color:#f8fafc;
    font-weight: 500;
}

.progress-step.completed .step-indicator {
    background-color: #10b981;
    border-color: #10b981;
    color: white;
}

#internshipApplicationModal .progress-step.active .step-indicator {
    background-color: #3b82f6;
    border-color: #3b82f6;
}

/* Step Styles */
.application-step {
    animation: fadeIn 0.5s ease;
}

.step-title {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #7e22ce;
    border-radius: 3px;
}

#internshipApplicationModal .step-title::after {
    background-color: #3b82f6;
}

/* Review Section Styles */
.review-section {
    background-color: rgba(15, 23, 42, 0.5);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.review-header {
    background-color: rgba(15, 23, 42, 0.8);
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-header h5 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1rem;
}

.review-content {
    padding: 15px 20px;
}

.review-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.review-content strong {
    color: #f8fafc;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-success, .btn-info {
    padding: 10px 20px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #7e22ce 0%, #9333ea 100%);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(126, 34, 206, 0.5);
}

.btn-secondary {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border: none;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(59, 130, 246, 0.5);
}

.btn-success {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border: none;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(16, 185, 129, 0.5);
}

.btn-info {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    border: none;
    color: white;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(6, 182, 212, 0.5);
    color: white;
}

.btn-outline-light {
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .progress-steps {
        display: none;
    }
    
    .progress {
        margin-bottom: 15px;
    }
    
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        border-radius: 12px;
    }
}
/* apply job end */


/* adviosr detail start */

.advisor-heading{
    display: block;
    margin: 0 auto 15px auto; /* top right bottom left */
    text-align: center;
}

.advisor-head-title{
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: -10px;
    margin-top: 10px;
    position: relative;
    z-index: 1;
}

.advisor-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 90vh;
    width: 100%;
  }

  /* Card Container */
  .advisor-card-portrait {
    width: 320px;
    height: 480px;
    margin-left: 10px;
    background: linear-gradient(145deg, #1a1a2e, #24243e);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
  }

  /* Glowing Border Effect */
  .card-glow {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #00f0ff, #ff00ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
    transition: all 0.5s ease;
  }

  /* Image Container */
  .advisor-image-container {

    height: 178px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .advisor-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(0, 240, 255, 0.3);
    margin: 0.5rem 5.5rem -1.5rem;
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.3);
    transition: all 0.3s ease;

        
  }

  .advisor-image:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,240,255,0.5);
}

  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  }

  .corner-ribbon {
    position: absolute;
    top: 22px;
    right: -29px;
    background: linear-gradient(45deg, #ff00ff, #00f0ff);
    color: #000;
    padding: 5px 30px;
    font-size: 0.7rem;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
  }

  /* Content Area */
  .advisor-content {
    padding: 15px;
    position: relative;
    z-index: 2;
    height: calc(100% - 220px);
    display: flex;
    flex-direction: column;
  }

  .advisor-name {
    font-size: 1.31rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    background: linear-gradient(90deg, #fff, #00f0ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
  }

  .advisor-designation {
    color: #00f0ff;
    font-size: 0.89rem;
    margin: 0 0 0px 0;
    font-weight: 500;
  }

  .advisor-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: -10px;
    flex-grow: 1;
  }

  /* Stats Section */
  .advisor-stats {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item {
    text-align: center;
  }

  .stat-value {
    font-size: 1.3rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00f0ff, #ff00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  /* Action Buttons */
  .action-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    margin-bottom: 23%;

  }

  .profile-btn {
    background: linear-gradient(45deg, #00f0ff, #ff00ff);
    color: #000;
    padding: 10px 15px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
  }

  .profile-btn i {
    transition: transform 0.3s ease;
  }

  .social-buttons {
    display: flex;
    gap: 10px;
  }

  .social-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s ease;
  }

  .social-btn.linkedin {
    background: rgba(10, 102, 194, 0.2);
    border: 1px solid rgba(10, 102, 194, 0.5);
  }

  .social-btn.email {
    background: rgba(212, 70, 56, 0.2);
    border: 1px solid rgba(212, 70, 56, 0.5);
  }

  /* Back Side (3D Flip Content) */
  .advisor-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0f0c29, #1a1a2e);
    border-radius: 20px;
    padding: 25px;
    box-sizing: border-box;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
  }

  .advisor-back h4 {
    color: #00f0ff;
    font-size: 1.2rem;
    margin-top: 0;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    padding-bottom: 10px;
  }

  .advisor-back ul {
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
  }

  .advisor-back li {
    margin-bottom: 10px;
    position: relative;
  }

  .advisor-back li::before {
    content: "▹";
    color: #00f0ff;
    position: absolute;
    left: -15px;
  }

  /* Hover Effects */
  .advisor-card-portrait:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.2);
  }

  .advisor-card-portrait:hover .card-glow {
    opacity: 1;
    padding: 3px;
  }

  .advisor-card-portrait:hover .advisor-image {
    filter: grayscale(0%) contrast(120%);
    transform: scale(1.1);
  }



  .advisor-card-portrait:hover .profile-btn {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.5);
  }

  .advisor-card-portrait:hover .profile-btn i {
    transform: translateX(5px);
  }

  .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
  }

  .social-btn.linkedin:hover {
    background: rgba(10, 102, 194, 0.8);
  }

  .social-btn.email:hover {
    background: rgba(212, 70, 56, 0.8);
  }

  /* 3D Flip Effect */


  /* Animations */
  @keyframes ribbonSlide {
    0% {
      right: -30px;
    }

    100% {
      right: 15px;
    }
  }

  /* Responsive Design */
  @media (max-width: 400px) {
    .advisor-card-portrait {
      width: 95%;
      height: 500px;
    }

    .advisor-image-container {
      height: 180px;
    }
  }
/* adviosr test end */

/* advisor details start */

        
        /* Page Layout */
        .advisor-profile-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 2rem;
            position: relative;
        }
        
        /* Glowing Background Elements */
        .advisor-bg-blur {
            position: fixed;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            z-index: -1;
        }
        
        .bg-blur-1 {
            background: #00f0ff;
            top: -100px;
            left: -100px;
        }
        
        .bg-blur-2 {
            background: #ff00ff;
            bottom: -100px;
            right: -100px;
        }
        
        /* Sidebar Profile Card */
        .advisor-profile-sidebar {
            position: sticky;
            top: 2rem;
            height: fit-content;
        }
        
        .advisor-profile-card {
            background:  linear-gradient(145deg, #1a1a2e, #24243e);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .advisor-profile-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #00f0ff, #ff00ff);
        }
        
        .advisor-profile-image {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(0,240,255,0.3);
            margin: 0 auto 1.5rem;
            box-shadow: 0 5px 20px rgba(0,240,255,0.3);
            transition: all 0.3s ease;
        }
        
        .advisor-profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0,240,255,0.5);
        }
        
        .advisor-profile-name {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            background: linear-gradient(90deg, #fff, #00f0ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .advisor-profile-title {
            color: #00f0ff;
            font-size: 1rem;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        
        .profile-contact {
            margin: 1.5rem 0;
        }
        
        .advisor-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: rgba(255,255,255,0.8);
        }
        
        .advisor-contact-item i {
            margin-right: 10px;
            color: #00f0ff;
            width: 20px;
            text-align: center;
        }
        
        .advisor-social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .social-link.linkedin {
            background: rgba(10, 102, 194, 0.2);
            border: 1px solid rgba(10, 102, 194, 0.5);
        }
        
        .social-link.email {
            background: rgba(212, 70, 56, 0.2);
            border: 1px solid rgba(212, 70, 56, 0.5);
        }
        
        .social-link.twitter {
            background: rgba(29, 161, 242, 0.2);
            border: 1px solid rgba(29, 161, 242, 0.5);
        }
        
        .social-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,240,255,0.3);
        }
        
        .social-link.linkedin:hover {
            background: rgba(10, 102, 194, 0.8);
        }
        
        .social-link.email:hover {
            background: rgba(212, 70, 56, 0.8);
        }
        
        .social-link.twitter:hover {
            background: rgba(29, 161, 242, 0.8);
        }
        
        /* Main Content Area */
        .profile-main {
            background:  linear-gradient(145deg, #1a1a2e, #24243e);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        .advisor-section-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: #00f0ff;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        .advisor-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #00f0ff, #ff00ff);
            border-radius: 3px;
        }
        
        
        .advisor-about-text {
            color: rgba(255,255,255,0.8);
            margin-bottom: 2rem;
            line-height: 1.7;
        }
        
        /* Stats Grid */
        .advisor-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .advisor-stat-card {
            background: rgba(0,0,0,0.2);
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }
        
        .advisor-stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,240,255,0.1);
            border-color: rgba(0,240,255,0.3);
        }
        
        .advisor-stat-value {
            font-size: 2rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
            background: linear-gradient(45deg, #00f0ff, #ff00ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        
        .advisor-stat-label {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Expertise Section */
        .expertise-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 1.5rem 0;
        }
        
        .expertise-item {
            background: rgba(0,0,0,0.2);
            border-radius: 10px;
            padding: 1rem;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .expertise-item:hover {
            background: rgba(0,240,255,0.1);
            transform: translateX(5px);
        }
        
        .expertise-icon {
            width: 55px;
            height: 47px;
            background: rgba(0,240,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: #00f0ff;
            font-size: 1.2rem;
        }
        
        .expertise-text h4 {
            font-size: 1rem;
            margin-bottom: 0.2rem;
            color: white;
        }
        
        .expertise-text p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
        }
        
        /* Experience Timeline */
        .timeline {
            position: relative;
            margin: 2rem 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0px;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, #00f0ff, #ff00ff);
        }
        
        .timeline-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 2rem;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 5px;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #00f0ff;
            box-shadow: 0 0 0 3px rgba(0,240,255,0.3);
        }
        
        .timeline-period {
            font-size: 0.8rem;
            color: #00f0ff;
            margin-bottom: 0.5rem;
            display: inline-block;
            background: rgba(0,240,255,0.1);
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }
        
        .timeline-title {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            color: white;
        }
        
        .timeline-company {
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }
        
        .timeline-description {
            color: rgba(255,255,255,0.6);
            font-size: 0.9rem;
        }
        
        /* Education Section */
        .education-list {
            margin-top: 1.5rem;
        }
        
        .education-item {
            display: flex;
            margin-bottom: 1.5rem;
        }
        
        .education-icon {
            width: 50px;
            height: 50px;
            background: rgba(0,240,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: #00f0ff;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        
        .education-text h4 {
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
            color: white;
        }
        
        .education-text p {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.6);
        }
        
        /* advisor-badges Section */
        .advisor-badges-container {
            margin: 2rem 0;
        }
        
        .advisor-badges-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        
        .advisor-badge {
            background: rgba(0,240,255,0.1);
            border: 1px solid #00f0ff;
            color: #00f0ff;
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
        }
        
        .advisor-badge:hover {
            background: rgba(0,240,255,0.2);
            transform: translateY(-3px);
        }
        
        /* Testimonials */
        .testimonials {
            margin: 2rem 0;
        }
        
        .testimonial-card {
            background: rgba(0,0,0,0.2);
            border-radius: 15px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(255,255,255,0.05);
            position: relative;
        }
        
        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 10px;
            font-size: 4rem;
            color: rgba(0,240,255,0.1);
            font-family: serif;
            line-height: 1;
        }
        
        .testimonial-text {
            color: rgba(255,255,255,0.8);
            font-style: italic;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 0.8rem;
        }
        
        .author-info h5 {
            font-size: 0.9rem;
            color: white;
            margin-bottom: 0.2rem;
        }
        
        .author-info p {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.6);
        }
        
        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            color: #00f0ff;
            text-decoration: none;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
        }
        
        .back-button i {
            margin-right: 0.5rem;
            transition: transform 0.3s ease;
        }
        
        .back-button:hover {
            color: white;
        }
        
        .back-button:hover i {
            transform: translateX(-5px);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .advisor-profile-container {
                grid-template-columns: 1fr;
            }
            
            .advisor-profile-sidebar {
                position: static;
                margin-bottom: 1rem;
                margin-top: 30px;
                width: 114%;
                margin-left: -24px;
            
            }
            .profile-main{
                position: static;
                margin-bottom: 1rem;
                margin-top: 30px;
                width: 114%;
                margin-left: -24px; 
            }
            
            .advisor-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .expertise-list {
                grid-template-columns: 1fr;
            }
            
            .advisor-stats-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .advisor-profile-card, .profile-main {
            animation: fadeIn 0.6s ease forwards;
        }
        
        .profile-main {
            animation-delay: 0.2s;
        }


/* advisor section gallery start  */


        /* Gallery Section */
        .advisor-highlight-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .event-gallery-item {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 4/3;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
        .advisor-gallery-image-container {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .advisor-gallery-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }
        
        
        .advisor-gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 1.5rem;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.4s ease;
            z-index: 2;
        }
        
        .advisor-gallery-caption h3 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }
        
        .advisor-gallery-caption p {
            color: rgba(255,255,255,0.8);
            font-size: 0.85rem;
            margin-bottom: 0.8rem;
        }
        
        .advisor-location {
            display: flex;
            align-items: center;
            color: #00f0ff;
            font-size: 0.8rem;
        }
        
        .advisor-location i {
            margin-right: 6px;
        }
        
        /* Hover Effects */
        .event-gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,240,255,0.2);
        }
        
        .event-gallery-item:hover .image-overlay {
            opacity: 1;
        }
        
        .event-gallery-item:hover .advisor-gallery-image {
            transform: scale(1.05);
        }
        
        .event-gallery-item:hover .advisor-gallery-caption {
            transform: translateY(0);
            opacity: 1;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .advisor-highlight-gallery {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .advisor-highlight-gallery {
                grid-template-columns: 1fr;
            }
        }

/* advisor section gallery end */

/* research paper */

/* Research Papers Section */
.research-papers-container {
    margin-top: 1.5rem;
}

.research-paper-card {
    display: flex;
    background: rgba(0,0,0,0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.3s ease;
    position: relative;
}

.research-paper-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,240,255,0.1);
    border-color: rgba(0,240,255,0.3);
}

.paper-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,240,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #00f0ff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.paper-content {
    flex: 1;
}

.paper-title {
    font-size: 1.11rem;
    color: white;
    margin-bottom: 0.5rem;
    padding-right: 3%;
}

.paper-meta {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.8rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.paper-journal {
    color: #00f0ff;
    font-weight: 500;
}

.paper-citations {
    color: rgba(255,255,255,0.8);
}

.paper-abstract {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.paper-link {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.paper-link:hover {
    color: #00f0ff;
    transform: scale(1.1);
}

.read-more-container {
    text-align: center;
    margin-top: 2rem;
}

.read-more-button {
    display: inline-flex;
    align-items: center;
    background: rgba(0,240,255,0.1);
    color: #00f0ff;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(0,240,255,0.3);
    transition: all 0.3s ease;
}

.read-more-button i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.read-more-button:hover {
    background: rgba(0,240,255,0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,240,255,0.2);
}

.read-more-button:hover i {
    transform: translateX(5px);
}
/* research paper end */
/* advisor details end */


/* call and whatsapp icon */

/* Whatsaapp icon */
.fixed-whatsapp-button {
    position: fixed;
    bottom: 64px;
    left: 15px;
    bottom: 5.6rem;
    background-color: #25D366;
    color: white;
    font-size: 35px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
  }
  
  .fixed-whatsapp-button:hover {
    background-color: #1EBE5D;
  }


  .fixed-call-button {
    position: fixed;
    bottom: 14px;
    left: 13px;
    background: linear-gradient(135deg, #007bff, #00c6ff); 
    color: rgb(255, 255, 255);
    padding: 12px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 22px;
    z-index: 999;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .fixed-call-button:hover {
    transform: scale(1.1);
    background-color: rgb(3, 3, 111);
  }
/* call and whatsapp icon end */

.internship-gradient-text {
  
    background: linear-gradient(120deg, #ff0080, #ff8c00, #40e0d0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: blinkText 1.5s step-start infinite, gradientFlow 3s ease infinite;
}



@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}





/* project start */

.project-portal {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: linear-gradient(145deg, #121212, #1a1a1a);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.project-portal::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(110, 69, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-portal:hover::before {
    opacity: 1;
}

/* ===== HEADER STYLES ===== */
.portal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #333;
}

.portal-header h1 {
    font-size: 2.5rem;
    margin: 0;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portal-header p {
    color: #aaa;
    font-size: 1.1rem;
}

/* ===== FORM SECTIONS ===== */
.project-form-section {
    background: rgba(30, 30, 30, 0.7);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid #6e45e2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.project-form-section h2 {
    margin-top: 0;
    font-size: 1.3rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-form-section h2 i {
    color: #6e45e2;
}

/* ===== FORM GROUPS ===== */
.project-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.project-form-group input,
.project-form-group select,
.project-form-group textarea {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #fff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    outline: none;
    transition: all 0.3s ease;
}

.project-form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.project-form-group label {
    position: absolute;
    top: 12px;
    left: 0;
    color: #777;
    pointer-events: none;
    transition: all 0.3s ease;
}

.project-form-group input:focus ~ label,
.project-form-group input:valid ~ label,
.project-form-group select:focus ~ label,
.project-form-group select:valid ~ label,
.project-form-group textarea:focus ~ label,
.project-form-group textarea:valid ~ label {
    top: -15px;
    font-size: 12px;
    color: #6e45e2;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6e45e2, #88d3ce);
    transition: all 0.4s ease;
}

.project-form-group input:focus ~ .focus-border,
.project-form-group select:focus ~ .focus-border,
.project-form-group textarea:focus ~ .focus-border {
    width: 100%;
}

/* ===== FILE UPLOAD ===== */
.file-upload {
    margin-bottom: 1.5rem;
}

.upload-btn {
    display: inline-block;
    padding: 12px 20px;
    background: rgba(110, 69, 226, 0.1);
    color: #6e45e2;
    border: 1px dashed #6e45e2;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.upload-btn:hover {
    background: rgba(110, 69, 226, 0.2);
    transform: translateY(-2px);
}

.upload-btn i {
    margin-right: 8px;
}

#file-upload {
    display: none;
}

.file-preview {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== SCHEDULE CALL BUTTON ===== */
.schedule-call {
    text-align: center;
    margin-top: 1.5rem;
}

.schedule-call h3 {
    margin-bottom: 10px;
    color: #aaa;
}

.call-btn {
    padding: 12px 25px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.3);
}

.call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(110, 69, 226, 0.5);
}

.call-btn i {
    margin-right: 8px;
}

/* ===== SUBMIT BUTTON ===== */
.form-submit {
    text-align: center;
    margin-top: 2rem;
}

.submit-project-btn {
    padding: 10px 17px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 550;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(110, 69, 226, 0.4);
    position: relative;
    overflow: hidden;
}




.submit-project-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.5s ease;
}

.submit-project-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(110, 69, 226, 0.6);
}

.submit-project-btn:hover::before {
    left: 100%;
}

/* ===== MODAL STYLES ===== */
.project-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.project-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.project-modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.project-modal-overlay.active .project-modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

/* ===== ANIMATIONS ===== */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-in {
    opacity: 0;
    animation: slideIn 0.5s ease forwards;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .project-portal {
        padding: 1.5rem;
        margin: 1rem;
    }

    .portal-header h1 {
        font-size: 2rem;
    }

    .project-form-section {
        padding: 1rem;
    }
}
/* project start end */



/* admin login */
        .container-admin-login {
            font-family: 'Inter', sans-serif;
            background-color: #f1f5f9;
            color: #1e293b;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-image: url('../assets/img/login-bg.jpg');
            background-size: cover;
            background-position: center;
        }
        
        .admin-login-container {
            width: 100%;
            max-width: 420px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            overflow: hidden;
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .admin-login-header {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: white;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .admin-login-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: pulse 8s infinite alternate;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }
        
        .admin-login-header h1 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            position: relative;
        }
        
        .admin-login-header p {
            font-size: 0.875rem;
            opacity: 0.9;
            position: relative;
        }
        
        .admin-login-body {
            padding: 2rem;
        }
        
        .admin-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            display: block;
            border-radius: 10%;
            background: white;
            padding: 3px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }
        
        .admin-form-group {
            margin-bottom: 1.5rem;
        }
        
        .admin-form-group label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.5rem;
            color: #1e293b;
        }
        
        .admin-input-group {
            position: relative;
        }
        
        .admin-input-group input {
            width: 100%;
            padding: 0.75rem 1rem 0.75rem 2.5rem;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-size: 0.9375rem;
            transition: all 0.2s;
        }
        
        .admin-input-group input:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .admin-input-group i {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #64748b;
            font-size: 1rem;
        }
        
        .admin-btn {
            display: block;
            width: 100%;
            padding: 0.75rem;
            background: #2563eb;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 0.9375rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }
        
        .admin-btn:hover {
            background: #1d4ed8;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.2);
        }
        
        .admin-error-message {
            color: #dc2626;
            font-size: 0.875rem;
            margin-top: 1rem;
            text-align: center;
            padding: 0.75rem;
            background: rgba(220, 38, 38, 0.05);
            border-radius: 6px;
            border-left: 3px solid #dc2626;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }
        
        
        
        @media (max-width: 480px) {
            .admin-login-container {
                margin: 0 1rem;
            }
            
            .admin-login-header, .admin-login-body {
                padding: 1.5rem;
            }
        }
/* admin login end */


        /* admin register */
        /* Form Container Styles */
.admin-form-container {
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
}

/* Form Header */
.admin-form-container h2 {
    text-align: center;
    color: #333;
    margin-bottom: 25px;
    font-size: 24px;
}

/* Form Elements */
.admin-form-container label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-weight: bold;
}

.admin-form-container input[type="text"],
.admin-form-container input[type="password"] {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
}

.admin-form-container button {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.admin-form-container button:hover {
    background-color: #45a049;
}

/* Message Styling */
.admin-form-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: bold;
}

.admin-success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}

.admin-error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}
        /* admin register end */



        /* pricing start */
        .pricing-section {
        font-family: 'Poppins', sans-serif;
        background: linear-gradient(135deg, #0f0c29, #070417);
        color: #ffffff;
        line-height: 1.6;
        min-height: 100vh;
        overflow-x: hidden;
        position: relative;
    }

  
    .main-pricing-setion {
        position: relative;
        z-index: 1;
    }

    .pricing-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 3rem 2rem;
    }

    /* Section header */
    .pricing-section-header {
        text-align: center;
        margin-bottom: 4rem;
        position: relative;
    }

    .pricing-badge-wrapper {
        display: flex;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .pricing-header-badge {
        background: linear-gradient(to right, #ffd32a, #ffb302);
        color: #2d3436;
        font-weight: 700;
        font-size: 0.875rem;
        padding: 0.5rem 1.5rem;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(255, 211, 42, 0.3);
        transform: translateY(0);
        transition: transform 0.3s ease;
        animation: pulse 2s infinite;
    }

    .pricing-header-badge:hover {
        transform: translateY(-3px);
    }

    .pricing-section-header h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .pricing-gradient-text {
        background: linear-gradient(to right, #a29bfe, #ff9ff3);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
    }

    .pricing-section-header p {
        font-size: 1.25rem;
        color: #a29dbc;
        max-width: 700px;
        margin: 0 auto 1.5rem;
    }

    .pricing-guarantee-badge {
        display: inline-flex;
        align-items: center;
        background-color: rgba(255, 255, 255, 0.05);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        margin-top: 1rem;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    .pricing-guarantee-badge:hover {
        background-color: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }

    .pricing-guarantee-badge i {
        color: #ffd32a;
        margin-right: 0.75rem;
        font-size: 1.25rem;
    }

    /* Pricing cards container */
    .pricing-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
        .pricing-cards {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Pricing card */
    .pricing-card {
        position: relative;
        background: linear-gradient(145deg, #1a1541, #231c5c);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
        transform-style: preserve-3d;
        z-index: 1;
        border: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* MODIFIED: Remove sliding effect, enhance glow */
    .pricing-card:hover {
        transform: none !important;
        box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
        border-color: rgba(108, 92, 231, 0.2);
    }

    .pricing-card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(108, 92, 231, 0.25) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: -1;
        pointer-events: none;
    }

    .pricing-card:hover .pricing-card-glow {
        opacity: 1;
    }

    /* Premium card styling */
    .pricing-card.premium {
        background: linear-gradient(145deg, #2c1e6a, #3a2a8c);
        border: 1px solid rgba(108, 92, 231, 0.3);
        transform: scale(1.03);
        z-index: 10;
        box-shadow: 0 15px 35px -5px rgba(108, 92, 231, 0.4);
    }

    .pricing-card.premium:hover {
        box-shadow: 0 0 40px rgba(108, 92, 231, 0.6);
        border-color: rgba(108, 92, 231, 0.4);
    }

    .pricing-premium-glow {
        background: radial-gradient(circle at center, rgba(108, 92, 231, 0.4) 0%, transparent 70%);
    }

    .pricing-popular-badge {
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(to right, #ffd32a, #ffb302);
        color: #2d3436;
        font-weight: 700;
        font-size: 0.75rem;
        padding: 0.5rem 1.5rem;
        z-index: 2;
        box-shadow: 0 4px 10px rgba(255, 211, 42, 0.3);
    }

    .pricing-discount-ribbon {
        position: absolute;
        top: 20px;
        left: -35px;
        background-color: #ff6b6b;
        color: white;
        padding: 0.5rem 2.5rem;
        font-size: 0.75rem;
        font-weight: 700;
        transform: rotate(-45deg);
        z-index: 2;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .pricing-premium-ribbon {
        background: linear-gradient(to right, #ff6b6b, #ff9ff3);
    }

    /* Card content */
    .pricing-card-content {
        padding: 2.5rem 2rem 2rem;
    }

    .pricing-card.premium .pricing-card-content {
        padding-top: 3rem;
    }

    /* Plan icon */
    .planning-plan-icon {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        margin-left: 15px;
        transition: all 0.3s ease;
    }

    .planning-plan-icon i {
        font-size: 1.5rem;
        color: #a29bfe;
    }

    .pricing-premium-icon {
        background: rgba(108, 92, 231, 0.2);
    }

    .pricing-premium-icon i {
        color: #ffd32a;
    }

    .pricing-card:hover .planning-plan-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .pricing-card-header h3 {
        font-size: 1.75rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .pricing-card-header p {
        color: #a29dbc;
        margin-bottom: 1.5rem;
        font-size: 0.95rem;
    }

    .pricing-card.premium .pricing-card-header p {
        color: #a29bfe;
    }

    /* Price */
    .price {
        margin-bottom: 2rem;
        position: relative;
    }

    .original-price {
        position: absolute;
        top: -20px;
        right: 0;
        color: #a29dbc;
        text-decoration: line-through;
        font-size: 0.95rem;
    }

    .current-price {
        font-size: 2.5rem;
        font-weight: 800;
        color: #ffffff;
        display: flex;
        align-items: baseline;
    }

    .currency {
        font-size: 1.25rem;
        margin-right: 0.25rem;
        color: #a29dbc;
    }

    .cents {
        font-size: 1.25rem;
        font-weight: 600;
    }

    .pricing-period {
        font-size: 1rem;
        color: #a29dbc;
        margin-left: 0.25rem;
    }

    .pricing-bonus {
        color: #a29bfe;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    .pricing-card.premium .pricing-bonus {
        color: #ffd32a;
    }

    /* Button */
    .pay-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        background: transparent;
        border: 1px solid #6c5ce7;
        color: #a29bfe;
        font-weight: 600;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        position: relative;
        overflow: hidden;
    }

    .pay-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
        transition: left 0.7s ease;
    }

    /* MODIFIED: Remove button movement */
    .pay-btn:hover {
        background-color: #6c5ce7;
        color: #ffffff;
        transform: none;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
    }

    .pay-btn:hover::before {
        left: 100%;
    }

    .pricing-premium-button {
        background: linear-gradient(to right, #6c5ce7, #4834d4);
        color: #ffffff;
        border: none;
        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
    }

    .pricing-premium-button:hover {
        background: linear-gradient(to right, #4834d4, #6c5ce7);
        box-shadow: 0 10px 25px rgba(108, 92, 231, 0.5);
    }

    /* Renewal info */
    .pricing-renewal-info {
        font-size: 0.75rem;
        color: #a29dbc;
        text-align: center;
        margin-top: 1rem;
    }

    /* Features section */
    .pricing-features-section {
        padding: 0 2rem 2rem;
        position: relative;
    }

    .features-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 1rem;
    }

    .pricing-card.premium .features-header {
        border-top: 1px solid rgba(108, 92, 231, 0.3);
    }

    .toggle-features {
        background: transparent;
        border: none;
        color: #a29dbc;
        cursor: pointer;
        transition: color 0.3s ease;
        font-size: 0.875rem;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }

    .toggle-features:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
    }

    /* Features container */
    .features-container {
        max-height: 300px;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .features-container.expanded {
        max-height: 1000px;
    }

    /* Features category */
    .features-category {
        margin-bottom: 1.5rem;
    }

    /* ENHANCED: Category header */
    .category-header {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
        color: #a29dbc;
        font-size: 0.875rem;
        font-weight: 500;
        padding: 0.5rem 0;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .category-header:hover {
        background: rgba(255, 255, 255, 0.05);
        padding-left: 0.5rem;
    }

    .category-header i {
        color: #a29bfe;
    }

    .pricing-card.premium .category-header i {
        color: #ffd32a;
    }

    /* Features list */
    .features-list {
        list-style: none;
        margin-left: 1.75rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
        position: relative;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        padding: 0.25rem 0;
        border-radius: 4px;
    }

    .feature-item:hover {
        background: rgba(255, 255, 255, 0.02);
        padding-left: 0.5rem;
    }

    .feature-check {
        color: #00b894;
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    .feature-times {
        color: #d63031;
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    /* Blurred features */
    .blurred {
        opacity: 0.5;
        filter: blur(1px);
        transition: all 0.3s ease;
    }

    .semi-blurred {
        opacity: 0.7;
        filter: blur(0.5px);
        transition: all 0.3s ease;
    }

    .pricing-card:hover .blurred,
    .pricing-card:hover .semi-blurred {
        opacity: 1;
        filter: blur(0);
    }

    /* Feature tooltip */
    .feature-tooltip {
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%) scale(0);
        background: #231c5c;
        color: #ffffff;
        padding: 0.5rem 1rem;
        border-radius: 0.5rem;
        font-size: 0.75rem;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 10;
        border: 1px solid rgba(108, 92, 231, 0.2);
    }

    .feature-tooltip::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 50%;
        transform: translateX(-50%);
        border-width: 5px 5px 0;
        border-style: solid;
        border-color: #231c5c transparent transparent;
    }

    .feature-item:hover .feature-tooltip {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }

    /* View all features button */
    .view-all-features {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #a29dbc;
        font-size: 0.875rem;
        border-radius: 16px;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

    .view-all-features:hover {
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .view-all-features.active {
        background: rgba(108, 92, 231, 0.15);
        border-color: rgba(108, 92, 231, 0.3);
    }

    .view-all-features i {
        transition: transform 0.3s ease;
    }

    .view-all-features.active i {
        transform: rotate(45deg);
    }

    /* NEW: Course details section */
    .course-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        margin-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .course-details.expanded {
        max-height: 1000px;
        padding-top: 1rem;
    }

    .course-details h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: #a29bfe;
    }

    .course-details ul {
        list-style: none;
        margin-left: 1rem;
    }

    .course-details li {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.25rem;
        border-radius: 4px;
        transition: all 0.3s ease;
    }

    .course-details li:hover {
        background: rgba(255, 255, 255, 0.03);
        transform: translateX(5px);
    }

    .course-details li i {
        color: #ffd32a;
        font-size: 0.875rem;
        margin-top: 0.25rem;
    }

    .pricing-card.premium .course-details h4 {
        color: #ffd32a;
    }

    /* Floating elements */
    .floating-element {
        position: absolute;
        z-index: 2;
        pointer-events: none;
        animation: float 6s ease-in-out infinite;
    }

    .star-1 {
        top: 40px;
        right: 40px;
        color: #ffd32a;
        font-size: 1rem;
        animation-delay: 0s;
    }

    .star-2 {
        bottom: 80px;
        left: 30px;
        color: #ffd32a;
        font-size: 0.75rem;
        animation-delay: 1s;
    }

    .circle-1 {
        top: 120px;
        right: 20px;
        width: 10px;
        height: 10px;
        background: #a29bfe;
        border-radius: 50%;
        opacity: 0.5;
        animation-delay: 1.5s;
    }

    .circle-2 {
        bottom: 40px;
        right: 50px;
        width: 15px;
        height: 15px;
        background: #ff9ff3;
        border-radius: 50%;
        opacity: 0.3;
        animation-delay: 2s;
    }

    /* Section footer */
    .section-footer {
        text-align: center;
        margin-top: 3rem;
    }

    .compare-plans-button {
        margin-bottom: 2rem;
    }

    .compare-plans-button button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.75rem 1.5rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #ffffff;
        font-size: 1rem;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .compare-plans-button button:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .section-footer p {
        color: #a29dbc;
        margin-bottom: 1.5rem;
    }

    .view-all-button {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 50px;
        background: linear-gradient(to right, #6c5ce7, #4834d4);
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
        border: 1px solid rgba(108, 92, 231, 0.3);
    }

    .view-all-button:hover {
        background: linear-gradient(to right, #4834d4, #6c5ce7);
        transform: translateY(-3px);
        box-shadow: 0 15px 25px rgba(108, 92, 231, 0.4);
        border-color: rgba(108, 92, 231, 0.5);
    }

    /* Modal */
    /* .modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .modal.active {
        opacity: 1;
        visibility: visible;
    }

    .pricing-modal-content {
        background: #1a1541;
        border-radius: 16px;
        width: 90%;
        max-width: 900px;
        max-height: 90vh;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: scale(0.9);
        transition: transform 0.3s ease;
        border: 1px solid rgba(108, 92, 231, 0.2);
    }

    .modal.active .pricing-modal-content {
        transform: scale(1);
    }

    .pricing-modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: linear-gradient(to right, #1a1541, #231c5c);
    }

    .pricing-modal-header h3 {
        font-size: 1.5rem;
        font-weight: 700;
        color: #ffffff;
    }

    .pricing-close-modal {
        background: transparent;
        border: none;
        color: #a29dbc;
        font-size: 1.25rem;
        cursor: pointer;
        transition: color 0.3s ease;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    .pricing-close-modal:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .modal-body {
        padding: 1.5rem;
        overflow-y: auto;
        max-height: calc(90vh - 130px);
    }

    .modal-footer {
        padding: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: right;
        background: linear-gradient(to right, #1a1541, #231c5c);
    }

    .pricing-close-modal-btn {
        padding: 0.75rem 1.5rem;
        background: #6c5ce7;
        color: #ffffff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .pricing-close-modal-btn:hover {
        background: #4834d4;
        box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
    } */

    /* Comparison table */
    /* .pricing-comparison-table {
        width: 100%;
        border-collapse: collapse;
    }

    .pricing-comparison-table th,
    .pricing-comparison-table td {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .pricing-comparison-table th {
        font-weight: 600;
        color: #ffffff;
        background: rgba(255, 255, 255, 0.05);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .pricing-comparison-table th:first-child,
    .pricing-comparison-table td:first-child {
        text-align: left;
    }

    .category-row {
        background: rgba(108, 92, 231, 0.1);
        font-weight: 600;
        color: #a29bfe;
    }

    .text-green {
        color: #00b894;
    }

    .text-red {
        color: #d63031;
    } */

    /* Animations */
    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    /* Responsive styles */
    @media (max-width: 992px) {
        .pricing-section-header h2 {
            font-size: 2.5rem;
        }

        .pricing-card.premium {
            transform: scale(1.03);
        }
    }

    @media (max-width: 768px) {
        .pricing-cards {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-card.premium {
            transform: scale(1);
        }

        .pricing-section-header h2 {
            font-size: 2rem;
        }

        .pricing-section-header p {
            font-size: 1rem;
        }

        .pricing-comparison-table {
            font-size: 0.875rem;
        }

        .pricing-comparison-table th,
        .pricing-comparison-table td {
            padding: 0.75rem 0.5rem;
        }
    }

    @media (max-width: 480px) {
        .pricing-container {
            padding: 2rem 1rem;
        }

        .pricing-section-header h2 {
            font-size: 1.75rem;
        }

        .current-price {
            font-size: 2rem;
        }

        .pricing-modal-content {
            width: 95%;
        }

        .pricing-comparison-table {
            font-size: 0.75rem;
        }
    }

    /* pricing modal form start */
    /* Pricing Plan Modal Styles */
.pricing-plan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.pricing-plan-modal-content {
    background-color: #1a1a1a;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    position: relative;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-plan-modal-header {
    margin-bottom: 25px;
    text-align: center;
}

.pricing-plan-modal-header h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-plan-modal-header p {
    color: #aaa;
    font-size: 15px;
}

.pricing-plan-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.pricing-plan-close-btn:hover {
    color: #fff;
}

.pricing-plan-form .form-group {
    margin-bottom: 20px;
}

.pricing-plan-form label {
    display: block;
    margin-bottom: 8px;
    color: #ddd;
    font-size: 14px;
}

.pricing-plan-form input[type="text"],
.pricing-plan-form input[type="email"],
.pricing-plan-form input[type="tel"],
.pricing-plan-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #333;
    border-radius: 6px;
    background-color: #222;
    color: #fff;
    font-size: 15px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.pricing-plan-form input:focus,
.pricing-plan-form textarea:focus {
    border-color: #4a80f0;
    box-shadow: 0 0 0 3px rgba(74, 128, 240, 0.2);
    outline: none;
}

.pricing-plan-form textarea {
    resize: vertical;
    min-height: 100px;
}

.pricing-plan-checkbox-group {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.pricing-plan-checkbox-group input {
    margin-right: 10px;
    width: auto;
}

.pricing-plan-checkbox-group label {
    margin-bottom: 0;
    color: #bbb;
    font-size: 13px;
}

.submit-plan-form-btn {
    background: linear-gradient(135deg, #4a80f0, #6a5acd);
    color: white;
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.submit-plan-form-btn:hover {
    background: linear-gradient(135deg, #3a70e0, #5a4abd);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 128, 240, 0.3);
}

.selected-plan-name {
    color: #4a80f0;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-plan-modal-content {
        width: 95%;
        padding: 20px;
    }
    
    .pricing-plan-modal-header h3 {
        font-size: 20px;
    }
}
    /* pricing modal form end */

        /* pricing end */



/* member dashboard login page  */
.member-login {
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        min-height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .member-login-container {
        width: 100%;
        max-width: 480px;
        animation: fadeIn 0.5s ease;

    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .member-login-box {
        background: white;
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .member-login-box:hover {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .member-login-header {
        background: linear-gradient(to right, #4361ee, #3f37c9);
        color: white;
        padding: 30px;
        text-align: center;
        position: relative;
    }

    .member-login-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(to right, #f72585, #7209b7, #4361ee);
    }

    .member-dashboard-logo {
        width: 40%;
        height: 87px;
        object-fit: contain;
        margin-bottom: -13px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .member-login-header h2 {
        font-weight: 600;
        margin-bottom: 5px;
        font-size: 24px;
    }

    .member-login-form {
        padding: 30px;
    }

    .member-form-group {
        margin-bottom: 20px;
    }

    .member-form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: #212529;
        font-size: 14px;
    }

    .member-form-group input {
        width: 92%;
        padding: 14px 16px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
    }

    .member-form-group input:focus {
        border-color: #4361ee;
        outline: none;
        box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
    }

    .member-btn-login {
        width: 20%;
        padding: 6px;
        background: linear-gradient(to right, #4361ee, #3f37c9);
        color: white;
        border: none;
        border-radius: 8px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 10px;
        margin-left: 40%;
    }

    .member-btn-login:hover {
        background: linear-gradient(to right, #3a56d5, #3830b8);
        transform: translateY(-2px);
    }

    /* Notification Popup */
    .member-login-notification {
        position: fixed;
        top: 30px;
        right: 30px;
        padding: 16px 24px;
        border-radius: 8px;
        color: white;
        font-weight: 500;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        align-items: center;
        transform: translateX(150%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    }

    .member-login-notification.show {
        transform: translateX(0);
    }

    .member-login-notification.error {
        background: linear-gradient(to right, #f72585, #b5179e);
    }

    .member-login-notification i {
        margin-right: 12px;
        font-size: 20px;
    }

    .member-login-notification-close {
        background: none;
        border: none;
        color: white;
        font-size: 18px;
        cursor: pointer;
        margin-left: 20px;
        opacity: 0.8;
        transition: all 0.3s ease;
    }

    .member-login-notification-close:hover {
        opacity: 1;
    }

    /* Responsive adjustments */
    @media (max-width: 576px) {
        .member-login-header {
            padding: 25px 20px;
        }

        .member-login-form {
            padding: 25px 20px;
        }

        .member-login-notification {
            top: 20px;
            right: 20px;
            left: 20px;
            transform: translateY(-150%);
        }

        .member-login-notification.show {
            transform: translateY(0);
        }
    }
/* member dashboard login page  end  */


/* summer internship */
  /* Base Styles */
   

  .summer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Header Styles */
.page-header {
    position: relative;
    padding: 60px 0 40px;
    margin-bottom: 50px;
    text-align: center;
    z-index: 1;
}

.summer-header-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(101, 87, 255, 0.2) 0%, transparent 70%);
    z-index: -1;
}

.summer-page-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #8a2be2, #4b6cb7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.summer-page-title span {
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.summer-page-subtitle {
    font-size: 1.3rem;
    color: #b8b8b8;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.summer-header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.decoration-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.decoration-icon {
    margin: 0 20px;
    color: #8a2be2;
    font-size: 1.2rem;
}

/* Internship Program Cards */
.internship-program {
    background: #151521;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    position: relative;
    border: 1px solid #252534;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.program-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.internship-program:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.3);
    border-color: #4b6cb7;
}

.internship-program:hover .program-glow {
    opacity: 1;
}

/* Program Header Styles */
.program-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid #252534;
    position: relative;
}

.program-title-summer-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2, #4b6cb7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.program-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    background: linear-gradient(90deg, #fff, #b8b8b8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.program-duration {
    font-size: 0.95rem;
    color: #b8b8b8;
    font-weight: 500;
}

.program-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
}

.price-summer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.original-price {
    font-size: 1.1rem;
    color: #aaa;
    text-decoration: line-through;
    position: relative;
}

.final-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.discount-badge {
    background: linear-gradient(135deg, #8a2be2, #4b6cb7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

/* Program Highlights */
.program-highlights {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: rgba(26, 26, 46, 0.5);
    border-bottom: 1px solid #252534;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #b8b8b8;
}

.highlight-item i {
    color: #8a2be2;
    font-size: 1.1rem;
}

/* Table Styles */
.program-table-summer-container {
    padding: 25px 30px;
    overflow-x: auto;
}

.internship-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
}

.internship-table thead {
    background: linear-gradient(90deg, #1a1a2e, #252534);
    position: sticky;
    top: 0;
}

.internship-table th {
    padding: 18px 15px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #8a2be2;
}

.internship-table td {
    padding: 15px;
    color: #e0e0e0;
    border-bottom: 1px solid #252534;
    position: relative;
    transition: all 0.2s ease;
}

.internship-table tbody tr:last-child td {
    border-bottom: none;
}

.internship-table tbody tr:hover td {
    background: rgba(138, 43, 226, 0.1);
    color: #fff;
}

.internship-table tbody tr:hover td:first-child {
    border-left: 3px solid #8a2be2;
}

/* Enroll Button in Table */
.enroll-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8a2be2, #6a5acd);
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.3);
}

.enroll-btn.blue {
    background: linear-gradient(135deg, #4b6cb7, #3a7bd5);
    box-shadow: 0 4px 10px rgba(75, 108, 183, 0.3);
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.4);
}

.enroll-btn.blue:hover {
    box-shadow: 0 8px 20px rgba(75, 108, 183, 0.4);
}

.enroll-btn:active {
    transform: translateY(0);
}

/* Program Footer */
.program-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(26, 26, 46, 0.3);
    border-top: 1px solid #252534;
}

.details-btn {
    background: transparent;
    color: #b8b8b8;
    border: none;
    padding: 10px 15px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-btn:hover {
    color: #8a2be2;
}

.details-btn:hover i {
    transform: translateY(3px);
}

.details-btn i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-share span {
    color: #b8b8b8;
    font-size: 0.9rem;
}

.social-share a {
    color: #b8b8b8;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-share a:hover {
    color: #8a2be2;
    transform: translateY(-3px);
}

/* Summer Internship Modal Styles - Updated with unique class names */
.summer-internship-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    overflow-y: auto;
    padding: 20px;
    align-items: center;
    justify-content: center;
}

.summer-internship-modal-content, .summer-success-modal-content {
    background: linear-gradient(135deg, #151521, #1a1a2e);
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid #252534;
    animation: modalFadeIn 0.4s ease-out;
    margin: auto;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.summer-internship-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px 30px;
    background: linear-gradient(90deg, #1a1a2e 0%, #16213e 100%);
    border-bottom: 1px solid #252534;
    border-radius: 16px 16px 0 0;
}

.summer-internship-modal-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #8a2be2, #4b6cb7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5px;
}

#selected-program-info {
    margin-top: 5px;
}

.program-name {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2px;
}

.course-name {
    font-size: 0.95rem;
    color: #8a2be2;
}

.summer-close-modal, .summer-close-success-btn {
    color: #b8b8b8;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.summer-close-modal:hover {
    color: #fff;
    transform: rotate(90deg);
}

.summer-internship-modal-body {
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    z-index: 0;
}

#enrollment-form {
    position: relative;
    z-index: 1;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #e0e0e0;
}

.required {
    color: #ff6b6b;
    margin-left: 3px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #8a2be2;
}

.input-with-icon input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #252534;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group textarea {
    padding: 15px;
    resize: none;
    height: 120px;
}

.input-with-icon input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* Payment Options */
.payment-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 150px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #252534;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option label i {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #8a2be2;
}

.payment-option input[type="radio"]:checked+label {
    background: rgba(138, 43, 226, 0.1);
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #8a2be2;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-group label a {
    color: #8a2be2;
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.form-actions {
    margin-top: 30px;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.summer-cancel-btn {
    background: transparent;
    color: #b8b8b8;
    border: 1px solid #252534;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.summer-cancel-btn:hover {
    background: rgba(26, 26, 46, 0.5);
    color: #fff;
}

.summer-submit-btn, .summer-close-success-btn {
    background: linear-gradient(135deg, #8a2be2, #4b6cb7);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.summer-submit-btn:hover, .summer-close-success-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.5);
}

.summer-submit-btn:active, .summer-close-success-btn:active {
    transform: translateY(0);
}

/* Success Modal */
.summer-success-modal-content {
    max-width: 500px;
    padding: 40px 30px;
    text-align: center;
}

.success-icon {
    font-size: 5rem;
    color: #4BB543;
    margin-bottom: 20px;
    animation: successPulse 2s infinite;
}

@keyframes successPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.summer-success-modal-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.summer-success-modal-content p {
    color: #b8b8b8;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .program-header {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }

    .program-pricing {
        width: 100%;
        justify-content: space-between;
    }

    .program-highlights {
        flex-wrap: wrap;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .summer-page-title {
        font-size: 2.5rem;
    }

    .program-title-summer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .internship-table {
        display: block;
    }

    .internship-table thead {
        display: none;
    }

    .internship-table tbody tr {
        display: block;
        margin-bottom: 20px;
        border-bottom: 1px solid #252534;
    }

    .internship-table td {
        display: flex;
        justify-content: space-between;
        padding: 12px 15px;
        border-bottom: none;
    }

    .internship-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #8a2be2;
        margin-right: 15px;
    }

    .program-footer {
        flex-direction: column;
        gap: 20px;
    }

    .social-share {
        width: 100%;
        justify-content: center;
    }

    .summer-internship-modal-content {
        width: 95%;
    }

    .payment-options {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .summer-page-title {
        font-size: 2rem;
    }

    .program-title {
        font-size: 1.5rem;
    }

    .final-price {
        font-size: 1.5rem;
    }

    .summer-internship-modal-header {
        padding: 20px;
    }

    .summer-internship-modal-body {
        padding: 20px;
    }

    .summer-internship-modal-title h2 {
        font-size: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .summer-cancel-btn,
    .summer-submit-btn {
        width: 100%;
    }

    .internship-program {
        width: 109%;
        margin-left: -18px;
    }

    .summer-page-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .summer-page-subtitle {
        font-size: 1rem;
    }

    .program-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .program-title-summer-container {
        flex-direction: row;
        align-items: center;
    }

    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .program-pricing {
        width: 100%;
        justify-content: space-between;
    }

    .final-price {
        font-size: 1.4rem;
    }

    .internship-table {
        width: 100%;
    }

    .internship-table tbody tr {
        border: 1px solid #252534;
        border-radius: 8px;
    }

    .internship-table td {
        border-bottom: 1px solid #252534;
    }

    .internship-table td:last-child {
        border-bottom: none;
    }

    .internship-table td::before {
        color: rgb(255, 255, 255);
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .input-with-icon input,
    .form-group textarea {
        padding: 10px 15px 10px 40px;
    }

    .payment-options {
        flex-direction: column;
    }

    .payment-option {
        margin-bottom: 10px;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 10px;
    }

    .summer-internship-modal-content {
        width: 95%;
        margin: 10px auto;
    }

    .summer-internship-modal-body {
        padding: 5px;
    }

    .page-header {
        padding: 30px 0 20px;
    }

    .summer-header-glow {
        width: 100%;
    }

    .summer-header-decoration {
        margin-top: 15px;
    }

    .program-footer {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .details-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .social-share {
        width: 100%;
        justify-content: center;
    }
}


/* Form Sections */
.summer-intern-form-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #252534;
}

.summer-intern-form-section:last-child {
    border-bottom: none;
}

.summer-section-title {
    font-size: 1.3rem;
    color: #8a2be2;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 1px solid #252534;
}

/* Select dropdown styling */
select {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #252534;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* File input styling */
input[type="file"] {
    width: 100%;
    padding: 12px 15px 12px 45px;
    background: rgba(26, 26, 46, 0.5);
    border: 1px solid #252534;
    border-radius: 8px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="file"]:focus {
    outline: none;
    border-color: #8a2be2;
    box-shadow: 0 0 10px rgba(138, 43, 226, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .summer-intern-form-section {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .summer-section-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}
/* summer internship end */
