/* Custom Styles for SMGC */
body {
font-family: 'Arial', sans-serif;
}

.navbar-brand img {
max-height: 50px;
}

.navbar-dark {
	background-color: #070707 !important;	
}

.carousel-item img {
height: 80vh;
object-fit: cover;
}

section {
padding: 60px 0;
}

h2, h3 {
color: #ff1493;
}

.smgc-active {
	background-color: #5271FF;
	color: #ffffff;
}

.bg-primary {
background-color: #5271FF !important;
}

.text-primary {
color: #5271FF !important;
}

.btn-primary {
background-color: #ff1493;
border: none;
}

.btn-primary:hover {
background-color: #00bfff;
}

.btn-primary .fa-icon {
color: inherit; /* Inherit color from btn-primary on buttons */
}

footer {
background-color: #000;
color: #fff;
}

.card-body {
color: #333;
}

.card {
transition: transform 0.3s;
}

.card:hover {
transform: translateY(-10px);
}

/* Footer Social Media Icons */
.footer-social-icons a {
color: #ffffff; /* Default color for social media icons */
margin-right: 15px;
transition: color 0.3s ease; /* Smooth color transition on hover */
}

/* Hover States */
.footer-social-icons a.facebook:hover {
color: #3b5998; /* Darker Facebook blue on hover */
}

.footer-social-icons a.twitter:hover {
color: #00acee; /* Darker Twitter blue on hover */
}

.footer-social-icons a.linkedin:hover {
color: #005582; /* Darker LinkedIn blue on hover */
}

.footer-social-icons a.whatsapp:hover {
color: #25D366; /* WhatsApp green on hover */
}

/* Adjust icon size */
.footer-social-icons i {
font-size: 2rem; /* Icon size (adjust as needed) */
}

/* Watermark Icon Styling */
.page-title-icon {
position: absolute;
top: 50%; /* Vertically centers the icon */
left: 5%;  /* Left positioning for horizontal alignment */
transform: translateY(-50%) rotate(-10deg); /* Vertically centered and rotated */
font-size: 200px; /* Adjust size to fit the section */
color: rgba(255, 255, 255, 0.05); /* Lighter color for subtle watermark */
z-index: 0;
pointer-events: none; /* Prevent interaction */
}

/* Ensure the text stays above the watermark */
#page-title {
position: relative;
z-index: 1;
}


/* Style for the Back to Top Button */
.to-top {
position: fixed;
bottom: 30px;
right: 30px;
background-color: #ff1493; /* Button color */
color: white;
font-size: 24px;
padding: 10px 15px;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
z-index: 1000;
transition: background-color 0.3s ease;
}

.to-top:hover {
background-color: #cc1176; /* Darker hover color */
}
.carousel-image {
position: relative;
}

.carousel-image .overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5); /* Dark overlay with 50% opacity */
z-index: 1; /* Ensures the overlay is above the image */
}

.carousel-caption {
position: absolute; /* Positioning absolute to overlay it on the image */
bottom: 20px; /* Adjust the position to be above the bottom of the image */
left: 50%;
transform: translateX(-50%); 	/* Centering the caption horizontally */
color: white; /* White text for visibility */
z-index: 2; /* Ensures text is above the overlay */
}

.navbar-nav .nav-link:hover {
	color: #5271FF !important; /* Bootstrap primary color */
}

.nav-link {
	color: #ff1493 !important; /* Hot pink for nav item text */
}

.nav-link:hover {
	color: #ff69b4 !important; /* Lighter pink on hover (optional) */
}

.carousel-video {
    pointer-events: none; /* Ensures the video does not block interaction with carousel controls */
    height: 700px;
}

.carousel-inner .carousel-item {
    height: 700px;
}

@media (max-width: 768px) {
	.carousel-caption {
		width: 80% !important;	
	}
	
	.carousel-caption h1 {
    	font-size: 2rem;
    	justify-content: center;
   	}

    .carousel-caption p {
    	font-size: 1rem;
    	justify-content: center;
    }
}

#page-title {
    overflow: hidden;
    position: relative;
}
    
.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2; /* Sends the video behind everything */
}
    
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(82, 113, 255, 0.7); /* Blue color with 50% opacity */
    z-index: -1; /* Places the overlay behind the text but over the video */
}
    
.container-header {
    position: relative;
    z-index: 1; /* Ensures the text is above both the video and overlay */
}

.partner-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.partner-carousel .item {
    text-align: center;
    padding: 10px;
}

.partner-carousel .item img {
    max-width: 150px;
    transition: transform 0.3s;
}

.partner-carousel .item img:hover {
    transform: scale(1.1);
}