@font-face {
  font-family: 'deca-font';
  src: url("../fonts/Gotham-Bold.ttf") format("truetype");
}
@font-face {
  font-family: 'reg-font';
  src: url("../fonts/Gotham-Book.ttf") format("truetype");
}
*,
*::before,
*::after {
margin: 0;
padding: 0;
font-family: "deca-font", Arial, sans-serif;
}
h1, h2, th, strong,h3 {
    font-weight: 550; /* Medium weight */
}
body {
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
width: 100%;
background: #ffffff;
padding: 40px 20px;
}

header {
box-sizing: border-box;
width: 100%;
padding: 20px;
background-color: #1c6685;
position: fixed;
top: 0;
z-index: 1000;
display: flex;
justify-content: space-between;
align-items: center;
}

.navbar {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}

.logo {
display: flex;
align-items: center;
color: #fff;
font-size: 1.2rem;
}

.logo img {
width: 40px; /* Adjust as per your logo size */
height: auto;
margin-right: 10px;
}

.hamburger {
display: none; /* Hide by default for larger screens */
background: none;
border: none;
cursor: pointer;
padding: 5px;
float: left;
margin-left: 10%;
}

.hamburger .bar {
display: block;
width: 25px;
height: 3px;
background-color: #fff;
margin: 5px 0;
transition: transform 0.3s ease;
}

.menu {
display: flex;
}

.menu ul {
display: flex;
list-style-type: none;
margin-left: auto; /* Push menu to the right */
}

.menu ul li {
margin: 0 10px;
}

.menu ul li a {
color: #fff;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.3s ease;
}

.menu ul li a:hover {
color: #9abaff;
}

.mobile-menu {
display: none; /* Hide by default for larger screens */
position: absolute;
top: 60px;
right: 20px;
background-color: #333;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
display: block; /* Show when active */
}

.mobile-menu ul {
list-style-type: none;
padding: 10px;
}

.mobile-menu ul li {
margin-bottom: 10px;
}

.mobile-menu ul li a {
display: block;
color: #fff;
text-decoration: none;
font-size: 0.9rem;
padding: 8px 16px;
transition: background-color 0.3s ease;
}

.mobile-menu ul li a:hover {
background-color: #555;
}

@media screen and (max-width: 768px) {
.menu ul {
    display: none; /* Hide regular menu for smaller screens */
}

.hamburger {
    display: block; /* Show hamburger for smaller screens */
}

.mobile-menu {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    margin-top: 10px; /* Adjust spacing */
}
}

.alert{
background: #ffdb9b;
padding: 20px 10px;
padding-right: 50px;
min-width: 320px;
position: fixed; /* Change to fixed position */
right: 0;
top: 130px;
border-radius: 4px;
border-left: 8px solid #00000067;
overflow: hidden;
opacity: 0;
pointer-events: none;
z-index: 1000; /* Ensure it's above other content */

}
.alert.success {
background: #91fea0;
}
.alert.danger {
background: #e09a9a;
}
.alert.warning {
background: #ffdd80;
}
.alert.showAlert {
opacity: 1;
pointer-events: auto;
animation: show_slide 1s ease forwards;
}

@keyframes show_slide {
0% {
    transform: translateX(100%);
}
40% {
    transform: translateX(-10%);
}
80% {
    transform: translateX(0%);
}
100% {
    transform: translateX(-10px);
}
}
.alert.hide{
animation: hide_slide 1s ease forwards;
}
@keyframes hide_slide {
0% {
    transform: translateX(-10px);
}
40% {
    transform: translateX(0%);
}
80% {
    transform: translateX(-10%);
}
100% {
    transform: translateX(100%);
    display: none;
}
}

.alert .icon {
display: inline-block;
vertical-align: middle;
color: #000000; /* Icon color */
}

.alert .msg {
padding: 0 20px;
font-size: 16px;
font-family: "reg-font";
color: #000000;
}

.alert .close-btn {
position: absolute;
right: 0px;
top: 50%;
transform: translateY(-50%);
background: #00000033;
padding: 20px 10px;
cursor: pointer;
}

.alert .close-btn:hover {
background: #00000083;
}

#particles-js {
position: fixed;
display: block;
top: 0;
left: 0;
z-index: -1;
height: 100%;
width: 100%;
background-size: cover;
background-position: center;
background-image: radial-gradient(circle, #3498db3c 2px, transparent 2px);
background-size: 30px 30px;
pointer-events: none; /* Ensure it doesn't interfere with clicks */
}
/* Gradient Dot Pattern Fade Effect */
.dotted-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 60%,
        rgba(255, 255, 255, 0.9) 100%
    );
    z-index: -1;
}

.dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #3498db 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: -2;
    mask-image: linear-gradient(to left, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(to left, 
        rgba(0, 0, 0, 1) 0%, 
        rgba(0, 0, 0, 0.7) 40%, 
        rgba(0, 0, 0, 0) 100%
    );
}
.full-dot-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, #3498db 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.4;
    z-index: -2;
}

/* Enhanced Feature Boxes */
.feature-box {
    border-radius: 8px;
    position: absolute;
    width: 300px;
    height: auto;
    min-height: 125px;
    color: white;
    font-size: 110%;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}



.feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.box-1 {
    top: 30%;
    right: 100px;
    background-color: #2980b9; /* Blue */
    animation: float 6s ease-in-out infinite;
}

.box-2 {
    top: 50%;
    right: 50px;
    background-color: #16a085; /* Teal */
    animation: float 6s ease-in-out infinite 1s;
}

.box-3 {
    top: 70%;
    right: 100px;
    background-color: #8e44ad; /* Purple */
    animation: float 6s ease-in-out infinite 2s;
}

/* Text animations inside the boxes */
.feature-title {
    margin-bottom: 5px;
    font-size: 110%;
    opacity: 0;
    animation: fade-in 0.5s forwards;
}

.feature-text {
    opacity: 0;
    animation: slide-in 0.5s 0.2s forwards;
}

@keyframes float {
    0% { transform: translateY(-50%); }
    50% { transform: translateY(-52%); }
    100% { transform: translateY(-50%); }
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}

@keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slide-in {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Right side background gradient overlay */


/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .feature-box {
        width: 90%;
        max-width: 300px;
        position: relative;
        margin: 15px auto;
        top: auto;
        right: auto;
        transform: none;
    }
    


    .box-1, .box-2, .box-3 {
        position: static;
        display: block;
    }
}