@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700;1,800;1,900&display=swap');

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background-color: rgb(218, 59, 59);
    color: white;
}

::-moz-selection {
    background-color: rgb(218, 59, 59);
    color: white; 
}


/* Custom scrollbar for WebKit browsers */
::-webkit-scrollbar {
    width: 7px; 
    background-color: #F5F7F9;
}

::-webkit-scrollbar-thumb {
    background-color: #ff0000;
    border-radius: 0px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #e60000; /* Darker red when hovered */
}


body
{
	font-family: 'Poppins', sans-serif;
}

h1
{
	font-size: 2.5rem;
	font-weight: 700;
	color: rgb(35, 35, 85);
}

span
{
	font-size: .9rem;
}

h6
{
	font-size: 1.1rem;
	color: rgb(24, 24, 49);
}


/*------------- Navigation style start ------------*/
nav
{
	position: fixed;
	width: 100%;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1vw 8vw;
	box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
	z-index: 1;
}

nav .logo
{
	user-select: none;
	width: 150px;
	cursor: pointer;
}

nav .navigation
{
	display: flex;
}

#menu-btn
{
	width: 30px;
	height: 30px;
	display: none;
}

#menu-close
{
	display: none;
}

nav .navigation ul
{
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

nav .navigation ul li
{
	list-style: none;
	margin-left: 30px;
}

nav .navigation ul li a
{
	text-decoration: none;
	color: black;
	font-size: 16px;
	font-weight: 500;
	transition: 0.3s ease;
}

nav .navigation ul li a:hover
{
	color: red;

}
/*------------- Navigation style end ------------*/



/*------------- Hero section styling start --------------*/
#home {
    background-color: #f5f7f9;
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px;
}

#home h2 {
    color: #111;
    font-size: 2.4rem;
    margin-bottom: 20px;
}

#home .descriptiontitle {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 700px;
    margin-bottom: 30px;
}

/* Terms List Styling */
.terms-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    text-align: left;
}

.terms-list li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.terms-list h4 {
    color: #991f1f;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.terms-list p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #home h2 {
        font-size: 2rem;
    }

    #home .descriptiontitle {
        font-size: 1rem;
    }

    .terms-list h4 {
        font-size: 1.2rem;
    }

    .terms-list p {
        font-size: 0.95rem;
    }
}

/*------------- Hero section styling end --------------*/


/* Footer styling starts */

footer {
    background-color: black;
    color: #f1f0f5;
    padding: 40px 20vw;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #D93838;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col a {
    text-decoration: none;
}

.footer-col ul li {
    margin: 8px 0;
    font-size: 0.95rem;
    color: #ffffff;
    cursor: pointer;
    transition: color 0.3s;
}

.footer-col ul li:hover {
    color: #D93838;
}


.anpc-images {
	user-select: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.anpc-images img {
    width: 130px;
}

.social-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #5f7185;
    border-radius: 50%;
    color: #f1f0f5;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: #D93838;
    color: white;
}


.footer-bottom {
    border-top: 1px solid #2e3c52;
    margin-top: 20px;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #7b838a;
}

.footer-bottom p, .footer-bottom p a {
    color: white;
    text-decoration: none;
}

.footer-bottom p a:hover {
    color: #fdc93b;




}
/* Footer styling ends */




/*---------------------------------------------------------*/
/*-------------------- Ipad screen styling ----------------*/
/*---------------------------------------------------------*/
@media screen and (max-width: 789px)
{
	nav
	{
		padding: 15px 20px;
	}

	nav img
	{
		width: 130px;
	}

	#menu-btn
	{
		display: initial;
	}

	#menu-close
	{
		display: initial;
		font-size: 1.6rem;
		color: #fff;
		padding: 30px 0 20px 20px;
	}

	nav .navigation ul
	{
		position: absolute;
		top: 0;
		right: -220px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		width: 220px;
		height: 100vh;
		background: rgba(255, 0, 0, 0.45);
		backdrop-filter: blur(4.5px);
		border: 1px solid rgba(255, 255, 255, 0.18);
		transition: 0.3s ease-in;
	}

	nav .navigation ul.active
	{
		right: 0;
	}

	nav .navigation ul li
	{
		padding: 20px 0 20px 40px;
		margin-left: 0;
	}

	nav .navigation ul li a
	{
		color: #fff;
	}

	nav .navigation ul li a:hover
	{
		color: black;
	}

	#home
	{
		padding: 140px 20px;
	}

	#home p
	{
		width: 90%;
	}

	footer .copyright .pro-links
	{
		margin-top: 20px;
	}
}