/* @import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap'); */

:root {
    --tech-blue: #1E90FF;
    --bright-green: #32CD32;
    --cool-gray: #4A4A4A;
    --bg-light: #F5F5F5;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: var(--bg-light);
    color: var(--cool-gray);
    line-height: 1.6;
    padding-top: 70px;
}

/* index */
.search-section {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.search-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
    gap: 15px;
}


input[type="text"],
select {
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
}

/* input[type="text"] {
    flex: 1;
    min-width: 200px;
} */

select {
    min-width: 150px;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.agent-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.agent-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.website-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    max-width: 100%;
    padding: 10px 15px;
    background: linear-gradient(135deg, #30bcff, #1e44f3);
    ;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9em;

    transition: background-color 0.2s ease;
    white-space: nowrap;
    margin: 15px auto auto auto;

}

.website-link:hover {
    background: linear-gradient(135deg, #1ecb3d, #066927);
    ;
}

.website-link svg {
    width: 16px;
    height: 16px;
    margin-left: 6px;
}

.not-available {
    color: #94a3b8;
    font-size: 0.9em;
    margin-top: 15px;
    font-style: italic;
}

.rating {
    display: flex;
    align-items: center;
    margin: 10px 0;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.rating-score {
    color: #64748b;
    font-size: 0.9em;
}

.sort-controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.sort-controls label {
    color: #64748b;
    font-size: 0.9em;
}

.agent-name {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 5px;
}

.agent-developer {
    color: #64748b;
    font-size: 0.9em;
    margin-bottom: 10px;
}

.agent-description {
    margin-bottom: 15px;
    font-size: 0.95em;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background: #e2e8f0;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    color: #475569;
}

.stats {
    margin: 15px 0;
    color: #64748b;
    font-size: 0.9em;
}

.industry-section {
    margin-bottom: 30px;
}

.industry-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.industry-name {
    font-size: 1.5em;
    color: #1e293b;
}

.function-section {
    margin-bottom: 20px;
}

.function-name {
    font-size: 1.2em;
    color: #475569;
    margin-bottom: 15px;
}

.agent-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.agent-card .agent-meta {
    margin-top: auto;
    padding-top: 15px;
}

.industry-tag {
    background: #e0f2fe;
    color: #0369a1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-right: 8px;
}

.function-tag {
    background: #f0fdf4;
    color: #166534;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
}

@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .agents-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .filter-div {
        gap: 15px;
        display: grid;
    }
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    z-index: 1000;
    width: 420px;
    text-align: center;
}

.overlay {

    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    /* Light transparent white */
    backdrop-filter: blur(10px);
    /* Frosted glass blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* Safari support */
    z-index: 999;


}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -42%);
    background: #ffffff;
    padding: 20px 40px;
    border-radius: 8px;
    width: 600px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: none;
}

.popup h2 {
    margin-bottom: 10px;
}

.popup p {
    font-size: 14px;
    color: #818181;
}

.google-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e5e5e5;
    color: black;
    padding: 10px;
    border-radius: 5px;
    margin: 15px auto;
    width: 90%;
    cursor: pointer;
    margin-bottom: 40px;
}

.google-btn img {
    width: 18px;
    margin-right: 10px;
}

.popup a {
    color: #1e293b;
    font-weight: 600;

    cursor: pointer;

}

#loginLink,
#signupLink {
    color: #1e90ff !important;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
}

/* .login-form {
    display: none;
} */

.login-form input,
.register-form input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    background: #f1f1f1;
}

.login-form button,
.register-form button {
    width: auto;
    padding: 10px 50px;
    background: linear-gradient(135deg, #1ecb3d, #066927);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0px 0px 0px;
}

.forgot-password {
    display: block;
    text-align: right;
    margin: 5px 30px 15px;
    font-size: 14px;
    color: #4CAF50;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

.error {
color: red;
font-size: 0.9rem;
}
.success {
color: green;
font-size: 1rem;
text-align: center;
}

@media (max-width: 767px) {
    .website-link {
        width: 100%;
    }

    .popup {
        padding: 40px 20px;
        width: 90%;

    }
}


/* Common Header Styles */
.main-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--tech-blue);
    text-decoration: none;
}
 
.nav-links {
    display: flex;
    gap: 30px;

    
}

.nav-link {
    text-decoration: none;
    margin-left: 10px ;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
    color: #2d2c2c !important;
    font-family: poppins;
}

.nav-link:hover {
    color: var(--tech-blue);
    background: #c8e6fa;
}

.nav-link.active {
    color: var(--tech-blue);
    background: #e0f2fe;
} 

/* Academy Specific Styles */
.section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-placeholder {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    background: var(--tech-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 20px;
}

.main-heading {
    color: var(--tech-blue);
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
}

.tagline {
    color: var(--cool-gray);
    font-size: 24px;
    margin-bottom: 40px;
}

.intro-section {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.section-heading {
    color: var(--tech-blue);
    font-size: 32px;
    margin-bottom: 30px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.course-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-title {
    color: var(--tech-blue);
    font-size: 24px;
    margin-bottom: 15px;
}

.certification-badge {
    width: 150px;
    height: 150px;
    background: var(--bright-green);
    border-radius: 50%;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.cta-button {
    background: var(--bright-green);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: #2ab82a;
}

.benefits-list {
    max-width: 600px;
    margin: 30px auto;
    text-align: left;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    color: var(--bright-green);
    position: absolute;
    left: 0;
}

@media (max-width: 768px) {
    .main-heading {
        font-size: 36px;
    }

    .tagline {
        font-size: 20px;
    }

    .section {
        padding: 40px 20px;
    }

    .course-grid {
        grid-template-columns: 1fr;
    }

    .nav-content {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
    }

    .nav-links {
        margin-top: 15px;
    }
}




/* new styles */
.logo img{
    width:280px;
}
nav.navbar.navbar-expand-lg {
    padding: 20px 0px;
}

.contact-area {
    border-bottom: 1px solid #353C46;
}

.contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
}

.contact-content p::after {
    background: #353C46;
    bottom: -30px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
}

.contact-content h6 {
    color: #8b9199;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 10px;
}

.contact-content span {
    color: #353c47;
    margin: 0 10px;
}

.contact-social {
    margin-top: 30px;
}

.contact-social > ul {
    display: inline-flex;
}

.contact-social ul li a {
    border: 1px solid #8b9199;
    color: #8b9199;
    display: inline-block;
    height: 40px;
    margin: 0 10px;
    padding-top: 7px;
    transition: all 0.4s ease 0s;
    width: 40px;
}

.contact-social ul li a:hover {
    border: 1px solid #FAB702;
    color: #FAB702;
}

.contact-content img {
    max-width: 210px;
}

 footer {
    background: #000c24;
    color: #cccccc;
}

footer p {
    padding: 16px 0;
    text-align: center;
    margin-bottom: 0px;
}

footer img {
    width: 180px;
}
/* General Contact Section Styling */
.contact-area {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    padding: 70px 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path_to_background_image.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}




/* Title Styling */
.contact-area h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "Mulish", serif;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #f1f1f1;
}

/* Subtitle Styling */
.contact-area .sub-text {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styling */
.contact-area .btn {
    background-color: #ff6f61;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

.contact-area .btn:hover {
    background-color: #e15b4b;
}

/* Media Query for Responsiveness */
@media (max-width: 768px) {
    .contact-area h2 {
        font-size: 28px;
    }
    
    .contact-area .sub-text {
        font-size: 16px;
    }
    
    .contact-area .btn {
        font-size: 16px;
        padding: 10px 
    }
}
.main-container {
    margin-top: 70px !important;
}
.teams-container{
    margin-top: 120px !important;
}
.signup-form {
    margin-top: 20px;
 
}

.input-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
}


.email-input {
    width: 100%;
    padding: 10px 10px 10px 35px; /* Extra padding for icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 30px !important;
    text-align: left;
}

.signup-button {
   
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background: linear-gradient(135deg, #1ecb3d, #024719);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.signup-button:hover {
    background: linear-gradient(135deg, #30bcff, #1e44f3);
}



.shareArticle {
    display: flex;
    flex-flow: column;
    align-items: center;
    width: 100%;
    padding: 15px;
  }
  
  .shareSocial {
    display: flex
    ;
        flex-flow: row;
        align-items: center;
        justify-content: end;
        position: relative;
        margin-top: -31px;
       
 
  }
  @media (max-width: 767px) {
    .shareSocial {
      flex-flow: column;
    }
  }
  .shareSocial .socialTitle {
    margin: 0 15px 0 0;
    font-size: 20px;
  }
  @media (max-width: 767px) {
    .shareSocial .socialTitle {
      margin-bottom: 15px;
      text-align: center;
    }
  }
  .shareSocial .socialList {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    justify-content: center;
    flex-flow: row wrap;
  }
  .shareSocial .socialList li {
    margin: 5px;
  }
  .shareSocial .socialList li:first-child {
    padding-left: 0;
  }
  .shareSocial .socialList li a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    text-decoration: none;
    background-color: #999;
    color: #fff;
    transition: 0.35s;
    box-shadow: rgb(221, 221, 221) 0px 0px 5px 0px;
    font-size: 18px;
  }
  .shareSocial .socialList li a i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: top left;
    transform: scale(1) translate(-50%, -50%);
    transition: 0.35s;
  }
  .shareSocial .socialList li a:hover i {
    transform: scale(1.5) translate(-50%, -50%);
  }
  .shareSocial .socialList li:nth-child(1) a {
    background-color: #135cb6;
  }
  .shareSocial .socialList li:nth-child(2) a {
    background-color: #00aced;
  }
  .shareSocial .socialList li:nth-child(3) a {
    background: linear-gradient(120deg, #ff0089, #8158e3);
  }
  .shareSocial .socialList li:nth-child(4) a {
    background-color: #111111;
  }
  .shareSocial .socialList li:nth-child(5) a {
    background-color: #1FB381;
  }
  
  .shareLink .permalink {
    position: relative;
    border-radius: 30px;
  }
  .shareLink .permalink .textLink {
    text-align: center;
    padding: 12px 60px 12px 30px;
    height: 45px;
    width: 450px;
    font-size: 16px;
    letter-spacing: 0.3px;
    color: #494949;
    border-radius: 25px;
    border: 1px solid #f2f2f2;
    background-color: #f2f2f2;
    outline: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    transition: all 0.3s ease;
  }
  @media (max-width: 767px) {
    .shareLink .permalink .textLink {
      width: 100%;
    }
  }
  .shareLink .permalink .textLink:focus {
    border-color: #d8d8d8;
  }
  .shareLink .permalink .textLink::-moz-selection {
    color: #fff;
    background-color: #ff0a4b;
  }
  .shareLink .permalink .textLink::selection {
    color: #fff;
    background-color: #ff0a4b;
  }
  .shareLink .permalink .copyLink {
    position: absolute;
    top: 50%;
    right: 25px;
    cursor: pointer;
    transform: translateY(-50%);
  }
  .shareLink .permalink .copyLink:hover:after {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
  .shareLink .permalink .copyLink:after {
    content: attr(tooltip);
    width: 140px;
    bottom: -40px;
    left: 50%;
    padding: 5px;
    border-radius: 4px;
    font-size: 0.8rem;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-10px) translateX(-50%);
    transition: all 300ms ease;
    text-align: center;
  }
  .shareLink .permalink .copyLink i {
    font-size: 20px;
    color: #ff0a4b;
  }
  .contact-form form input {
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 12px;
    height: 40px;
    padding: 0 25px;
    border-radius: 30px;
}
.captcha-submit {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    justify-content: center;
}
.capbox {
 
    border: #ffffff 0px solid !important;
    border-width: 2px 2px 2px 2px !important;
}
#CULCaptchaInput {
    border: none !important;
    margin: 3px 0px 1px 0px;
    border-radius: 6px;
    height: 30px !important;
    font-size: 22px !important;
    text-align: center;
}
.sign-up-btn{
    background-color: #e0e0e0;
    border: none;
    padding: 10px 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.course-card img{
width:100%
}
.course-card.Lesson {
    background: var(--white);
    padding: 12px;
    box-shadow: rgb(221,221,221) 0px 0px 8px 0px;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .course-card {
    position: relative;
    cursor: pointer;
    text-align: center;
  }

  .course-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .video-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
  }

  .course-card span {
    display: block;
    margin-top: 8px;
    font-weight: bold;
  }

  /* Modal styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 400px;
    position: relative;
  }

  .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
  }

  form input, form button {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
  }

  form button {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
  }

  form button:hover {
    background-color: #0056b3;
  }
  #authText{
    padding-top: 20px;
  }
  copy-wrapper {
    position: relative;
    display: inline-block;
  }
  
 
  