@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
	margin: 0%;
	padding: 0%;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
}
.container{
    position: absolute;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-flow: column;
    flex-wrap: wrap;
}
.container-01 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	width: 50%;
	height: 100vh;
	background: #ebf5fc;
}
.container-01 h2 {
	position: relative;
	width: 50%;
	text-align: center;
	z-index: 11;
	color: #32a3b1;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	border-radius: 15px;
	padding: 5px 8px;
	font-size: 25px;
	box-shadow: -6px -6px 20px rgba(255,255,255,1),
				6px 6px 20px rgba(0,0,0,0.1);
}
.container-01 .neumorphic-card {
	width: 50%;
    /* 390px */
	height: 500px;
	margin: 28px;
	padding: 40px 30px;
	background: #ebf5fc;
	border-radius: 40px;
	box-shadow: -6px -6px 20px rgba(255,255,255,1),
				6px 6px 20px rgba(0,0,0,0.1);
}
.container-01 .neumorphic-card:hover {
	box-shadow: inset -6px -6px 10px rgba(255,255,255,0.5),
				inset 6px 6px 20px rgba(0,0,0,0.05);
}
.container-01 .neumorphic-card .imgBox {
	position: relative;
	text-align: center;
}
.container-01 .neumorphic-card .imgBox i {
	font-size: max(80px);
	color: #32a3b1;
}
.container-01 .neumorphic-card .contentBox {
	position: relative;
	margin-top: 20px;
	text-align:center;	
}
.container-01 .neumorphic-card .contentBox h3 {
	color: #32a3b1;
	font-weight: 700;
	letter-spacing: 2px;
	font-size: 1.4em;
}
.container-01 .neumorphic-card .contentBox p {
	color: #32a3b1;	
}
/* .container-01 .neumorphic-card .contentBox a {
	display: inline-block;
	padding: 10px 20px;
	margin-top: 15px;
	border-radius: 40px;
	color: #32a3b1;
	font-size: 16px;
	text-decoration: none;
	box-shadow: -4px -4px 15px rgba(255,255,255,1),
				4px 4px 15px rgba(0,0,0,0.1);
}
.container-01 .neumorphic-card .contentBox a:hover {
	box-shadow: inset-4px -4px 10px rgba(255,255,255,0.5),
				inset 4px 4px 10px rgba(0,0,0,0.1);
}
.container-01 .neumorphic-card .contentBox a:hover span {
	display: block;
	transform: scale(0.98);	
} */
.container-01 .neumorphic-card:hover .imgBox,
.container-01 .neumorphic-card:hover .contentBox {
	transform: scale(0.98);
}
.container-01 p {
	z-index: 12;
	margin: 20px auto 10px;
	position: relative;
	color: #32a3b1;
}
.container-01 p span {
	font-weight: 700;
}
.container-02 {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: 100vh;
	width: 50%;
	background: #161616;
}
.container-02 h2 {
	position: relative;
	width: 50%;
	text-align: center;
	z-index: 11;
	color: #fff;
	font-weight: 700;
	text-align: center;
	padding: 5px 8px;
	font-size: 25px;
	border-radius: 15px;
	border-top: 1px solid rgba(255,255,255,0.5);
	backdrop-filter: blur(5px);
	border-left: 1px solid rgba(255,255,255,0.5);	
	background: rgba(255,255,255,0.05);
	
}
.container-02:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#f00, #f0F);
	clip-path: circle(30% at  88% 77%);
}
.container-02:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#2196f3, #e91e63);
	clip-path: circle(20% at 15% 15%);
}
.container-02 .glassmorphic-card {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	z-index: 1;
	width: 50%;
    /* 370px */
	height: 500px;
	padding: 40px 30px;
	margin: 28px;
	box-shadow: 20px 20px 50px rgba(0,0,0, 0.5);
	border-radius: 15px;
	border-top: 1px solid rgba(255,255,255,0.5);
	border-left: 1px solid rgba(255,255,255,0.5);
	background: rgba(255,255,255,0.1);
	backdrop-filter: blur(5px);
	overflow: hidden;
}
.container-02 .glassmorphic-card:before {
	content: '';
	position: absolute;
	width: 50%;
	height: 100%;
	top: 0;
	left: 0;
	font-size: 10em;
	background: rgba(255,255,255,0.05);
	pointer-events: none;
}
.container-02 .glassmorphic-card .imgBox {
	position: relative;
	text-align: center;
}
.container-02 .glassmorphic-card .imgBox i {
	font-size: max(80px);
	color: rgba(255,255,255, 0.1);
}
.container-02 .glassmorphic-card .contentBox {
	position: relative;
	margin-top: 20px;
	text-align:center;
	transition: 0.5s;
}
.container-02 .glassmorphic-card .contentBox:before {
	content: 'MERGER';
    position: absolute;
    top: -50px;
    left: -145px;
    width: 100%;
    font-size: 5em;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(-90deg);
    color: rgba(0,0,0,0.2);
}
.container-02 .glassmorphic-card .contentBox h3 {
	font-size: 1.8em;
	color: #fff;
	z-index: 1;
}
.container-02 .glassmorphic-card .contentBox p {
	font-size: 1em;
	color: #fff;
	font-weight: 300;
}
.container-02 .glassmorphic-card .contentBox a {
	position: relative;
	display: inline-block;
	padding: 8px 20px;
	margin-top: 15px;
	background: #fff;
	border-top: 1px solid rgba(255,255,255,0.1);
	border-left: 1px solid rgba(255,255,255,0.1);
	color: #000;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 500;
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.container-02 p {
	z-index: 12;
	margin: 20px auto 10px;
	position: relative;
	color: #fff;
}
.container-02 p span {
	font-weight: 700;
}


/* file input */

.fileNames li{
    margin-top: 10px;
    color: #32a3b1;
}

.custom-file-input {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    background-color: #e91e63;
    border: 1px solid #e91e63;
    padding: 8px 0px;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.custom-file-input::before {
    content: 'Choose File';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #e91e63;
    color: white;
    text-align: center;
    line-height: 26px;
    border-radius: 4px;
    pointer-events: none;
}

.custom-file-input:hover::before {
    background-color: #e91e63;
}

.custom-file-input input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.custom-file-input input[type="file"]:focus + .custom-file-label::before,
.custom-file-input input[type="file"]:hover + .custom-file-label::before {
    content: 'Change File';
}

.custom-file-input input[type="file"]:valid + .custom-file-label::before {
    content: attr(data-file-name);
}


.custom-file-input_pdf {
    position: relative;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
    background-color: #32a3b1;
    border: 1px solid #32a3b1;
    padding: 8px 0px;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    line-height: 1.5;
}

.custom-file-input_pdf::before {
    content: 'Choose File';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #32a3b1;
    color: white;
    text-align: center;
    line-height: 26px;
    border-radius: 4px;
    pointer-events: none;
}

.custom-file-input_pdf:hover::before {
    background-color: #32a3b1;
}

.custom-file-input_pdf input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    cursor: pointer;
}

.custom-file-input_pdf input[type="file"]:focus + .custom-file-label::before,
.custom-file-input_pdf input[type="file"]:hover + .custom-file-label::before {
    content: 'Change File';
}

.custom-file-input_pdf input[type="file"]:valid + .custom-file-label::before {
    content: attr(data-file-name);
}



.glass-button {
    margin-top: 30px;
    background: rgba(255, 255, 255, 0.2); /* Translucent white background */
    border-radius: 12px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the button */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Light border */
    backdrop-filter: blur(10px); /* Apply glassmorphism blur effect */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
    color: #fff; /* White text color */
    font-size: 16px; /* Font size */
    cursor: pointer; /* Pointer cursor on hover */
    transition: all 0.3s ease; /* Smooth transition for hover effect */
}

.glass-button:hover {
    background: rgb(255, 6, 160); /* Slightly more opaque on hover */
    outline: none;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly larger shadow on hover */
}

.glass-button:active {
    background: rgba(255, 255, 255, 0.4); /* More opaque when active */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Smaller shadow when active */
}

.glass-button:focus {
    outline: none; /* Remove default focus outline */
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5); /* Focus ring */
}

hr{
    margin-top: 20px;
}

.fileNames{
    display: none;
    margin-top: 20px;
    height: 160px;
    overflow: scroll;
    overflow-x: hidden;
}

/* For WebKit browsers (e.g., Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1); /* Light background for the track */
    backdrop-filter: blur(10px); /* Apply glassmorphism blur effect */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3); /* Translucent thumb color */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 3px solid rgba(255, 255, 255, 0.1); /* Border to give a frosted effect */
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5); /* Slightly darker on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) rgba(255, 255, 255, 0.1); /* thumb color / track color */
}

body {
    scrollbar-gutter: stable; /* Ensures the gutter size remains constant */
}


/* button */

.btn {
    position: relative;
    display: inline-block;
    border: none;
    border-radius: 50px;
    background: none;
    padding: 25px 75px;
    margin: 30px;
  }
  
  .btn a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, .05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .2);
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    border-radius: 30px;
    color: #000000;
    z-index: 1;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    overflow: hidden;
    text-transform: uppercase;
    transition: all .3s ease-in-out;  
    backdrop-filter: blur(15px)
  }
  
  .btn:hover a {
    letter-spacing: 3px;
  }
  
  .btn a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: 
      linear-gradient(to left, rgba(255, 255, 255, .15), transparent);
    transform: skewX(40deg) translateX(0);
    transition: all .5s ease-out;
  }
  
  .btn:hover a::before {
    transform: skewX(40deg) translateX(200%);
  }
  
  .btn::before,
  .btn::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 10px;
    border-radius: 10px;
    background: #f00;
    transition: all .4s ease-in-out;
    transition-delay: 0s;
  }
  
  .btn::before {  
    bottom: -5px;
  }
  
  .btn::after {
    top: -5px;
  }
  
  .btn:hover::before,
  .btn:hover::after{  
    height: 50%;
    width: 80%;
    border-radius: 30px;
    transition-delay: .3s;
  }
  
  .btn:hover::before {
    bottom: 0;
  }
  
  .btn:hover::after {
    top: 0;
  }

  .btn::before,
.btn::after {
  background: #1eff45;
  box-shadow: 
    0 0 5px #1eff45,
    0 0 15px #1eff45,
    0 0 30px #1eff45,
    0 0 60px #1eff45
}


@media screen and (max-width: 768px) {
    .container{
        width: 100%;
        /* padding: 10px; */
        flex-direction: row;
        justify-content: center;

    }
	.container-01,
	.container-02 {
		width: 90%; /* Adjust width for smaller screens */
		padding: 10px;
        margin: 10px;
	}
	.container-01 h2,
	.container-02 h2 {
		font-size: 20px; /* Adjusted font size */
	}
	.container-01 .neumorphic-card,
	.container-02 .glassmorphic-card {
		max-width: 100%; /* Full width for smaller screens */
		width: 90%;
	}
    .custom-file-input{
        width: 100%;
    }
    .custom-file-input_pdf{
        width: 100%;
    }
}