:root {
    --primary-blue: #1e40af;
    --primary-blue-hover: #1d4ed8;
    --gray-bg: #f9fafb;
    --white: #ffffff;
    --black: #111827;
    --gray-dark: #374151;
    --gray-medium: #6b7280;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;


}


body {
    margin: 0;
    font-family: "Oswald", sans-serif;
    
}


.search-bar, .search-bar-mobile {
    position: relative; 
}


.search-results-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    z-index: 1100; 
    max-height: 400px;
    overflow-y: auto;
    display: none; 
}

.search-results-list.active {
    display: block; 
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}
.search-result-item:last-child { border-bottom: none; }
.search-result-item a { text-decoration: none; color: #111827; display: block; }
.search-result-item:hover { background-color: #f9fafb; }
.search-result-item .title { font-family: 'Oswald', sans-serif; font-weight: 500; color: var(--primary-blue); margin-bottom: 0.25rem; }
.search-result-item .description { font-family: 'Roboto', sans-serif; font-size: 0.9rem; color: #4b5563; line-height: 1.5; }
.no-results-item { padding: 1rem; color: #6b7280; font-style: italic; }


.search-item-mobile {
    padding: 10px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

#search-input-mobile {
    width: 100%;
    padding: 10px 15px;
    border-radius: 20px;
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    color: var(--black);
    font-family: 'Roboto', sans-serif;
}
#search-input-mobile::placeholder {
    color: var(--gray-medium);
}

.search-input {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    border-radius: 20px;
    padding: 8px 35px 8px 15px; 
    color: black;
    width: 150px;
    transition: all 0.3s ease;
}
.search-input:focus {
    outline: none;
    width: 200px;
    border: 1px solid var(--primary-blue);
}


.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
    pointer-events: none; 
}
.search-input:focus + .search-icon {
    color: var(--primary-blue); 
}
.navbar-dark-text .search-icon, .navbar-transitional .search-icon {
    color: rgba(255, 255, 255, 0.7);
}
.navbar-dark-text .search-input:focus + .search-icon, .navbar-transitional .search-input:focus + .search-icon {
    color: white;
}

.promo-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--black));
    color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0.5s;
}

.promo-popup.visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s linear 0s;
}

.promo-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.promo-header h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.promo-close-btn {
    background: transparent;
    border: none;
    color: var(--white);
    opacity: 0.7;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.2s ease;
}

.promo-close-btn:hover {
    opacity: 1;
}

.promo-close-btn svg {
    width: 24px;
    height: 24px;
}

.promo-body p {
    font-family: 'Roboto', sans-serif;
    color: #e5e7eb;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.promo-cta {
    display: block;
    text-decoration: none;
    text-align: center;
    background-color: white; 
    color: black;            
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.promo-cta:hover {
    background-color: #1e40af; 
    color: white;              
    transform: scale(1.05);
}





#chatbot-modal {
    z-index: 9999; 
}

#chatbot-modal.hidden {
    pointer-events: none;
}
#chatbot-modal:not(.hidden) {
    pointer-events: auto;
}

.chatbot-container {
    background-color: var(--primary-blue); 
    width: 100%;
    max-width: 400px;
    height: 80vh;
    max-height: 600px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease-out;
    visibility: hidden; 
}

#chatbot-modal.hidden .chatbot-container {
    opacity: 0;
    transform: translateY(20px);
    visibility: hidden;
}

#chatbot-modal:not(.hidden) .chatbot-container {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}


.chatbot-header {
    background-color: var(--primary-blue); 
    color: var(--white);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    overflow: hidden; 
}

.chatbot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chatbot-title-text {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
}

.chatbot-status {
    font-size: 0.8rem;
    color: #d1d5db;
}

.chatbot-close-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white); 
    cursor: pointer;
    opacity: 0.8;
    padding: 0;
}
.chatbot-close-btn:hover { opacity: 1; }
.chatbot-close-btn svg { width: 24px; height: 24px; }


.chatbot-messages-area {
    flex-grow: 1;
    padding: 1.25rem;
    overflow-y: auto;
    background-color: #f4f4f5; 
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.chatbot-messages-area::-webkit-scrollbar { width: 6px; }
.chatbot-messages-area::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

.user-message, .bot-message {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    max-width: 80%;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.user-message {
    background-color: var(--primary-blue);
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}

.bot-message {
    background-color: #e4e4e7; 
    color: var(--black);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.bot-message a { color: var(--primary-blue); text-decoration: underline; }


.chatbot-input-area {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid #e4e4e7;
    background-color: var(--primary-blue); 
    flex-shrink: 0;
}

.chatbot-input-field {
    flex-grow: 1;
    border: 1px solid #d1d5db;
    border-radius: 20px;
    padding: 0.6rem 1rem;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    outline: none;
    transition: border-color 0.2s;
}
.chatbot-input-field:focus { border-color: var(--primary-blue); }

.chatbot-send-btn {
    background-color: var(--white); 
    color: var(--primary-blue);    
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    margin-left: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; 
    transition: background-color 0.2s;
}
.chatbot-send-btn:hover { background-color: #e5e7eb; } 
.chatbot-send-btn svg { width: 20px; height: 20px; }


.bot-typing { display: flex; align-items: center; padding: 1rem; }
.bot-typing span {
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #9ca3af; 
    border-radius: 50%;
    display: inline-block;
    animation: typing-animation 1.4s infinite ease-in-out both;
}
.bot-typing span:nth-child(1) { animation-delay: -0.32s; }
.bot-typing span:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing-animation {
    0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1.0); }
}


.chatbot-status {
    display: flex; 
    align-items: center;
    gap: 0.35rem; 
}

.online-icon {
    width: 8px; 
    height: 8px; 
}

.chatbot {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50px; 
    padding: 10px 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 2001; 
}

.chatbot:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.chatbot-icon svg {
    width: 20px;
    height: 20px;
}





#three-canvas {
    width: 100%;
    height: 100%;
    display: block;
    background-color: transparent; 
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; 
}

#hero {
    position: relative;
    z-index: 2; 
    overflow: hidden; 
    min-height: 100vh; 
    background-color: #000000; 
}




header, .navbar {
    background: transparent;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo img {
    transition: transform 0.3s ease;
    height: 70px;
}

.logo img:hover {
    transform: scale(1.1);
}

.hamburger {
    display: none;
}

.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    position: relative;
}

.navbar-dark-text .menu-link {
    color: white !important; 
}

.navbar-dark-text .logo img {
    filter: brightness(0) invert(1); 
}

.navbar-dark-text .search-input {
    color: white; 
}

.navbar-dark-text .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5); 
}

.navbar-dark-text .search-icon {
    color: white; 
}

.navbar-dark-text .hamburger span {
    background: white;
}

.navbar-transitional {
    background: rgba(20, 20, 30, 0.7) !important; 
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}


.navbar-transitional .menu-link { color: white !important; }
.navbar-transitional .logo img { filter: brightness(0) invert(1); }
.navbar-transitional .search-input { color: white; }
.navbar-transitional .search-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.navbar-transitional .search-icon { color: white; }
.navbar-transitional .hamburger span { background: white; }


.menu-link {
    color: #1e40af; 
}

.logo img {
    filter: none;
    
}

.search-input {
    color: #1e40af; 
}

.search-input::placeholder {
    color: rgba(30, 64, 175, 0.5); 
}

.search-icon {
    color: #1e40af;
}

.hamburger span {
    background: #1e40af; 
}

.menu-link {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: background 0.3s ease;
}

.menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    padding: 10px 0;
}

.submenu li a {
    color: #1e40af;
    padding: 8px 15px;
    display: block;
    text-decoration: none;
    transition: background 0.3s ease;
}

.submenu li a:hover {
    background: #e5e7eb;
}

.menu-item:hover > .submenu {
    display: block;
}

.search-bar {
    position: relative;
}

.search-input {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    border-radius: 20px;
    padding: 8px 35px 8px 15px;
    color: black;
    width: 150px;
    transition: width 0.3s ease;
}

.search-input:focus {
    outline: none;
    width: 200px;
    background: rgba(0, 255, 255, 0.3);
    border: 1px solid black;
}

.search-icon {
    background: none;
    border: none;
    color: black;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    background: white;
    height: 3px;
    width: 100%;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.wrapper {
    max-width: 1536px;
    margin-inline: auto;
    position: relative;
    height: 100px;
    margin-top: 5rem;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0)
    );

    mask-image: linear-gradient(to right,
    rgba(0,0,0,0),
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0)
    );

}

@keyframes scrollLeft {
   to {
    left: -200px;
   }
}

.item {
    width:200px;
    height: 100px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.5);
    border-radius: 10px;
    position: absolute;
    left: max(calc(200px * 8), 100%);
    animation-name: scrollLeft;
    animation-duration: 30s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    margin-bottom: 50px;
}

.item img {
    width: 200px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.item1 {
    animation-delay: calc(30s / 8 * (8 - 1) * -1);

}

.item2 {
    animation-delay: calc(30s / 8 * (8 - 2) * -1);

}

.item3 {
    animation-delay: calc(30s / 8 * (8 - 3) * -1);

}

.item4 {
   animation-delay: calc(30s / 8 * (8 - 4) * -1);

}

.item5 {
    animation-delay: calc(30s / 8 * (8 - 5) * -1);

}

.item6 {
    animation-delay: calc(30s / 8 * (8 - 6) * -1);

}

.item7 {
    animation-delay: calc(30s / 8 * (8 - 7) * -1);

}

.item8 {
    animation-delay: calc(30s / 8 * (8 - 8) * -1);

}



#typewriter {
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
}

@keyframes type {
    from { width: 0; }
    to { width: 100% }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.slide-card {
    opacity: 0;
    transform: translateY(50px) rotateX(-10deg);
    transition: opacity 0.5s ease, transform 0.5s ease;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.9);
    border-radius: 10px;

}

.slide-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    transition-delay: var(--slide-delay);
}

.plan-card {
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.plan-card[data-animation="slide-left"] {
    transform: translateX(-50px);
}

.plan-card[data-animation="slide-right"] {
    transform: translateX(50px);
}

.plan-card[data-animation="slide-up"] {
    transform: translateY(50px);
}

.plan-card.visible {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.plan-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}



footer {
    background-color: #1e40af;
    color: #ffffff;
    padding: 1.5rem 0; 
    text-align: center;
}

.social-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.social-sticky .follow-button {
    background-color: #1e40af;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: "Oswald", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.social-sticky .follow-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 100%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shine 2s linear infinite;
    z-index: 1;
}

.social-sticky .follow-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-sticky .social-container {
    position: absolute;
    bottom: 100%; 
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    
    border-radius: 10px;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px); 
    transition: opacity 0.7s ease, transform 0.7s ease, visibility 0s linear 0.7s;
    margin-bottom: 10px;
}

.social-sticky:hover .social-container {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); 
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.social-sticky .social-container .social-text {
    font-family: "Oswald", sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.social-sticky .social-container .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid #d1d5db;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.social-sticky .social-container .social-icon[data-icon="facebook"] {
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/facebook.svg');
}

.social-sticky .social-container .social-icon[data-icon="instagram"] {
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/instagram.svg');
}

.social-sticky .social-container .social-icon[data-icon="github"] {
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/github.svg');
}

.social-sticky .social-container .social-icon[data-icon="linkedin"] {
    background-image: url('https://cdn.jsdelivr.net/npm/simple-icons@v11/icons/linkedin.svg');
}

.social-sticky .social-container .social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}


.social-sticky .social-container .social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.social-sticky .social-container .social-icon[data-icon="facebook"]:hover {
    background-color: #1877F2;
}

.social-sticky .social-container .social-icon[data-icon="instagram"]:hover::before {
    background: linear-gradient(45deg, #F58529, #DD2A7B);
    background-size: 100% 100%;
    opacity: 0.7;
}

.social-sticky .social-container .social-icon[data-icon="linkedin"]:hover {
    background-color: #0077B5;
}

.social-sticky .social-container .social-icon[data-icon="github"]:hover {
    background-color: #333333;
}

/* Shine Animation */
@keyframes shine {
    0% {
        left: -100%;
    }
    20% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}


.caption-left {
    font-family: "Oswald", sans-serif;
    font-size: 0.75rem; 
    font-style: italic;
    color: #000000; 
    position: absolute;
    right: 20px;
    top: 85%; 
    transform: translateY(-50%); 
    z-index: 10; 
}


.wrapper1 {
    padding: 10px 10%;

}

#card-area {
    padding: 50px 0;

}

.box-area {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
    margin-top: 50px;

}

.box {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.5);

}

.box img {
    width: 100%;
    border-radius: 10px;
    display: block;
    transition: transform 0.5s;

}

.overlay{
    height: 0;
    width: 100%;
    background: linear-gradient(transparent, #e3e3e3 58%);
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;


}

.overlay h3 {
    font-weight: 500;
    margin-bottom: 5px;
    margin-top: 80%;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    letter-spacing: 2px;

}

.overlay a {
    margin-top: 10px;
    color: #262626;
    text-decoration: none;
    font-size: 14px;
    background: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 5px 15px;

}

.box:hover img{
    transform: scale(1.2);

}

.box:hover .overlay {
    height: 100%;
}

.ai-visual-container {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    border-radius: 20px;
    overflow: hidden;
    background-color: #111827; 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
}

.ai-visual-container::before,
.ai-visual-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 10s infinite linear;
}

.ai-visual-container::before {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.4) 0%, rgba(0, 123, 255, 0) 60%);
    animation-delay: 0s;
}

.ai-visual-container::after {
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, rgba(0, 255, 255, 0) 60%);
    animation-delay: -5s; 
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}


.services-overview-section {
    padding: 4rem 0;
    background-color: #f9fafb; 
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 1rem;
}

.section-intro {
    font-size: 1.125rem;
    color: #4b5563;
    max-width: 60ch;
    text-align: center;
    margin: 0 auto 3rem auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    text-decoration: none;
    color: #4b5563; 
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.service-card-icon {
    margin: 0 auto 1.5rem auto;
    background-color: #1e40af;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 30px;
    height: 30px;
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827; 
    margin-bottom: 0.75rem;
}

.service-card-description {
    font-size: 1rem;
    color: #4b5563; 
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1; 
}

.service-card-link {
    font-weight: 600;
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-link {
    color: #1d4ed8;
    text-decoration: underline;
}


.service-card[data-animation="slide-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.visible { 
    opacity: 1;
    transform: translateY(0);
}


.service-card:nth-child(2).visible { transition-delay: 0.1s; }
.service-card:nth-child(3).visible { transition-delay: 0.2s; }
.service-card:nth-child(4).visible { transition-delay: 0.3s; }
.service-card:nth-child(5).visible { transition-delay: 0.4s; }


.bot-message ul {
    margin: 0.75rem 0;
    padding-left: 1.5rem; /* Indents the list */
}

.bot-message li {
    margin-bottom: 0.5rem; /* Space between list items */
}

/* Styling for bold text */
.bot-message strong {
    font-weight: 700;
    color: var(--black);
}

/* Styling for paragraphs within a message */
.bot-message p {
    margin-bottom: 0.75rem;
}
.bot-message p:last-child {
    margin-bottom: 0;
}














@media (max-width: 768px) {
    .chatbot {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    .chatbot-text {
        display: none;
    }
    .chatbot-icon svg {
        width: 28px;
        height: 28px;
    }

  .social-sticky {
        bottom: 10px;
        left: 10px;
    }
     .promo-popup {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        max-width: none;
    }

    .social-sticky .follow-button {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    .social-sticky .social-container {
        padding: 0.5rem;
    }

    .social-sticky .social-container .social-text {
        font-size: 1rem;
    }

    .social-sticky .social-container .social-icon {
        width: 30px;
        height: 30px;
        background-size: 70%;
    }

     .caption-left {
        font-size: 0.7rem; 
        left: 10px; 
        top: 85%; 
    }

    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 64, 175, 0.95);
        flex-direction: column;
        padding: 10px 0;
    }

    .menu.active {
        display: flex;
    }

    .menu-item {
    width: 20%;
    text-align: left; 
}

    .menu-link {
        
    }

    .submenu {
        position: static;
        background: rgba(255, 255, 255, 0.9);
        margin: 10px 20px;
        border-radius: 5px;
    }

    .search-input {
        display: none;
    }

    .search-input.active {
        display: block;
        width: 90%;
        margin: 10px auto;
        background: rgba(255, 255, 255, 0.3);
    }

    .hamburger {
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
    }

    .hamburger span {
        background: #1e40af;
        height: 3px;
        width: 100%;
        transition: all 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 768px) {

  
    .section-title {
        font-size: 2rem; 
    }
    .section-intro {
        font-size: 1rem;
    }

    
    .menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(30, 64, 175, 0.98);
        flex-direction: column;
        padding: 1rem 0;
    }
    .menu.active { display: flex; }
    .menu-item { width: 90%; text-align: left; }
    .menu-link { padding: 1rem 1.5rem; }
    .submenu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin: 0.5rem 1rem;
        border-radius: 8px;
    }
    .submenu li a { color: var(--white); }
    .submenu li a:hover { background: rgba(0, 0, 0, 0.2); }

    .hamburger {
        display: flex; 
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 1001; /* Ensure it's above the menu */
    }
    .hamburger span { background: var(--black); height: 3px; width: 100%; transition: all 0.3s ease; }
    .navbar-dark-text .hamburger span, .navbar-transitional .hamburger span { background: var(--white); }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    /* --- Hero Section --- */
    #hero { min-height: 80vh; } /* Make hero a bit shorter on mobile */
    #hero-title { font-size: 2.5rem; } /* Smaller main title */
    #hero .text-lg { font-size: 1rem; } /* Smaller subtitles */
    .caption-left { display: none; } /* Hide the caption on small screens */

    /* --- Welcome Section --- */
    .box-area {
        grid-template-columns: 1fr; /* Stack the 3 cards vertically */
    }

    /* --- AI Services Section --- */
    #ai-services .flex-col {
        gap: 2rem; /* Reduce the gap between image and text */
    }
    #ai-services h3 {
        font-size: 1.25rem; /* Smaller feature titles */
    }
    #ai-services .text-left {
        text-align: center; /* Center-align the feature text */
    }
    #ai-services .flex.items-start {
        flex-direction: column; /* Stack icon and text vertically */
        align-items: center; /* Center the stacked items */
        gap: 0.5rem;
    }
    #ai-services .ml-4 { margin-left: 0; }
    
    /* --- "BIG IDEAS" Section --- */
    #pricing-title {
        font-size: 2.25rem;
        line-height: 1.2;
    }

    /* --- Floating Buttons & Popups --- */
    .social-sticky, .chatbot, .promo-popup {
        bottom: 1rem;
        right: 1rem;
    }
    .social-sticky {
        left: 1rem;
    }
    .promo-popup {
        left: 1rem;
        max-width: none;
    }
    .chatbot {
        width: 60px;
        height: 60px;
        padding: 0;
        justify-content: center;
    }
    .chatbot-text { display: none; }
    .chatbot-icon svg { width: 28px; height: 28px; }
}


@media (max-width: 768px) and (orientation: landscape) {
    .box-area {
       
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        
        grid-template-columns: repeat(2, 1fr);
    }
}