/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #f4f4f4;
    text-align: center;
}


/* FONTS */


		.titlex {
            font-family: Arial, sans-serif; /* Default font */
        }
        .font1 {
            font-family: 'Audiowide', cursive; /* Google Font */
        }
        .font2 {
            font-family: 'League Gothic', sans-serif; /* League Gothic Font */
            font-weight: normal; /* League Gothic works best with normal weight */
        }

/* FONTS */

/* MENU BUTTON */

/* Preloader */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Loading Bar Container */
#loading-bar-container {
    width: 80%;
    height: 10px;
    background: #ddd;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

/* Loading Bar */
#loading-bar {
    width: 0%;
    height: 100%;
    background: #3498db;
    transition: width 0.3s ease-in-out;
}

/* Hide content initially */
	.hidden {
		display: none;
	}



/* BUTTON ARTICLE */
		
/* BUTTON ARTICLE */
.whyA{display: block
}
.whyB{
	display: none;
}

@media screen and (max-width: 480px) {
    .whyA {
        display: none;
    }

    .whyB {
        display: block;
    }
}
/* banner conten */
		.content {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 28px;
            font-weight: bold;
            color: #333;
        }
        .specializations {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 0px 0px;
            width: 100%;
            position: absolute;
    		top: 65%;
        }
        .banner {
            width: 100%;
            height: auto;
            margin: 0;
            display: flex;
            justify-content: center;
            opacity: 0;
        }
        .banner img {
            width: 100%;
            height: auto;
           
        }
        .cards-special {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
        }
        .card-special {
            position: relative;
            flex: 1;
            min-width: 300px;
            min-height: 300px;
            text-align: center;
            transition: transform 0.3s, opacity 0.3s;
            display: flex;
            justify-content: center;
            align-items: flex-end;
            opacity: 0;
            overflow: hidden;
            padding-bottom: 30px;
        }
        .card-special video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        .card-special h3 {
            position: relative;
			z-index: 1;
			color: white;
			font-size: 37px;
			margin-bottom: 20px;
			font-family: 'League Gothic', sans-serif;
        }
        .extra-content {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            font-weight: bold;
            color: #555;
        }
        @media (max-width: 768px) {
            .cards-special {
                flex-direction: column;
                align-items: center;
            }
            .card-special {
                width: 100%;
                margin-bottom: 0px;
            }
			.specializations {
            
    		top: 95%;
        }
        }
	.social-icons a {
		  font-size: 28px;
		  margin-right: 14px;
		  color: #ffffff;
		  text-decoration: none;
		  transition: color 0.3s ease;
		}

		.social-icons a:hover {
		  color: #000; /* You can set different colors per platform if desired */
		}
		@media (max-width: 1024px) {
		  .social-icons a {
			font-size: 34px;
		  }
		}

		/* Phone (max width: 600px) */
		@media (max-width: 600px) {
		  .social-icons a {
			font-size: 40px;
		  }
		}
	