/*
Theme Name: SIATech Theme
Theme URI: http://example.com
Author: Your Name
Author URI: http://example.com
Description: A custom theme for SIATech.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

.logo {
    display: inline-block; 
}

.logo img {
    display: block; 
    width: 100px; 
    height: auto; 
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 5%;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
}

.social-media {
    margin: 0 auto 0 50px;
}

.social-media a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #ffff;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    transition: .5s;
}

.social-media a:hover {
    background: #ffff;
}

.social-media a i {
    font-size: 20px;
    color: #ffff;
    transition: .5s;
}

.social-media a:hover i {
    color: #444;
}

/* Tab link styles */
.navbar a {
    font-size: 18px;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    margin-left: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
    position: relative; /* Required for the pseudo-element positioning */
    transition: color 0.3s ease; /* Optional: Smooth color transition */
}

/* Underline animation for non-active tabs */
.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px; /* Thickness of the underline */
    display: block;
    margin-top: 5px; /* Spacing between text and underline */
    right: 0;
    background: #fff; /* Color of the underline */
    transition: width 0.3s ease, right 0.3s ease; /* Smooth transition for width and right position */
}

.navbar a:hover::after {
    width: 100%; /* Full width on hover */
    right: 0; /* Keep it aligned from the right */
}

/* Solid underline for the active tab */
.navbar a.active::after {
    width: 100%; /* Full width for the active tab */
    right: 0; /* Keep it aligned from the right */
    background: #fff; /* Solid color for active tab underline (adjust as needed) */
    height: 3px; /* Thicker underline for the active tab (optional) */
}

.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
}

 .slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;

 }

 .slide img {
    position: absolute;
    width: 100%;    
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
    transition: .3s ease;
 }

 .slide.active img {
    opacity: 1;
 }

.slide .left-info {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%; 
    transform: translateX(-100%);
    transition: 0s;
}

.slide.active .left-info {
    transform: translateX(0);
    z-index: 1;
    transition: .5s ease;
}

.left-info .penetrate-blur {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255,255, .1);
    backdrop-filter: blur(20px);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
    -webkit-mask-clip: text, padding-box;
    -webkit-mask-composite: xor;
    padding-right: 20px;

}

.penetrate-blur h1 {
    font-size: 300px;
    text-shadow: 0 0 20px rgba(255, 255,255, .8);
}

.left-info .content {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
}

.left-info .contentP {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
    height: 80%; /* Set a fixed height */
    width: 80%;  /* Set a fixed width */
    overflow-y: scroll; /* Enable vertical scrolling */
    overflow-x: hidden; /* Disable horizontal scrolling */
    padding: 10px; /* Optional: Add some padding for better readability */
    background-color: transparent; /* Optional: Add a semi-transparent background for better text visibility */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar for WebKit browsers */
.left-info .contentP::-webkit-scrollbar {
    display: none;
}

.scroll-indicator {
    position: absolute;
    left: 85%; /* Align with the left position of contentP */
    transform: translateX(0); /* Remove translateX to align exactly */
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Add transition for opacity */
}

.scroll-indicator i {
    font-size: 30px; /* Adjust the size of the Boxicons if needed */
}

.up-arrow {
    top: calc(12%); /* Align with top of contentP (bottom 8% + padding 10px) */
    opacity: 0; /* Initially hidden with opacity */
}

.down-arrow {
    bottom: calc(8%); /* Align with bottom of contentP (bottom 8% + height 80% + padding 10px) */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.3s ease-in-out; /* Smooth transition for opacity */
}

/* Optional: Add some transitions for smooth fading */
.scroll-indicator {
    transition: opacity 0.3s;
}

.contentP h1, h2, h3, h4, h5, h6, h7 {
    margin-top: 20px;
}

.contentP h6 {
    padding-right: 0px;
    margin-top: 0px;
    font-size: 25px;
    margin-bottom: 0px;
}

.contentP h1 {
    padding-right: 0px;
    margin-top: 25px;
    font-size: 25px;
    margin-bottom: 10px;
}

.contentP p {
    font-size: 14px;
    margin: 10px 0px 10px;
    text-align: justify;
    padding-right: 0%;
    padding-right: 0%;
    margin-bottom: 10px;
}

.contentP h2 {
    margin-top: 50px;
    font-size: 25px;
    margin-bottom: 10px;
    margin-left: 0px;
}

.contentP h3 {
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 30px;
}

.contentP h5 {
    font-size: 24px;
}

.contentP h7 {
    font-size: 24px;
}

.contentP p1,
.contentP p2,
.contentP p3,
.contentP p4,
.contentP p5,
.contentP p6,
.contentP p7,
.contentP p8,
.contentP p9,
.contentP p10,
.contentP p11,
.contentP p12 {
    display: block;
    font-size: 14px;
    margin-left: 30px;
    text-align: justify;
    margin-bottom: 10px;
}

.contentP li,
.contentP li1 {
    display: list-item; /* Ensure custom list items are treated as list items */
    font-size: 14px;
    margin: 0px 0px 0px;
    text-align: justify;
    padding-right: 0%;
    margin-bottom: 10px;
    margin-left: 30px;
    list-style-type: none; /* Add dots to list items */
    list-style-position: outside;
}

.contentP p1 {
    padding-left: 0px;
}

.contentP p2 {
    padding-left: 0px;
}

.contentP p3 {
    padding-left: 0px; /* Ensure this is the intended value */
}

.contentP p4 {
    padding-left: 30px;
}

.contentP p5 {
    padding-left: 0px;
}

.contentP p6 {
    padding-left: 60px;
}

.contentP p7 {
    padding-left: 90px;
    margin-bottom: 10px;
}

.contentP p8 {
    padding-left: 90px;
    margin-bottom: 0px;
}

.contentP p9 {
    padding-left: 30px;
    margin-bottom: 0px;
}

.contentP p10 {
    padding-left: 0px;
    margin-bottom: 0px;
}

.contentP p11 {
    font-size: 14px;
    margin: 0px 0 30px;
}

.contentP p12 {
    font-size: 14px;
}

.contentP ul {   
    padding-left: 0px;
}


.contentP li1 {
    /* Example additional styles for li1 */
    padding-left: 120px;
}

.contentP h4 {
    margin-top: 15px;
    font-size: 18px;
    margin-bottom: 10px;
    margin-left: 60px;
}

.content h3 {
    font-size: 30px;
}

.content p {
    font-size: 16px;
    margin: 10px 0 15px;
    text-align: justify;
    padding-right: 10%;
}

.left-info .contentS2 {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
}

.contentS2 h3 {
    font-size: 25px;
}

.contentS2 p {
    font-size: 14px;
    margin: 0px 0 30px;
    text-align: justify;
    padding-right: 10%;
}

.left-info .contentS3 {
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
}

.contentS3 h3 {
    font-size: 25px;
}

.contentS3 p {
    font-size: 14px;
    margin: 0px 0 10px;
    text-align: justify;
    padding-right: 10%;
}


.content .btn {
    display: inline-block;
    padding: 13px 28px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}

.contentS3 .btn:hover {
    background: transparent;
    color: #fff;
}

.contentS3 .btn {
    display: inline-block;
    padding: 13px 28px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}

.contentP .btn:hover {
    background: transparent;
    color: #fff;
}

.contentP .btn {
    display: inline-block;
    padding: 13px 28px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    font-size: 16px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    transition: .5s;
}

.content .btn:hover {
    background: transparent;
    color: #fff;
}

.slide .right-info {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: 0s;
}

.slide.active .right-info {
    transform: translateX(0);
    z-index: 1;
    transition: .5s ease;
}

.right-info h1 {
    font-size: 300px;
    color: #fff;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15);
        padding-left: 10px;
}

.right-info h3 {
    position: absolute;
    font-size: 80px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
    transform: translateY(180%);
    margin-left: 13px;
}

.right-infoS h3 {
    position: absolute;
    font-size: 80px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
    transform: translateY(180%);
    margin-left: 13px;
}

.slide .right-infoS {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    transform: translateX(100%);
    transition: 0s;
}

.slide.active .right-infoS {
    transform: translateX(0);
    z-index: 1;
    transition: .5s ease;
}

.copyright {
    position: absolute;
    display: block;
    text-align: left;
    font-size: 0.9em;
    color: #fff;
    background-color: transparent; /* Optional: Add a background color for better readability */
    padding: 10px 20px; /* Add padding to the top and bottom of the text */
    bottom: 0px; /* Adjust the spacing from the bottom */
    box-sizing: border-box;
    left: 50%;
    right: 0px;  /* Adjust the spacing from the right edge */

}

.right-infoS h1 {
    font-size: 200px;
    color: #fff;
    text-shadow: 
        0 1px 0 #ccc,
        0 2px 0 #c9c9c9,
        0 3px 0 #bbb,
        0 4px 0 #b9b9b9,
        0 5px 0 #aaa,
        0 6px 1px rgba(0, 0, 0, .1),
        0 0 5px rgba(0, 0, 0, .1),
        0 1px 3px rgba(0, 0, 0, .3),
        0 3px 5px rgba(0, 0, 0, .2),
        0 5px 10px rgba(0, 0, 0, .25),
        0 10px 10px rgba(0, 0, 0, .2),
        0 20px 20px rgba(0, 0, 0, .15);
        padding-left: 10px;
}

.navigation {
    position: absolute;
    bottom: 50px;
    right: 5%;
    z-index: 99;
}

.navigation span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
    cursor: pointer;
    margin-left: 25px;
    transition: .5s;
}

.navigation span:nth-child(1) {
    background: transparent;
}

.navigation span:nth-child(1):hover {
    background: #fff;
}

.navigation span i {
    font-size: 45px;
    color: #444;
    transition: .5s;
}

.navigation span:nth-child(1) i {
    color: #fff;
}

.navigation span:nth-child(1):hover i {
    color: #444;
}

#unsupportedDeviceMessage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-size: 24px;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

