  body, html {
           font-family: ui-sans-serif, system-ui, sans-serif;

            background: #fff;
            color: #252525;
        }



    .navbar-brand {
        font-size: 2rem;
        font-weight: 800;
        letter-spacing: 0.5px;
        white-space: nowrap;
    }

    
    .navbar-nav {
        gap: 1rem;
    }
    .navbar-nav .nav-link {
        font-size: 1.05rem;
        font-weight: 400; 
        padding: 0.5rem 0.8rem;
        border-radius: 6px;
        color: #272727;
        transition: color 0.2s ease-in-out;
        position: relative;
        white-space: nowrap;
    }

    
    .navbar-nav .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background-color: #0069B4;
        transition: width 0.3s ease-in-out;
        border-radius: 2px;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
        width: 100%;
    }

    
    .navbar-nav .nav-link.active {
        color: #0069B4 !important;
        font-weight: 700; 
    }
    .navbar-nav .nav-link:hover {
        color: #0069B4 !important;
    }

    
    .btn-orange {
        background-color: #0069B4;
        color: #fff;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.2s ease-in-out;
    }
    .btn-orange:hover {
        background-color: #0069B4;
        box-shadow: 0 3px 8px rgba(0,105,180,0.35);
    }

   
    @media (max-width: 991px) {
        .navbar-nav {
            gap: 0.3rem;
        }
        .navbar-brand {
            font-size: 1.5rem;
        }
        .btn-orange {
            width: 100%;
        }
       
        .navbar-nav .nav-link::after {
            display: none;
        }
    }

/*  index.html-css */
    
.banner-section {
    height: 500px;
   background: linear-gradient(135deg, #5aa0e0 0%, #7ab8f0 50%, #a0d4ff 100%);




    display: flex;
    color: #fff;
    align-items: center;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}


.search-box .form-control,
.search-box .form-select {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding-left: 1rem;
}


.custom-select option {
    background-color: #e6f4ff; 
    color: #0069B4; 
}


.search-box .form-select:focus {
    border-color: #0069B4;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 180, 0.25);
}


.custom-select {
    color: #0069B4;
    font-weight: 500;
    border-radius: 8px;
    height: 52px;
    border: 1px solid #ddd;
    padding-left: 12px;
}
.custom-select option {
    color: #0069B4;
}

.btn-orange:hover {
    border-color: #999 !important;
}



.btn-orange {
    background-color: #0069B4;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.8); 
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 105, 180, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-orange:hover {
    background-color: #0069B4;
    border-color: rgba(255,255,255,1); 
    box-shadow: 0 6px 12px rgba(0, 105, 180, 0.35);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }
}
    
        .search-box {
            background: #0069B4;
            border-radius: 12px;
            padding: 2rem 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .search-box input, .search-box select {
            border-radius: 8px;
            border: 1.5px solid #0069B4;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            min-width: 180px;
            font-family: 'Inter', sans-serif;
        }
        .search-box input:focus, .search-box select:focus {
            outline: 2px solid #0069B4;
        }
        .category-dropdown {
            background: #fff;
            border-radius: 12px;
            border: 2px solid #0069B4;
            margin: 0 auto 1rem auto;
            max-width: 300px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .category-dropdown .list-group-item {
            border: none;
            font-size: 1.1rem;
            color: #0069B4;
            font-family: 'Istok Web', sans-serif;
            cursor: pointer;
            transition: background 0.2s;
        }
        .category-dropdown .list-group-item.active, .category-dropdown .list-group-item:hover {
            background: #0069B4;
            color: #fff;
        }
      .stats-section {
    padding: 2rem 0;
    background: #fff;
}

.stat-card {
    background: #fff;
    border-bottom: 5px solid #0069B4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    min-width: 180px;
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
}

.stat-card:hover {
    transform: scale(1.05); 
     transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); 
    border-bottom-color: #004C80;
}

.stat-number {
    color: #0069B4;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #004C80; 
}




.moving-line {
    width: 120px;   
    height: 4px;
    background: #0069B4;
    border-radius: 2px;
    margin: 10px auto;
    position: relative;
    animation: moveFullLine 2s linear infinite alternate;
}

@keyframes moveFullLine {
    0% {
        transform: translateX(-30px); 
    }
    100% {
        transform: translateX(30px); 
    }
}



.section-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Instrument Sans', 'Inter', sans-serif;
}

.section-subtitle {
    color: #737373;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}


.category-timeline-scroll .timeline-line-fill {
    position: absolute;
    width: 4px; 
    background: #0069B4;
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
    height: 0; 
    transition: height 0.4s ease;
}

.category-timeline-scroll .timeline-circle {
    position: relative;
    z-index: 2;
    width: 22px;  
    height: 22px;
    background: #fff;
    border: 5px solid #0069B4;
    border-radius: 50%;
    transition: transform 0.3s ease, background 0.3s ease;
}


.category-img {
    width: 100%;
    height: 333px;   
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.10);
    border: 1px solid #595959;
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.category-content {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.category-img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.category-content:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.timeline-circle:hover {
    background: #0069B4;
    transform: scale(1.2);
}


.category-btn {
    background: #fff;
    color: #0069B4;
    border: 2px solid #0A0A0A;
    border-radius: 12px;
    font-size: 1rem;
    font-family: sans-serif;
    font-weight: 500;
    text-decoration: none;
    padding: 0.5rem 1.5rem;
    margin-top: 1rem;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.category-btn:hover,
.category-btn:focus {
    background: #0069B4;
    color: #fff;
    border-color: #0069B4;
    transform: scale(1.05);
}


@media (min-width: 768px) {
    .category-timeline-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }

    .category-timeline-scroll .col-md-2 {
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 8%;  
        max-width: 8%;
    }
    .category-timeline-scroll .col-md-5 {
        flex: 0 0 46%;  
        max-width: 46%;
    }
}

@media (max-width: 767px) {
    .timeline-line-fill,
    .timeline-circle {
        display: none;
    }

    .category-img {
        height: 200px;
    }
}



.experts-section {
    background: #f8f8f8;
    padding: 2rem 0;
}

/* /* Expert Card */
.expert-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 260px;
  height: 100%;
  transition: all 0.3s ease;
  text-align: center;
}

.expert-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

/* Expert Image */
.expert-img {
  width: 100%;
  height: 200px;         /* uniform height */
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
}

.expert-card:hover .expert-img {
  transform: scale(1.05);
}

/* Optional small image variant */
.expert-img-small {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

/* Title */
.expert-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 8px 0;
  color: #222;
  text-align: center;
}

/* Tags */
.expert-tags .badge,
.tag-btn {
  background: #ECECEC;
  color: #252525;
  font-size: 0.75rem;
  padding: 4px 8px;
  margin: 2px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.expert-tags .badge:hover,
.tag-btn:hover {
  background: #0069B4;
  color: #fff;
  transform: scale(1.05);
}

.badge, .more-tag {
  display: inline-block;
  max-width: 100%;
  white-space: normal;
  word-break: break-word;
}

.more-btn {
  background: #0069B4;
  color: #fff !important;
  border: none;
  font-size: 0.7rem;
  padding: 3px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.more-btn:hover {
  background: #004c80;
  transform: scale(1.05);
}

/* Rating */
.expert-rating {
  font-size: 0.85rem;
  color: #0069B4;
  margin: 6px 0;
}
.expert-rating .bi-star-fill {
  color: #f5c518;
  margin-right: 2px;
  font-size: 0.9rem;
}

/* Description */
.expert-desc {
  color: #282828;
  font-size: 0.85rem;
  margin: 8px 0;
  line-height: 1.4;
  flex-grow: 1;
  text-align: center;
}

/* Actions (buttons) */
.expert-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.expert-actions .btn {
  margin: 2px;
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 5px;
  line-height: 1.2;
  min-width: 80px;
  height: 28px;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Outline style for Call & E-mail buttons */
.btn-outline-secondary {
  background: #cfcece;
  color: #252525;
  border: 1px solid #ccc;
}
.btn-outline-secondary:hover {
  background: #0069B4;
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

/* Primary buttons */
.btn-orange,
.btn-blue {
  background: #0069B4;
  color: #fff;
  border: none;
}
.btn-orange:hover,
.btn-blue:hover {
  background: #004c80;
  color: #fff;
}
 .footer-section {
    background: #0069B4;
    color: #fff;
    padding: 2.5rem 0 1rem 0;
    position: relative;
    min-height: 350px; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .footer-section {
        min-height: auto;  
        padding: 2rem 1rem 1rem 1rem;
    }
}




      .footer-logo img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    object-fit: contain;
}

        .footer-section .footer-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        .footer-section a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            display: block;
            margin-bottom: 0.3rem;
            font-family: 'Inter', sans-serif;
        }
        .footer-section a:hover {
            text-decoration: underline;
        }
        .newsletter-box {
            background: #fff;
            border-radius: 12px;
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(241, 138, 2, 0.07);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            max-width: 350px;
            margin: 0 auto 1rem auto;
        }
        .newsletter-box input {
            border: 1px solid #0069B4;;
            border-radius: 6px;
            padding: 0.5rem 1rem;
            flex: 1;
            font-size: 1rem;
        }
        .newsletter-box button {
            background: #0069B4;
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 0.5rem 1.2rem;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.2s;
        }
        .newsletter-box button:hover {
            background: #0069B4;
        }
      
         .footer-title {
    font-size: 18px;
    font-weight: bold;
}

.newsletter-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
    max-width: 100%;
}

.newsletter-box input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.newsletter-box button {
    background-color: #0069B4;
    border: none;
    color: white;
    padding: 10px 16px;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

.newsletter-box button:hover {
    background-color: #0069B4;
}


.footer-copy {
    font-size: 1rem;
    margin-top: 2.5rem; /* jitna chahiye utna rakh lo */
    color: #fff;        /* footer ke hisaab se safed text */
    font-family: 'Inter', sans-serif;
}



@media (max-width: 576px) {
    .newsletter-box {
        flex-direction: column;
        border-radius: 6px;
    }
    .newsletter-box input {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }
    .newsletter-box button {
        width: 100%;
        border-radius: 0 0 6px 6px;
    }
}



        @media (max-width: 991px) {
            .banner-title { font-size: 1.5rem; }
            .category-content, .category-img { margin-bottom: 1.5rem; }
            .stats-section .row > div { margin-bottom: 1rem; }
        }
        @media (max-width: 767px) {
            .navbar-brand { font-size: 1.5rem; }
            .banner-section { padding: 2rem 0 1rem 0; }
            .search-box { flex-direction: column; gap: 0.5rem; }
            .category-content, .category-img { margin-bottom: 1rem; }
            .section-title { font-size: 1.3rem; }
            .stat-card { padding: 1.2rem 0.5rem; }
            .footer-section { padding: 2rem 0 0.5rem 0; }
        }




 /*  experte.html-css */


.expertebanner-section {
    height: 350px;
background: linear-gradient(135deg, #165cf9 0%, #1a3ebd 100%);



    display: flex;
    color: #fff;
    align-items: center;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}


.search-box .form-control,
.search-box .form-select {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding-left: 1rem;
}


.custom-select option {
    background-color: #e6f4ff; 
    color: #0069B4; 
}


.search-box .form-select:focus {
    border-color: #0069B4;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 180, 0.25);
}


.custom-select {
    color: #0069B4;
    font-weight: 500;
    border-radius: 8px;
    height: 52px;
    border: 1px solid #ddd;
    padding-left: 12px;
}
.custom-select option {
    color: #0069B4;
}

.btn-orange:hover {
    border-color: #999 !important;
}



.btn-orange {
    background-color: #0069B4;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.8); 
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 105, 180, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-orange:hover {
    background-color: #0069B4;
    border-color: rgba(255,255,255,1); 
    box-shadow: 0 6px 12px rgba(0, 105, 180, 0.35);
    transform: translateY(-2px);
}


@media (max-width: 576px) {
    .expertebanner-section {
        height: auto;  /* no fixed height on mobile */
        padding: 2rem 1rem;
    }
    .banner-title {
        font-size: 1.4rem;  /* smaller text */
        line-height: 1.2;   /* tighter spacing */
        margin-bottom: 1rem;
    }
}
    
        .search-box {
            background: #0069B4;
            border-radius: 12px;
            padding: 2rem 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .search-box input, .search-box select {
            border-radius: 8px;
            border: 1.5px solid #0069B4;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            min-width: 180px;
            font-family: 'Inter', sans-serif;
        }
        .search-box input:focus, .search-box select:focus {
            outline: 2px solid #0069B4;
        }
        .category-dropdown {
            background: #fff;
            border-radius: 12px;
            border: 2px solid #0069B4;
            margin: 0 auto 1rem auto;
            max-width: 300px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .category-dropdown .list-group-item {
            border: none;
            font-size: 1.1rem;
            color: #0069B4;
            font-family: 'Istok Web', sans-serif;
            cursor: pointer;
            transition: background 0.2s;
        }
        .category-dropdown .list-group-item.active, .category-dropdown .list-group-item:hover {
            background: #0069B4;
            color: #fff;
        }
      .stats-section {
    padding: 2rem 0;
    background: #fff;
}

.stat-card {
    background: #fff;
    border-bottom: 5px solid #0069B4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    min-width: 180px;
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
}

.stat-card:hover {
    transform: scale(1.05); 
     transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); 
    border-bottom-color: #004C80;
}

.stat-number {
    color: #0069B4;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #004C80; 
}










        /*  register.html-css */


/* Main Container */
.register-container {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  max-width: 974px;
  margin: 40px auto;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  min-height: 80vh;
}

/* Left Form */
.form-section {
  flex: 1 1 50%;
  padding: 40px;
  background: #fff;
  display: flex;
  align-items: center;
}

/* .form-wrapper {
  max-width: 1100px; 
} */

.form-control,
.form-select,
textarea {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #007bff;
  box-shadow: none;
}

/* .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  
} */

.form-subtitle {
  font-size: 15px;
  margin-bottom: 20px;
  color: #555;
  text-align: left;
}

/* Section Headers */
h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 25px 0 12px;
  color: #111;
  border-left: 4px solid #0d6efd;
  padding-left: 8px;
  text-align: left;
}

/* Form Layout */
.form-row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 30%;   
  min-width: 200px; 
}

label {
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  text-align: left;
  width: 100%;
}

.required::after {
  content: " *";
  color: red;
}

/* Inputs */
/* .form-control,
.form-select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  transition: 0.3s;
} */

/* .form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 5px rgba(13,110,253,0.2);
  outline: none;
} */

textarea {
  min-height: 70px;
  resize: none;
}

/* Paket Options */
.package-option {
  display: block;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #f9f9f9;
  margin-bottom: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
}

.package-option:hover {
  background: #eef5ff;
  border-color: #0d6efd;
}

.desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
  margin-left: 5px;
}

/* Checkbox */
.form-check {
  font-size: 14px;
  margin-bottom: 8px;
  text-align: left;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 12px;
  background: #0d6efd;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #0b5ed7;
}

@media (max-width: 991px) {
  .register-container {
    flex-direction: column;
    min-height: auto;
  }

  .form-section {
    flex: 1 1 100%;
    padding: 30px;
  }

  .form-row {
    gap: 10px;
  }
}

/* Mobile (≤ 576px) */
@media (max-width: 576px) {
  .register-container {
    margin: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 6px;
  }

  .form-section {
    padding: 20px;
  }

  h4 {
    font-size: 16px;
    margin: 20px 0 10px;
  }

  .form-subtitle {
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
    gap: 8px;
  }

  .form-row > div {
    min-width: 100%;
  }

  .form-control,
  .form-select,
  textarea {
    font-size: 14px;
    padding: 10px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 10px;
  }
}


/* Right Image */
/* .image-section {
  flex: 1 1 50%;
  background: url('image/Registerimg.jpg') no-repeat center center;
  background-size: cover; 
  min-height: 400px; 
  width: 600px;     
  height: 600px;          
} */







/*  thankyou.html-css */
 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(135deg,#e0f7fa,#ffffff);
      overflow-x: hidden;
    }

    .thankyou-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
      justify-content: center;
      padding: 20px;
      position: relative;
    }

    /* Confetti particles */
    .confetti {
      position: absolute;
      width: 12px;
      height: 12px;
      background-color: #0069B4;
      top: -10px;
      border-radius: 50%;
      opacity: 0.8;
      z-index: 1;
      animation: fall 3s linear infinite;
    }

    @keyframes fall {
      0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
      50% { opacity: 1; }
      100% { transform: translateY(100vh) rotate(360deg); opacity: 0; }
    }

    /* Thank You Card */
    .thankyou-card {
      background: #ffffff;
      border-radius: 25px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      max-width: 1000px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      position: relative;
      z-index: 2;
      margin-bottom: 40px;
      transition: transform 0.5s ease;
    }

    .thankyou-card:hover {
      transform: translateY(-5px) scale(1.02);
    }

    .thankyou-img-section {
      flex: 1 1 40%;
      min-width: 300px;
      background: linear-gradient(135deg,#b3e5fc,#e1f5fe);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .thankyou-img-section img {
      max-width: 100%;
      border-radius: 15px;
      object-fit: cover;
      animation: pop 0.8s ease-out forwards;
    }

    @keyframes pop {
      0% { transform: scale(0.6); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .content-section {
      flex: 1 1 60%;
      min-width: 300px;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .thank-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0069B4;
      display: flex;
      align-items: center; 
      gap: 20px;
      animation: popText 0.8s ease forwards;
    }

    @keyframes popText {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .checkmark-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #0069B4;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      animation: pop 0.8s ease forwards;
    }

    .check-icon {
      color: #fff;
      font-size: 2rem;
    }

    .content-section p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    .content-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      background:#0069B4;
      border-radius: 10px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .content-section .btn i {
      margin-right: 10px;
      font-size: 1.3rem;
    }

    .content-section .btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Success Cards */
    .success-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 20px;
      z-index: 2;
    }

    .success-card {
      flex: 1 1 220px;
      background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
      border-radius: 20px;
      padding: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 12px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: default;
    }

    .success-card:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .success-card i {
      font-size: 3rem;
      color: #0069B4;
      margin-bottom: 18px;
      animation: pop 0.6s ease forwards;
    }

    .success-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #0069B4;
      font-size: 1.2rem;
    }

    .success-card p {
      font-size: 1rem;
      color: #555;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .thankyou-card {
        flex-direction: column;
      }
      .thankyou-img-section, .content-section {
        flex: 1 1 100%;
        text-align: center;
        padding: 30px;
      }
      .content-section h1 {
        justify-content: center;
      }
      .content-section .btn {
        justify-content: center;
      }
    }





    
/* ---Dashboard.css */


 :root {
  --theme: #0069B4;
  --theme-dark: #005a93;
}

/* General Body */
body {
  background: #f5f7fb;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Layout */
.dashboard-wrap {
  max-width: 1280px;
  margin: 24px auto;
}
.sidebar {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.sidebar .brand {
  background: var(--theme);
  color: #fff;
  padding: 18px 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.nav-link {
  color: #334155;
  border-radius: 8px;
  margin: 4px 8px;
  display: flex;
  align-items: center;
}
.nav-link:hover {
  background: #f1f5f9;
  color: #0f172a;
}
.nav-link.active {
  background: rgba(0, 105, 180, 0.12);
  color: var(--theme);
  font-weight: 600;
}
.content {
  padding-left: 0;
}

/* Cards */
.card {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  margin-bottom: 24px;
}
.card-header {
  background: var(--theme);
  color: #fff;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-weight: 600;
}
.card-header .small {
  opacity: 0.9;
  font-weight: 500;
}

/* Forms */
.form-control:focus,
.form-select:focus {
  border-color: var(--theme);
  box-shadow: 0 0 0 0.2rem rgba(0, 105, 180, 0.15);
}
.btn-theme {
  background: var(--theme);
  color: #fff;
  border: 0;
}
.btn-theme:hover {
  background: var(--theme-dark);
  color: #fff;
}
.btn-ghost {
  background: rgba(0, 105, 180, 0.08);
  color: var(--theme);
  border: 1px solid rgba(0, 105, 180, 0.15);
}
.btn-ghost:hover {
  background: rgba(0, 105, 180, 0.15);
  color: var(--theme-dark);
}
.required::after {
  content: " *";
  color: #dc2626;
}

/* Eye toggle properly aligned */
.input-eye {
  position: absolute;
  right: 12px;
  top: 55px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #64748b;
  z-index: 2;
}

/* Profile image */
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--theme);
}

/* Tables */
.table th,
.table td {
  vertical-align: middle;
}
.rating {
  font-size: 18px;
  line-height: 1;
  color: #f59e0b;
}

/* Sections */
.section {
  display: none;
}
.section.active {
  display: block;
}

/* Reviews + Replies */
.review-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  background: #f9f9f9;
}
.review-header {
  font-weight: bold;
  margin-bottom: 5px;
}
.review-rating {
  color: #f0ad4e;
}
.review-comment {
  margin-bottom: 10px;
}
.reply-box {
  margin-top: 8px;
  padding: 10px;
  background: #e9f7ef;
  border-left: 3px solid #28a745;
  border-radius: 5px;
  position: relative;
}
.reply-actions {
  position: absolute;
  top: 5px;
  right: 5px;
}
.reply-actions button {
  margin-left: 5px;
  font-size: 0.75rem;
}
.review-actions {
  text-align: right;
  margin-top: 10px;
}
.review-actions button {
  margin-left: 5px;
}

/* Badges / Counters */
.stat {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.stat i {
  font-size: 22px;
  color: var(--theme);
}
.stat .num {
  font-weight: 800;
  font-size: 20px;
  margin-top: -4px;
}

/* Responsive */
@media (min-width: 992px) {
  .content {
    padding-left: 12px;
  }
  .sidebar {
    position: sticky;
    top: 20px;
  }
}


/* Plan Cards Base */
#plansSection .plan-card {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 0.75rem;
    gap: 0.5rem;
    padding: 1.25rem 1rem; /* good inner spacing */
}

/* Hover Lift */
#plansSection .plan-card:hover {
    transform: translateY(-7px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* Radio alignment */
#plansSection .form-check-input {
    margin: 0;
    flex-shrink: 0;
    vertical-align: middle;
    width: 1.3rem;
    height: 1.3rem;
}

/* Labels */
#plansSection .form-check-label {
    font-weight: 700;        
    font-size: 1.1rem;        
    display: inline-block;
    color: #1e1e1e;           
}

/* Price text */
#plansSection .text-muted {
    font-size: 0.95rem;       
    font-weight: 500;
    color: #555;              
    margin-top: 0.25rem;
}

/* Checked styling */
#plansSection .form-check-input:checked + div .form-check-label {
    color: #1e1e1e;             
}
#plansSection .form-check-input:checked + div .text-muted {
    color: #f1f1f1;         
}

/* Distinct colors per plan */
#plansSection .plan-basic {
    background: #e3f2fd;    
    border-color: #90caf9;
}
#plansSection .plan-basic .form-check-input:checked + div {
    background: #2196f3; 
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

#plansSection .plan-premium {
    background: #fff8e1;      
    border-color: #ffb74d;
}
#plansSection .plan-premium .form-check-input:checked + div {
    background: #fb8c00;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

#plansSection .plan-executive {
    background: #f3e5f5;     
    border-color: #ce93d8;
}
#plansSection .plan-executive .form-check-input:checked + div {
    background: #9c27b0;
    color: #fff;
    border-radius: 0.5rem;
    padding: 0.5rem;
}

/* Action buttons */
#plansSection .btn-outline-success {
    border-color: #198754;
    color: #198754;
}
#plansSection .btn-outline-success:hover {
    background-color: #198754;
    color: #fff;
}
#plansSection .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}
#plansSection .btn-outline-danger:hover {
    background-color: #dc3545;
    color: #fff;
}



/* Base layout responsive fix */
@media (max-width: 991px) {
  .dashboard-wrap {
    margin: 12px;
  }

  .sidebar {
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    top: auto;
  }

  .content {
    padding-left: 0 !important;
  }

  .stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px;
  }

  .stat .num {
    font-size: 18px;
  }
}

/* Extra small screens (phones under 576px) */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .sidebar .brand {
    font-size: 16px;
    padding: 12px;
    text-align: center;
  }

  .nav-link {
    font-size: 14px;
    padding: 8px;
  }

  .card {
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .card-header {
    font-size: 14px;
    padding: 10px;
  }

  /* Profile image shrink */
  .profile-pic {
    width: 80px;
    height: 80px;
  }

  /* Plans section adjustments */
  #plansSection .plan-card {
    flex-direction: column;
    padding: 1rem;
    gap: 0.25rem;
    text-align: center;
  }

  #plansSection .form-check-input {
    width: 1rem;
    height: 1rem;
  }

  #plansSection .form-check-label {
    font-size: 1rem;
  }

  #plansSection .text-muted {
    font-size: 0.85rem;
  }

  /* Review card adjustments */
  .review-card {
    padding: 12px;
    font-size: 14px;
  }
  .reply-box {
    font-size: 13px;
    padding: 8px;
  }

  .review-actions {
    text-align: center;
  }
  .review-actions button {
    font-size: 12px;
    margin: 4px 2px;
  }
}

/* Medium devices (tablets) */
@media (max-width: 768px) {
  .stat {
    flex-direction: row;
    justify-content: space-between;
  }

  .review-card {
    font-size: 15px;
  }

  #plansSection .plan-card {
    padding: 1rem;
  }
}



/* Base responsive improvements */
@media (max-width: 991px) {
  .dashboard-wrap {
    margin: 10px;
  }

  .sidebar {
    border-radius: 10px;
    margin-bottom: 20px;
    position: relative;
    top: auto;
    width: 100%;
  }

  .content {
    padding-left: 0 !important;
  }

  /* Stats cards stack neatly */
  .stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px;
    width: 100%;
  }

  .stat i {
    font-size: 28px;
  }

  .stat .num {
    font-size: 18px;
  }

  /* Sidebar toggle alignment */
  .sidebar .brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

/* Small phones (max 576px) */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .dashboard-wrap {
    margin: 8px;
  }

  /* Sidebar brand */
  .sidebar .brand {
    font-size: 15px;
    padding: 10px;
    text-align: center;
  }

  .nav-link {
    font-size: 13px;
    padding: 8px 10px;
  }

  /* Cards compact */
  .card {
    border-radius: 10px;
    margin-bottom: 14px;
  }

  .card-header {
    font-size: 14px;
    padding: 10px;
  }

  /* Profile image shrink */
  .profile-pic {
    width: 70px;
    height: 70px;
  }

  /* Plans cards stack full width */
  #plansSection .row {
    gap: 1rem;
  }

  #plansSection .plan-card {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.8rem;
    gap: 0.3rem;
    text-align: center;
    width: 100%;
  }

  #plansSection .form-check-input {
    width: 1rem;
    height: 1rem;
  }

  #plansSection .form-check-label {
    font-size: 0.95rem;
  }

  #plansSection .text-muted {
    font-size: 0.8rem;
  }

  /* Reviews */
  .review-card {
    padding: 10px;
    font-size: 13.5px;
  }

  .reply-box {
    font-size: 13px;
    padding: 7px;
  }

  .review-actions {
    text-align: center;
  }

  .review-actions button {
    font-size: 12px;
    margin: 3px;
    padding: 4px 8px;
  }
}

/* Tablets (max 768px) */
@media (max-width: 768px) {
  .stat {
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
  }

  .review-card {
    font-size: 14px;
  }

  #plansSection .plan-card {
    padding: 1rem;
  }
}












/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-nav {
        gap: 0.3rem;
    }
    .navbar-brand {
        font-size: 1.5rem;
    }
    .btn-orange {
        width: 100%;
    }
    .navbar-nav .nav-link::after {
        display: none;
    }
    .banner-title {
        font-size: 1.5rem;
    }
    .category-content, .category-img {
        margin-bottom: 1.5rem;
    }
    .stats-section .row > div {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }
    .thankyou-card {
        flex-direction: column;
    }
    .thankyou-img-section, .content-section {
        flex: 1 1 100%;
        text-align: center;
        padding: 30px;
    }
    .content-section h1 {
        justify-content: center;
    }
    .content-section .btn {
        justify-content: center;
    }
    .search-box {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 767px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    .banner-section {
        padding: 2rem 0 1rem 0;
    }
    .category-content, .category-img {
        margin-bottom: 1rem;
    }
    /* .section-title {
        font-size: 1.3rem;
    } */
    .stat-card {
        padding: 1.2rem 0.5rem;
    }
    .footer-section {
        padding: 2rem 0 0.5rem 0;
    }
    .timeline-line-fill,
    .timeline-circle {
        display: none;
    }
    .category-img {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .newsletter-box {
        flex-direction: column;
        border-radius: 6px;
    }
    .newsletter-box input {
        border-bottom: 1px solid #ccc;
        width: 100%;
    }
    .newsletter-box button {
        width: 100%;
        border-radius: 0 0 6px 6px;
    }
}

@media (min-width: 992px) {
    .image-section {
        min-height: 600px;
    }
    .content {
        padding-left: 12px;
    }
    .sidebar {
        position: sticky;
        top: 20px;
    }
}

@media (max-width: 992px) {
    .register-container {
        flex-direction: column;
        margin: 20px;
    }
    .form-section {
        padding: 30px 20px;
    }
    .image-section {
        min-height: 300px;
        flex: 1 1 100%;
    }
    .form-row > div {
        flex: 1 1 100%;
    }
}

@media (min-width: 768px) {
    .category-timeline-scroll {
        padding-left: 40px;
        padding-right: 40px;
    }
    .category-timeline-scroll .col-md-2 {
        padding-left: 0;
        padding-right: 0;
        flex: 0 0 8%;
        max-width: 8%;
    }
    .category-timeline-scroll .col-md-5 {
        flex: 0 0 46%;
        max-width: 46%;
    }
}
   
        .container-global {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: #1e293b; 
        } */

        .section-subtitle {
            font-size: 1.125rem;
            color: #475569; 
            max-width: 600px;
            margin: 0 auto;
        }

        
        .navbar-brand img {
            border-radius: 8px;
        }
        
        .btn-orange {
            background-color: #0069B4;
            color: white;
            border-radius: 9999px; 
            transition: background-color 0.3s;
        }
        
        .btn-orange:hover {
            background-color: #0069B4;
        }
        
        .navbar-nav .nav-link {
            font-weight: 500;
        }





        /* Categories.html */
/* Categories Section */


.Categoriesbanner-section {  
   
    height: 350px;
background: linear-gradient(135deg, #165cf9 0%, #1a3ebd 100%);



    display: flex;
    color: #fff;
    align-items: center;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}


.search-box .form-control,
.search-box .form-select {
    height: 52px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    padding-left: 1rem;
}


.custom-select option {
    background-color: #e6f4ff; 
    color: #0069B4; 
}


.search-box .form-select:focus {
    border-color: #0069B4;
    box-shadow: 0 0 0 0.25rem rgba(0, 105, 180, 0.25);
}


.custom-select {
    color: #0069B4;
    font-weight: 500;
    border-radius: 8px;
    height: 52px;
    border: 1px solid #ddd;
    padding-left: 12px;
}
.custom-select option {
    color: #0069B4;
}

.btn-orange:hover {
    border-color: #999 !important;
}



.btn-orange {
      background-color: #0069B4 !important;
    color: #fff  !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    height: 52px;
    border: 1.5px solid rgba(255,255,255,0.8); 
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 8px rgba(0, 105, 180, 0.25);
    display: inline-flex;
    align-items: center;         
    justify-content: center;
    letter-spacing: 0.3px;
}

.btn-orange:hover {
    background-color: #0069B4;
    border-color: rgba(255,255,255,1); 
    box-shadow: 0 6px 12px rgba(0, 105, 180, 0.35);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .banner-title {
        font-size: 1.8rem;
    }
}
    
        .search-box {
            background: #0069B4;
            border-radius: 12px;
            padding: 2rem 1rem;
            margin-bottom: 1.5rem;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .search-box input, .search-box select {
            border-radius: 8px;
            border: 1.5px solid #0069B4;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            min-width: 180px;
            font-family: 'Inter', sans-serif;
        }
        .search-box input:focus, .search-box select:focus {
            outline: 2px solid #0069B4;
        }
        .category-dropdown {
            background: #fff;
            border-radius: 12px;
            border: 2px solid #0069B4;
            margin: 0 auto 1rem auto;
            max-width: 300px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        }
        .category-dropdown .list-group-item {
            border: none;
            font-size: 1.1rem;
            color: #0069B4;
            font-family: 'Istok Web', sans-serif;
            cursor: pointer;
            transition: background 0.2s;
        }
        .category-dropdown .list-group-item.active, .category-dropdown .list-group-item:hover {
            background: #0069B4;
            color: #fff;
        }
      .stats-section {
    padding: 2rem 0;
    background: #fff;
}

.stat-card {
    background: #fff;
    border-bottom: 5px solid #0069B4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    min-width: 180px;
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
}

.stat-card:hover {
    transform: scale(1.05); 
     transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); 
    border-bottom-color: #004C80;
}

.stat-number {
    color: #0069B4;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #004C80; 
}



.categories-section {
    background: #f8f9fa;
}

/* Card Styling */
.category-card {
    background: #fff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    z-index: 5;
}

/* Image Box */
.category-card .category-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 8px;
}

.category-card .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Responsive Tweaks */

/* Tablet */
@media (max-width: 992px) {
    .category-card .category-img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .category-card {
        padding: 1rem;
    }

    .category-card .category-img {
        height: 180px; 
    }

    .category-card .category-content {
        padding-top: 0.8rem;
        text-align: center; 
    }

    .category-card .category-content h5 {
        font-size: 1rem;
    }

    .category-card .category-content p {
        font-size: 0.9rem;
    }
}

     /* about-us */



.aboutbanner-section {
    
    height: 350px;
background: linear-gradient(135deg, #165cf9 0%, #1a3ebd 100%);



    display: flex;
    color: #fff;
    align-items: center;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}



.stat-card {
    background: #fff;
    border-bottom: 5px solid #0069B4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.10);
    border-radius: 12px;
    padding: 2rem 1rem;
    text-align: center;
    margin-bottom: 1rem;
    min-width: 180px;
    transition: all 0.3s ease-in-out; 
    cursor: pointer;
}

.stat-card:hover {
    transform: scale(1.05); 
     transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15); 
    border-bottom-color: #004C80;
}

.stat-number {
    color: #0069B4;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: #004C80; 
}


     .feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; 
    border-radius: 8px;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 20px;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.feature-card:hover {
    box-shadow: 0 12px 25px rgba(0,0,0,0.18); /* stronger shadow */
    transform: translateY(-6px) scale(1.03); /* lift + slight zoom */
    border-color: #0d6efd; /* accent color border */
    background: #f8f9ff; /* subtle background fade */
}



   /* Expertise Section Styles */
        

         /* Expertise Section Image */
.expertise-image {
  max-width: 100%;       
  max-height: 350px;     
  object-fit: cover;     
  border-radius: 10px;   
  display: block;
  margin: 0 auto;        
}

/* Mobile ke liye aur adjust */
@media (max-width: 768px) {
  .expertise-image {
    max-height: 220px;  
    width: 100%;
  }
}


        .stat-box {
            display: inline-block;
            padding: 1rem 2rem;
            background-color: #3b82f6; 
            color: white;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .stat-box:hover {
            transform: scale(1.05);
        }

        .expertise-image {
            height: 400px; 
            object-fit: cover; 
            width: 100%; 
        }
        
        /* Values Section Styles */
        .card.h-100 {
            transition: transform 0.3s;
        }

        .card.h-100:hover {
            transform: translateY(-10px);
        }

        .card.h-100 i {
            color: #3b82f6;
        }


        .section {
    padding: 4rem 0;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    display: block; /* ensure visible */
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}




/*  otp-verification.html-css */

     
    .form-section {
      flex: 1 1 50%;
      padding: 50px 30px;
      display: flex;
      align-items: center;
    }
    .form-otp {
      width: 100%;
      max-width: 400px;
      margin: auto;
      text-align: center;
    }
    /* .section-title {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #0069B4;
    } */
    .form-subtitle {
      font-size: 15px;
      margin-bottom: 25px;
      color: #555;
    }
    .otp-inputs {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 20px;
    }
    .otp-inputs input {
      width: 50px;
      height: 50px;
      text-align: center;
      font-size: 20px;
      border: 2px solid #ccc;
      border-radius: 8px;
      transition: 0.3s;
    }
    .otp-inputs input:focus {
      border-color: #0069B4;
      box-shadow: 0 0 5px rgba(0,105,180,0.3);
      outline: none;
    }
    .submit-btn {
      width: 100%;
      padding: 12px;
      background: #0069B4;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }
    .submit-btn:hover {
      background: #005096;
    }
    .resend-section {
      margin-top: 15px;
      font-size: 14px;
      color: #555;
    }
    .resend-section a {
      color: #0069B4;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }
    .resend-section a:hover {
      text-decoration: underline;
    }
    .image-section {
      flex: 1 1 50%;
      background: url('image/Registerimg.jpg') no-repeat center center / cover;
      min-height: 100%;
    }
    @media (max-width: 992px) {
      .register-container {
        flex-direction: column;
        margin: 20px;
      }
      .form-section {
        padding: 40px 20px;
      }
      .image-section {
        min-height: 250px;
        flex: 1 1 100%;
      }
    }



/* login.blade.php   */
.login-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    background: #f7f8fc;
}

/* Left Form Section */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    background: #fff;
}

/* Form wrapper */
.form-login {
    width: 100%;
    max-width: 400px;
}

/* Headings */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #252525;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

/* Form inputs */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #0069B4;
    outline: none;
    box-shadow: 0 0 5px rgba(73, 86, 232, 0.3);
}

/* Buttons */
.btn-primary {
    background-color: #0069B4;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #0069B4;
    transform: translateY(-2px);
}

/* Links */
.text-decoration-none {
    color: #0069B4;
}

.text-decoration-none:hover {
    text-decoration: underline;
}

/* Remember Me + Forgot Password section */
.form-group.d-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 10px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    margin-top: 0;
}

.form-check-label,
.text-end a {
    font-size: 0.875rem;
}

/* Alerts */
.alert {
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Register link */
.text-center span {
    font-size: 0.875rem;
}



/* Right Image Section */
.imagelogin-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
      background: url('image/Registerimg.jpg') no-repeat center center / cover;

    background-size: cover;
    min-height: 100vh;
    position: relative;
}

/* Optional overlay for better contrast */
/* .image-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
} */

/* Responsive adjustments */
@media (max-width: 991px) {
    .image-section {
        min-height: 250px;
        width: 100%;
    }
}








/* Responsive adjustments */
@media (max-width: 991px) {
    .login-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-group.d-flex {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-group.d-flex .text-end {
        text-align: left;
        margin-top: 5px;
    }
}

   



 .thankyou-card {
      background: #ffffff;
      border-radius: 25px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
      max-width: 1000px;
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      overflow: hidden;
      position: relative;
      z-index: 2;
      margin-bottom: 40px;
      transition: transform 0.5s ease;
    }

    .thankyou-card:hover {
      transform: translateY(-5px) scale(1.02);
    }

    .thankyou-img-section {
      flex: 1 1 40%;
      min-width: 300px;
      background: linear-gradient(135deg,#b3e5fc,#e1f5fe);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px;
    }

    .thankyou-img-section img {
      max-width: 100%;
      border-radius: 15px;
      object-fit: cover;
      animation: pop 0.8s ease-out forwards;
    }

    @keyframes pop {
      0% { transform: scale(0.6); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .content-section {
      flex: 1 1 60%;
      min-width: 300px;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .thank-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0069B4;
      display: flex;
      align-items: center; 
      gap: 20px;
      animation: popText 0.8s ease forwards;
    }

    @keyframes popText {
      0% { transform: scale(0); opacity: 0; }
      100% { transform: scale(1); opacity: 1; }
    }

    .checkmark-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: #0069B4;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      animation: pop 0.8s ease forwards;
    }

    .check-icon {
      color: #fff;
      font-size: 2rem;
    }

    .content-section p {
      font-size: 1.1rem;
      color: #555;
      margin-bottom: 35px;
      line-height: 1.6;
    }

    .content-section .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #fff;
      background:#0069B4;
      border-radius: 10px;
      border: none;
      transition: all 0.3s ease;
      box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    }

    .content-section .btn i {
      margin-right: 10px;
      font-size: 1.3rem;
    }

    .content-section .btn:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    }

    /* Success Cards */
    .success-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 25px;
      margin-top: 20px;
      z-index: 2;
    }

    .success-card {
      flex: 1 1 220px;
      background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
      border-radius: 20px;
      padding: 25px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      box-shadow: 0 12px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      cursor: default;
    }

    .success-card:hover {
      transform: translateY(-6px) scale(1.05);
      box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }

    .success-card i {
      font-size: 3rem;
      color: #0069B4;
      margin-bottom: 18px;
      animation: pop 0.6s ease forwards;
    }

    .success-card h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #0069B4;
      font-size: 1.2rem;
    }

    .success-card p {
      font-size: 1rem;
      color: #555;
      margin: 0;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .thankyou-card {
        flex-direction: column;
      }
      .thankyou-img-section, .content-section {
        flex: 1 1 100%;
        text-align: center;
        padding: 30px;
      }
      .content-section h1 {
        justify-content: center;
      }
      .content-section .btn {
        justify-content: center;
      }
    }






    .profile-container{margin-top:50px;margin-bottom:50px;}
.expert-card{transition: transform 0.3s, box-shadow 0.3s; border-radius:10px;}
.expert-card:hover {transform: scale(1.03); box-shadow: 0 15px 25px rgba(0,0,0,0.2);}
.profile-img{width:100%; height:250px; object-fit:cover; border-top-left-radius:10px; border-top-right-radius:10px;}
.card-title{font-size:1.2rem; font-weight:600; margin-bottom:0.3rem;}
.badge{margin:2px; background:#0069B4; color:#fff; font-size:0.8rem;}
.review-box{border:1px solid #ddd; padding:10px; margin-bottom:10px; border-radius:8px; background:#fff;}
.btn-orange{background:#0069B4; color:#fff; border:none;}
.btn-orange:hover{background:#0069B4; color:#fff;}
.star{cursor:pointer; color:#ccc; font-size:20px; transition: color 0.2s;}
.star.selected, .star.hover{color:gold;}
.nav-tabs .nav-link.active{background:#0069B4; color:#fff;}
.nav-tabs .nav-link{color:#0069B4;}
.tab-content{margin-top:20px;}
.review-form textarea{resize:none;}

/* Star colors */
.star {
  font-size: 24px;
  cursor: pointer;
  color: #ccc; /* default gray */
  transition: color 0.2s;
}

.star.selected,
.star.hover,
.star.bi-star-fill {
  color: gold !important; /* yellow fill */
}






/*  contact.html-css */



/* Hero Section */
.contact-hero { background:#0069B4; color:#fff; padding:100px 0 60px 0; text-align:center; position:relative; overflow:hidden; }
.contact-hero::before { content:""; position:absolute; top:0; left:0; width:100%; height:100%; background:rgba(0,0,0,0.2); }
.contact-hero h1 { position:relative; font-size:3rem; font-weight:700; z-index:1; }
.contact-hero p { position:relative; font-size:1.2rem; z-index:1; }

/* Contact Section */
.contact-container { margin-top:-60px; margin-bottom:60px; }
.contact-card { background:#fff; border-radius:20px; box-shadow:0 10px 30px rgba(0,0,0,0.15); padding:40px; transition: transform 0.3s, box-shadow 0.3s; }
.contact-card:hover { transform: translateY(-5px); box-shadow:0 20px 35px rgba(0,0,0,0.2); }
.contact-card h2 { color:#0069B4; margin-bottom:25px; font-weight:700; }
.form-control:focus { border-color:#0069B4; box-shadow:0 0 0 0.2rem rgba(0,105,180,0.25); }
.btn-contact { background:#0069B4; color:#fff; border:none; transition:0.3s; }
.btn-contact:hover { background:#00508a; }

.contact-info i { color:#0069B4; margin-right:10px; }
.contact-info p { margin-bottom:15px; font-size:1rem; }
.social-icons a { color:#0069B4; font-size:1.5rem; margin-right:15px; transition:0.3s; }
.social-icons a:hover { color:#00508a; }

/* Map */
.map-container { width:100%; height:450px; border-radius:20px; overflow:hidden; margin-top:50px; }



@media (max-width: 767px){
  .contact-card { padding:25px; }
  .contact-hero h1 { font-size:2.2rem; }
}