@charset "utf-8";
/* CSS Document */
html {
    scroll-behavior: smooth;
}
body {
    background-color: #f5f5f5;
    /* Light gray background */
    font-family: 'Roboto', sans-serif;/* <-- Add this line */
}
/* PDF Thumbnail Card Styling */
.pdf-thumbnail-card {
    position: relative;
    border-radius: 0.375rem;
    /* Standard Bootstrap border-radius */
    overflow: hidden;
    /* Hides parts of the icon that go outside */
    transition: all 0.3s ease-in-out;
    background: #fff;
    border: 1px solid #dee2e6;
}
/* The "raise up" effect on hover */
.pdf-thumbnail-card:hover {
    transform: translateY(-10px);
    /* Lifts the card up */
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);/* Adds a shadow */
}
.pdf-thumbnail-card img {
    max-width: 100%;
    height: auto;
}
/* Eye Icon Button Styling */
.eye-icon-btn {
    /* Positioning */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    /* Center it and start small */
            /* Appearance */
    width: 70px;
    height: 70px;
    background-color: rgba(106, 73, 165, 0.9);
    /* Brand purple, slightly transparent */
    color: #fff;
    border-radius: 50%;
    /* Makes it a circle */
    font-size: 2rem;
    /* Size of the eye icon */
            /* Flex for perfect centering */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Animation */
    opacity: 0;
    /* Hidden by default */
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
/* Show the icon on card hover */
.pdf-thumbnail-card:hover .eye-icon-btn {
    opacity: 1;
    /* Fade it in */
    transform: translate(-50%, -50%) scale(1);/* Scale to full size */
}
/* Form container styling */
.form-container {
    background-color: #FBFBFB;
    border: 1px solid #fff;
    border-radius: 80px;
}
.dc-title {
    font-weight: bold;
    font-size: 48px;
    line-height: 56px;
    letter-spacing: 0%;
    text-align: center;
    color: #ffffff;
}
.btn-contact {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
    border-radius: 29px;
    padding: 10px 85px;
    margin-top: 40px;
}
.btn-contact:hover {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #fff;
    border-radius: 29px;
    padding: 10px 85px;
}
.o-footer__header {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #302535;
    padding: 14px 0;
}
.footer-links a {
    text-decoration: none;
    color: #302535;
    font-size: 12px;
}
.form-control, .form-select {
    height: 56px;
    font-weight: 500;
}
.icewarp-at-text {
    background: -webkit-gradient(linear, left top, right top, from(#302535), to(#702EB7));
    background: linear-gradient(90deg, #302535 0%, #702EB7 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: bold;
    text-align: left;
}
.event-logo {
    max-height: 350px;
    /* Adjust maximum height of the logo as needed */
    width: auto;/* Maintain aspect ratio */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) {
/* For devices smaller than md breakpoint */
.icewarp-at-text {
    font-size: 2rem;/* Smaller font size on mobile */
}
}

@media (max-width: 575.98px) {
/* For devices smaller than sm breakpoint */
.icewarp-at-text {
    font-size: 1.8rem;/* Even smaller font size on very small mobile */
}
}
#newsletter-email {
    height: 40px;
    font-size: 0.8rem;
}
.social-icon i {
    color: #ffffff;
    font-size: x-large;
}
.small, small {
    font-size: .7em;
}
.flag-icon {
    height: 1.2em;
    /* Sets height relative to the font-size. 1.2x the text height */
    width: auto;/* Maintains the flag's aspect ratio */
}
.bg-brand {
    background-color: rgb(106 73 165) !important;
    color: white;
}
/* Custom brand color for buttons */
.btn-brand-purple {
    background-color: #6a49a5;
    border-color: #6a49a5;
    border-radius: 25px;
    padding: 5px 20px;
    white-space: nowrap;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 500;
}
.btn-brand-purple:hover {
    background-color: #563b8a;
    border-color: #563b8a;
    color: #fff;
}
.btn-outline-secondary-brand {
    border-radius: 29px;
    background-color: transparent;
    color: #702EB7;
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1;
    padding: 9px 15px;
    text-align: center;
    text-decoration: none;
    -webkit-transition: all .15s ease;
    transition: all .15s ease;
    border: 1px solid #702EB7;
    white-space: nowrap;
}
.btn-outline-secondary-brand:hover {
    border: 1px solid #702EB7;
    border-radius: 29px;
    background-color: transparent;
    color: #702EB7;
}
/* Customizing the navbar */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    /* Adds a subtle shadow for depth */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.navbar-brand {
    font-weight: 700;
}
/* Style for the centered nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    padding: 0.5rem 1rem;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active {
    color: #6a49a5;/* Brand purple for hover/active */
}
/* Ensures buttons have a little space on mobile */
.navbar .btn-group-nav {
    gap: 0.5rem;/* Space between buttons */
}
/* On mobile, when menu is open, add space */
.navbar-collapse {
    padding-top: 1rem;/* Space above collapsed items */
}
.navbar-collapse .navbar-nav {
    padding-bottom: 1rem;/* Space between links and buttons */
}
.btn-git-purple {
    background-color: #6a49a5;
    border-color: #6a49a5;
    padding: 7px 10px;
    white-space: nowrap;
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
}
.btn-git-purple:hover {
    background-color: #6a49a5;
    border-color: #6a49a5;
    color: #FFFFFF;
}
.navbar {
    box-shadow: none;
}
/* * Custom Navbar Toggler Styles
 */

/* 1. Remove the border from the button */
.navbar-toggler {
    border: none;
}
/* 2. Remove the blue "glow" (box-shadow) when the button is clicked/focused */
.navbar-toggler:focus {
    box-shadow: none;
}
/* 3. Change the color of the hamburger icon lines to your brand color */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%236a49a5' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.text-brand-purple {
    color: #6a49a5; /* Your brand purple */
}
.text-brand-green {
    color: #30b529;
}
/* 1. Define the "shake" animation 
*/
@keyframes shake {
0%, 100% {
transform: translateX(0);
}
25% {
transform: translateX(-3px); /* Move left */
}
75% {
transform: translateX(3px);  /* Move right */
}
}
/* 2. Create a class to apply this animation
*/
.icon-shake {
    animation: shake 1.5s infinite ease-in-out;
}
	.li-text {
    font-weight: 700;
    background: linear-gradient(90deg, #302535 0%, #702EB7 100%);
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}
.footer-text {
    color: white;
}