body {
    background-color: #faf5ff;
}

html {
    scroll-behavior: smooth;
}

/* General site wrapper styling with borders */
.site-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    /* border-left: 2px solid #ddd;
    border-right: 2px solid #ddd; */
    padding: 0 15px;
}

/* Ensure video takes the upper half of the screen */
.hero-video {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}

/* Align the lower half content properly */
.hero-content {
    height: 50vh;
    display: flex;
    align-items: center;
}

.hero-heading {
    font-family: "Montserrat", sans-serif !important;
    font-size: 3rem;
    font-weight: 500;
}

/* Small text and button area on the right */
.hero-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin-top: -20px;
}

/* Button styling */
.btn-custom {
    background-color: #c95a58;
    border-color: #c95a58;
    border-radius: 50px;
    color: white;
}

.btn-custom:hover {
    background-color: #7a2bd1;
    border-color: #7a2bd1;
}

.btn-custom-secondary {
    border-radius: 50px;
    color: #933eff;
    border-color: #933eff;
}

.btn-custom-secondary:hover {
    background-color: #933eff;
    color: white;
}

.navbar-brand {
    width: 200px;
}

.navbar-brand > img {
    width: 100%;
}

.navbar-light {
    background-color: #faf5ff !important;
}

.nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    color: #AA1613 !important;
}

/* main */

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.section-title {
    margin-bottom: 60px;
}

.section-title p {
    color: #777;
    font-size: 16px;
}

.section-title h4 {
    text-transform: capitalize;
    font-size: 40px;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-title h4:before {
    position: absolute;
    content: "";
    width: 60px;
    height: 2px;
    background-color: #c99eff;
    bottom: 0;
    left: 50%;
    margin-left: -30px;
}

.section-title h4:after {
    position: absolute;
    background-color: #c99eff;
    content: "";
    width: 10px;
    height: 10px;
    bottom: -4px;
    left: 50%;
    margin-left: -5px;
    border-radius: 50%;
}

ul.timeline-list {
    position: relative;
    margin: 0;
    padding: 0;
}

ul.timeline-list:before {
    position: absolute;
    content: "";
    width: 2px;
    height: 100%;
    background-color: #c9c9c9;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

ul.timeline-list li {
    position: relative;
    clear: both;
    display: table;
}

.timeline_content {
    border: 2px solid #e9dcf7;
    background-color: #fff;
    background: rgb(255, 255, 255);
    background: linear-gradient(
            0deg,
            rgba(255, 255, 255, 1) 0100%,
            rgba(201, 201, 201, 1) 0%
    );
    border-radius: 15px;
}

ul.timeline-list li .timeline_content {
    width: 40%;
    color: #333;
    padding: 30px;
    float: left;
    text-align: left;
}

ul.timeline-list li:nth-child(2n) .timeline_content {
    float: right;
    text-align: left;
}

.timeline_content h4 {
    font-size: 22px;
    font-weight: 600;
    margin: 10px 0;
}

ul.timeline-list li:before {
    position: absolute;
    content: "";
    width: 25px;
    height: 25px;
    background-color: #c9c9c9;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}
	
/* carousel */

.page--header .small-text {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 13px;
    letter-spacing: 2px;
    color: #aa1613; /* Optional color */
    opacity: 0.90; /* Slightly transparent */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.page--header .main-heading {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 700; /* Bold */
    font-size: 52px;
    line-height: 1.2;
    color: #4d4d4d; /* Darker color for contrast */
    margin: 10px 0;
}

.page--header .subtext {
    font-family: "Poppins", sans-serif;
    font-weight: 400; /* Regular */
    font-size: 24px;
    color: #686868; /* Lighter grey for readability */
    margin-top: 10px;
}

/* Carousel customization */
.carousel-inner {
    max-width: 700px; /* Make the carousel narrower */
    margin: 0 auto; /* Center the carousel */
}

.carousel-heading {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    color: #4d4d4d;
}

.carousel-text {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    color: #686868;
    margin-top: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #aa1614; /* Change arrow color */
    border-radius: 50%;
    height: 40px;
    width: 40px;
}

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
    background-color: #c9c9c9; /* Darken color on hover */
}

/* contact */

/* Dark overlay */
.services-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Darken the background */
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2; /* Bring content above overlay */
}

/* Text bubble */
.text-bubble {
    background-color: #933eff; /* Purple bubble */
    color: white;
    border-radius: 30px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.text-bubble p {
    font-family: "Poppins", sans-serif;
    color: white;
}

.btn-purple:hover {
    background-color: #933eff;
    color: white;
}

/* Reoccurring Header Text */
.page--header h4 {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 800;
    font-size: 13px;
}

.page--header h3 {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 700;
    font-size: 52px;
}

.page--header p {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
}

/* Narrow text */
.lead {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: white;
}

.page--header2 .main-heading2 {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 700; /* Bold */
    font-size: 52px;
    line-height: 1.2;
    color: #faf5ff; /* Darker color for contrast */
    margin: 10px 0;
}

.page--header2 .subtext2 {
    font-family: "Poppins", sans-serif;
    font-weight: 400; /* Regular */
    font-size: 24px;
    color: #faf5ff; /* Lighter grey for readability */
    margin-top: 10px;
}

.page--header2 .small-text2 {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 800; /* ExtraBold */
    font-size: 13px;
    letter-spacing: 2px;
    color: #c99eff; /* Optional color */
    opacity: 0.45; /* Slightly transparent */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.border-dark {
    border: solid 1px #933eff !important;
}

@media (max-width: 762px) {
    /* Reduce the heading font sizes for mobile */
    .page--header h4 {
        font-size: 12px;
    }

    .page--header h3 {
        font-size: 36px; /* Reduce large heading size */
    }

    .page--header p {
        font-size: 16px; /* Smaller subtext */
    }

    /* Adjust the margin and padding */
    .page--header {
        padding-top: 20px; /* Reduce top padding */
        padding-bottom: 20px; /* Reduce bottom padding */
    }

    /* Ensure space between the header and the timeline */
    .timeline-section {
        margin-top: 30px; /* Add more margin above the timeline */
    }

    /* Adjust the button layout */
    .btn {
        font-size: 14px; /* Smaller font for buttons */
        padding: 8px 15px; /* Adjust button padding */
    }

	/* Place the timelime to the left */
	  ul.timeline-list::before {
	   left: auto;
	}
	
		/* Place the timelime btn to the left */
	  ul.timeline-list li::before {
	   left: auto;
	}

    ul.timeline-list li .timeline_content {
        width: 80%;
        color: #333;
        padding: 30px;
        float: left;
        text-align: left;
        margin-left: 50px;
        margin-bottom: 30px;
    }
    
    ul.timeline-list li:nth-child(2n) .timeline_content {
        float: left;
        text-align: left;
    }


}

/* For larger screens like tablets */
@media (min-width: 577px) and (max-width: 768px) {
    .page--header h3 {
        font-size: 42px;
    }

    .page--header p {
        font-size: 18px;
    }
}

.footer {
    background-color: #cccccc;
}

.zerodue {
    font-weight: bold;
    color: #aa1613;
}

.footer-p {
    padding: 20px;
}





