.logo {
    width: 100%;
    max-width: 50px;
    height: auto;
    margin: 5px 15px 5px 5px;
  }

/********** Template CSS **********/
:root {
    --primary: #800080;
    --secondary: #0ea2f2;
    --light: #EEF9FF;
    --dark: #091E3E;
    --test: #e4f403;
}

.bg-primary {
    background-color: #800080 !important;
}

#navbar a:focus-visible{
    outline:2px solid #ffffff;
    color:#ffffff;
    
}
span a{
    text-decoration:underline;
}

#line  a{
    text-decoration:underline;
    
}
 
 
    

.accordion-button:focus-visible {
 
    outline: 2px solid black;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}



/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 500 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 400 !important;
}
h5{
   color:#A827B5; 
}

h5,
h6,
.fw-medium {
    font-weight: 300 !important;
    
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    /*box-shadow: inset 0 0 0 50px transparent;*/
    background-color: #800080 !important;
}

.btn-primary:hover {
    box-shadow:inset 0 0 0 0 var(--primary);
    color: yellow;
}

.btn-primary:focus-visible  {
   outline: 4px solid black ;
   color:white;
}


.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
    color: inset 0 0 0 0 var(--light) !important;
}


 #connect:focus-visible  {
   outline: 3px solid yellow ;
   
}
.btn-square {
    width: 36px;
    height: 36px;
}

.btn-square:focus-visible  {
   outline: 2px solid white ;
   
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}
.btn-sm:focus-visible  {
   outline: 3px solid black ;
   
}


.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 10px 0;
    color: #141474;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.navbar-dark .navbar-nav  a:focus{
    outline:1px solid black;
    background: #800080;
  
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
    font-weight: 900;
}

.navbar-dark .navbar-brand h1 {
    color: #141474;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
        font-size:17px;
        
    }
    
     
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
        background: #FFFFFF;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}



/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(9, 30, 62, .7);*/
     background: rgba(9, 80, 60, .4);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 15px;
        font-weight: 400 !important;
    }
}

 

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*.carousel-control-prev-icon:focus{*/
/*  outline: 1px solid yellow;*/
/*} */






/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
    height: auto;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -40px;
    left: 50%;
    margin-left: -30px;
  
    /*opacity: 0;*/
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.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: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--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 {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
    height: auto;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    /*position: fixed;*/
    float:right;
    display: none;
    margin-left:90%;
    right: 10px;
    bottom: 10px;
    /*z-index: 99;*/
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.webp) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/*matrimony*/
.profile_search {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin-bottom: 2em;
    border-radius: 10px;
 }
   .profile_search img {
    max-width: 200px;
    height: auto;
    animation: bounce 2s infinite;
 }

 .matrimony-info {
    background: #f8f9fa;
    color: #333;
  }
  
  .matrimony-info .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #6f42c1;
  }
  
  .matrimony-info .section-subtitle {
    font-size: 1.1rem;
    color: #777;
  }
  
  .info-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
.info-box:hover {
    transform: translateY(-5px);
  }
  
  .info-icon {
    max-width: 60px;
    margin-bottom: 15px;
  }
  
  .info-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
  }


  
.passport-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    border-bottom: 4px solid #7b1fa2;
  }
  
  
  .passport-card:nth-child(1) { background: #fcefee; }
  .passport-card:nth-child(2) { background: #e7f3fe; }
  .passport-card:nth-child(3) { background: #fef6e6; }
  .passport-card:nth-child(4) { background: #f3f8f1; }
  .passport-card:nth-child(5) { background: #f3f1fa; }
  .passport-card:nth-child(6) { background: #eaf4fc; }
  
  .passport-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  }
  
  
  .icon-container span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #6f42c1;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
  
    transition: background-color 0.3s ease, transform 0.3s ease;
  }
  
  .passport-card:hover .icon-container span {
    background-color: #333;
    transform: scale(1.1);
  }
  .card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    text-transform: capitalize;
    margin-top: 15px;
  }
  .icon-container  {
    font-size: 3rem;
    color: #9c27b0;
  
  }
  
  
  @media (max-width: 767px) {
    .passport-card {
        height: 180px;
        padding: 15px;
    }
    .icon-container span {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .card-title {
        font-size: 1rem;
    }
  }
    
  
/*  BlogComment  */

.comment {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.comment:last-child {
    border-bottom: none;
}

.comment strong {
    font-size: 20px;
    color:purple;
}

.comment p {
    margin: 10px 0 0;
    font-size: 16px;
    color: #555;
}


.btn {
    border: none;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #6a0dad; 
    color: #fff;
}

.btn-primary:hover {
    background-color: #540b9e;
}

.btn-link {
    background: none;
    color: #6a0dad;
    text-decoration: underline;
    padding: 0;
    font-size: 14px;
}

.btn-link:hover {
    color: #540b9e;
}

.reply-form {
    margin-top: 15px;
    padding: 10px 15px;
    background: #f7f7f7;
    border-radius: 8px;
    border: 1px solid #ddd;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.reply-form input,
.reply-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
}

.reply-form input:focus,
.reply-form textarea:focus {
    outline: none;
    border-color: #6a1b9a;
    box-shadow: 0 0 5px rgba(106, 27, 154, 0.5);
}

.reply-form .btn {
    margin-top: 5px;
    background: #6a1b9a;
    color: white;
    padding: 8px 20px;
    font-size: 14px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.reply-form .btn:hover {
    background: #8e24aa;
    transform: scale(1.05);
}

.replies-container {
    padding-left: 25px;
    margin-top: 15px;
}

.replies-container .comment {
    border: none;
    padding: 12px 20px;
    background-color: #f8f8f8;
    border-left: 4px solid #6a1b9a; 
    border-radius: 8px;
    margin-bottom: 12px;
    position: relative;
}

.replies-container .comment::before {
    content: "";
    position: absolute;
    top: 10px;
    left: -8px;
    width: 8px;
    height: 8px;
    background: #6a1b9a;
    border-radius: 50%;
}


/* Courses Details */
 
body {
    background-color: #f5f7fa;
    font-family: 'Arial', sans-serif;
}
 
.section-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}
 
.course-container {
    background-color: #ffffff;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
 
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
 
.course-header h1 {
    font-size: 2rem;
    font-weight: bold;
    color: #2c3e50;
}
 
.course-header span {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: bold;
}
 
.course-details {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
 
.course-details label {
    font-weight: bold;
    color: #444;
    margin-right: 5px;
}
 
.apply-btn {
    margin-top: 15px;
    text-align: right;
}
.btn-apply, .btn-primary {
  color: #ffffff !important;
}
.btn-apply {
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
 
.btn-apply:hover {
    background-color: #2980b9;
}
 
.course-card .icon {
    color: #6c757d;
    margin-right: 10px;
}
 
 
/* Show Courses */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}
 
.table-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
 
table {
    width: 100%;
    border-collapse: collapse;
}
 
th, td {
    padding: 12px 15px;
    text-align: left;
}
 
th {
    background-color: #007bff;
    color: white;
}
 
tr:nth-child(even) {
    background-color: #f2f2f2;
}
 
/* tr:hover {
    background-color: #e9ecef;
} */
 
th {
    position: sticky;
    top: 0;
}
 
@media (max-width: 600px) {
    th, td {
        display: block;
        width: 100%;
    }
 
    tr {
        margin-bottom: 15px;
        display: block;
        border: 1px solid #ddd;
    }
 
    th {
        display: none;
    }
 
    tr:nth-child(even) {
        background-color: transparent;
    }
 
    tr:hover {
        background-color: transparent;
    }
 
    tr::before {
        content: attr(data-label);
        font-weight: bold;
        display: inline-block;
        margin-bottom: 5px;
    }
}


/*ecom user carousel*/

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, #3a0066, #5a0099);
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    border: 2px solid #ffffff30;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease-in-out;
    z-index: 2;
}
 
.carousel-control-prev:hover,
.carousel-control-next:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(145deg, #2e0052, #500088);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
 
.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}
 
.carousel-control-prev::after,
.carousel-control-next::after {
    font-size: 28px;
    font-weight: bold;
    color: white;
    content: '<';
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}
 
.carousel-control-next::after {
    content: '>';
}

