/* Hero Section */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body{
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.site-content > .ast-container{
    max-width: 100% !important;
    padding: 0 !important;
}
.site .site-content #primary{
    padding: 0 !important;
    margin: 0 !important;
}

/* Custom Header Styles */
.custom-header {
	background:#FFF;
	color: #000;
	padding: 20px 0;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.site-branding .site-title {
	margin: 0;
	font-size: 24px;
	font-weight: bold;
}

.site-branding .site-title a {
	color: #fff;
	text-decoration: none;
}

.site-branding .site-description {
	margin: 0;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: nowrap; /* Prevent wrapping */
}

.main-navigation ul li {
	margin-left: 20px;
	position: relative; /* For dropdown positioning */
}

.main-navigation ul li a {
	color: #000;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
	padding: 10px 0; /* Add padding for better spacing */
}

.main-navigation ul li a:hover {
	color: #00aeef; /* Hover color */
}

/* Dropdown menu styles */
.main-navigation ul li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #FFF;
    color: #000;
	padding: 10px;
	z-index: 1000;
	min-width: 200px; /* Set a minimum width */
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.main-navigation ul li ul li {
	margin: 0;
}

.main-navigation ul li ul li a {
	padding: 4px;
	display: block;
    font-size: 15px !important;
}

.main-navigation ul li:hover ul {
	display: block;
}

/* Hamburger Button Styles */
.menu-toggle {
	display: none; /* Hide by default */
	background: none;
	border: none;
	cursor: pointer;
	padding: 10px;
	z-index: 1001; /* Ensure it's above other elements */
}

.hamburger {
	display: block;
	width: 25px;
	height: 3px;
	background: #000;
	position: relative;
}

.hamburger::before,
.hamburger::after {
	content: '';
	width: 25px;
	height: 3px;
	background: #000;
	position: absolute;
	left: 0;
	transition: transform 0.3s ease;
}

.hamburger::before {
	top: -8px;
}

.hamburger::after {
	top: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	.custom-header-container {
		flex-wrap: wrap; /* Allow items to wrap on smaller screens */
	}

	.site-branding {
		flex: 1 1 100%; /* Full width on mobile */
		text-align: center; /* Center align logo */
        margin-bottom: 10px;
	}

	.main-navigation {
		width: 100%; /* Full width */
		order: 3; /* Move below logo and toggle button */
		margin-top: 10px;
	}


	.main-navigation ul {
		flex-direction: column; /* Stack menu items vertically */
        
	}

	.main-navigation ul li {
		margin: 0;
		text-align: center; /* Center align menu items */
		padding: 8px 0;
        
	}
    .main-navigation ul li a {
		display: block;
		padding: 5px 0;
	}

	.main-navigation ul li ul {
        position: static; /* Remove absolute positioning */
		background: rgba(255, 255, 255, 0.1); /* Light background for submenu */
		box-shadow: none;
		width: 100%;
	}

	.menu-toggle {
        position: absolute;
		top: 50px;
		right: 26px;
        display: block;
	}

	.menu-toggle.active .hamburger {
		background: transparent; /* Hide middle line */
	}

	.menu-toggle.active .hamburger::before {
		transform: rotate(45deg);
		top: 0;
	}

	.menu-toggle.active .hamburger::after {
		transform: rotate(-45deg);
		top: 0;
	}
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

/* Slider */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slide */
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease-in-out, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

/* Active Slide */
.slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

/* Background Overlay - Moved to side */
.slide-overlay {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 60%, 
        rgba(0, 0, 0, 0.2) 100%);
    left: 0;
    top: 0;
}

/* Slide Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(85%) contrast(110%);
    transition: transform 6s ease-in-out;
}

.slide.active img {
    transform: scale(1.05);
}

/* Slide Content - Moved to side */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: #fff;
    padding: 40px;
    width: 40%;
    max-width: 600px;
    z-index: 3;
}

/* Slide Heading */
.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 0.8s forwards;
    animation-delay: 0.3s;
}

/* Improved Highlighted Words */
.highlight {
    color: #00aeef;
    position: relative;
    padding: 0 5px;
    display: inline-block;
}
@keyframes underlineExpand {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

/* Slide Paragraph */
.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #f8f8f8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.6s;
    line-height: 1.6;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, #00aeef, #007bb5);
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.4);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.9s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, #007bb5, #0066a2);
    transition: width 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.6);
}

.hero-btn:hover::before {
    width: 100%;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slide-content {
        width: 60%;
        left: 5%;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slide-overlay {
        width: 100%;
        background: linear-gradient(0deg, 
            rgba(0, 0, 0, 0.85) 0%, 
            rgba(0, 0, 0, 0.6) 60%, 
            rgba(0, 0, 0, 0.2) 100%);
    }
    
    .slide-content {
        width: 85%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}
/* STEM Section */
.stem-section {
    background: #f9f9f9;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 1200px;
    width: 100%;
}

.stem-content {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Column: Text */
.stem-text {
    flex: 1;
    text-align: left;
}

.stem-text h2 {
    color: #000;
    font-size: 2rem; /* Smaller heading */
    font-weight: bold;
}

.heading-underline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.heading-underline::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #00aeef;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.heading-underline:hover::after {
    width: 120px;
}

.stem-text p {
    font-size: 1.1rem;
    color: #333;
    text-align: justify;
    max-width: 600px;
}

/* Show full text */
.full-text {
    display: block; /* Show full text by default */
}

/* Right Column: Image */
.stem-image {
    flex: 1;
    text-align: center;
}

.stem-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .stem-content {
        flex-direction: column;
        text-align: center;
    }

    .stem-text {
        text-align: center;
    }
}
/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, #f9f9f9, #e0e0e0); /* Light gradient background */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.counter-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Darker text for contrast */
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 80px;
    height: 4px;
    background-color: #00aeef; /* Accent color */
    transform: translateX(-50%);
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
}

.section-title:hover::after {
    width: 120px;
}

.counter-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px; /* Add gap between boxes */
}

.counter-box {
    background: #fff; /* White background */
    padding: 30px;
    border-radius: 15px;
    color: #333; /* Dark text */
    width: 22%;
    min-width: 200px; /* Ensure boxes don't get too small */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.counter-box:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #00aeef; /* Accent color for icons */
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333; /* Dark text */
}

.counter-box p {
    font-size: 1.2rem;
    color: #666; /* Slightly lighter text */
    margin-top: 10px;
    font-weight: bold;
}
/* Why Choose Us Section */
.why-choose-us {
    background: linear-gradient(135deg, #f9f9f9, #e6f4ff);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInDown 1s ease-in-out;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title .highlight {
    background: linear-gradient(90deg, #00aeef, #0077b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    width: 30%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1), rgba(0, 119, 182, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-image {
    width: 120px;
    height: 120px;
    margin-bottom: 25px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #00aeef;
    padding: 5px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.feature-box p {
    font-size: 0.9rem;
    color: #666;
    flex-grow: 1;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-container {
    width: 100%;
    text-align: center;
}

.enroll-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    color: white;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
	cursor:pointer
}

.enroll-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-box {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .feature-box {
        width: 100%;
    }

    .section-title {
        font-size: 2.5rem;
    }
}/* Testimonials Section */
.testimonials {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title .highlight {
    color: #00aeef;
}

.testimonial-slider {
    display: flex;
    overflow: hidden;
    gap: 20px;
    justify-content: flex-start;
    align-items: stretch; /* Ensure all items stretch to the same height */
    padding: 20px;
    scroll-behavior: smooth;
    width: 100%;
    position: relative;
}

.testimonial {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    width: 30%;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures text and name are evenly spaced */
    min-height: 350px; /* Adjust based on your design needs */
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00aeef;
    margin-bottom: 15px;
    margin: auto;
}

.testimonial-text {
    flex-grow: 1; /* Makes sure all cards take up the same space */
    font-size: 1.2rem;
    color: #555;
    font-style: italic;
    overflow-wrap: break-word;
}

.testimonial-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.testimonial-role {
    font-size: 1rem;
    color: #777;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .testimonial {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .testimonial {
        width: 100%;
    }
}

/* Our Team Section */
.our-team {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-in-out;
}
.section-title .highlight {
    color: #00aeef;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 50px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.team-member {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
    flex-direction: column;
    justify-content: space-between;
    height: 300px; /* Fixed height */
    overflow: hidden;
}
.team-member:hover {
    transform: translateY(-5px);
}
.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #00aeef;
    margin-bottom: 15px;
}
.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}
.team-role {
    font-size: 1.2rem;
    color: #00aeef;
    font-weight: bold;
}
.team-bio {
    font-size: 1rem;
    color: #777;
    margin-top: 10px;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Carousel Styles */
@media (max-width: 768px) {
    .our-team .container {
        overflow: hidden;
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* When in carousel mode (JavaScript will add this class) */
    .team-grid.carousel-initialized {
        touch-action: pan-y;
    }
    
    /* On mobile, don't show hover effects */
    .team-member:hover {
        transform: none;
    }
    
    /* Allow swipe indication */
    .team-grid.carousel-initialized:after {
        content: "";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 5px;
        background-color: rgba(0, 174, 239, 0.3);
        border-radius: 5px;
    }
}
/* Franchising Overview Section */
.franchising-overview {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: left;
}

.franchise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.franchise-text {
    flex: 1;
    max-width: 600px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title .highlight {
    color: #00aeef;
}

.franchise-description {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1.2rem;
    color: white;
    background: #00aeef;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
}

.btn-primary:hover {
    background: #008fcc;
    transform: translateY(-3px);
}

.franchise-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.franchise-image img:hover {
    transform: scale(1.05);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .franchise-content {
        flex-direction: column;
        text-align: center;
    }

    .franchise-image img {
        max-width: 100%;
    }
}
/* Email Chat Form Section */
.email-chat-form {
    background: linear-gradient(135deg, #f9f9f9, #e6f4ff);
    padding: 100px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Title Styling */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title .highlight {
    background: linear-gradient(90deg, #00aeef, #0077cc);
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 800;
}

/* Layout */
.email-form-content {
    display: flex;
    align-items: stretch; /* Ensure both image and form stretch to the same height */
    justify-content:center;
    margin-top: 20px;
    gap: 35px; /* Increased gap for better spacing */
}

/* Image Styling */
.image-container {
    flex: 1;
    max-width: 500px;
    display: flex;
    align-items: center; /* Center the image vertically */
    border-radius: 20px;
    overflow: hidden; /* Ensures the image respects the border radius */
}

.image-container img {
    width: 100%;
    height: 100%; /* Ensure the image takes full height */
    object-fit: cover; /* Prevents image distortion */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.image-container img:hover {
    transform: scale(1.05);
}

/* Form Container */
.form-container {
    flex: 1;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Form 7 Customization */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 15px; /* Space between fields */
}

.wpcf7-form-control-wrap {
    width: 100%;
}

/* Form Fields */
.form-group {
    margin-bottom: 20px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #00aeef;
    font-size: 1.2rem;
}

input, textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    font-size: 1.1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #fafafa;
}

input:focus, textarea:focus {
    border-color: #00aeef;
    box-shadow: 0 0 10px rgba(0, 174, 239, 0.3);
    background: #fff;
}

textarea {
    resize: none;
    padding-top: 15px;
    height: 120px; /* Fixed height for textarea */
}

/* Button */
.btn-message {
    display: inline-block;
    padding: 12px 25px;
    font-size: 1rem;
    color: white;
    background: linear-gradient(90deg, #00aeef, #0077cc);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 174, 239, 0.3);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-message:hover {
    background: linear-gradient(90deg, #0077cc, #00aeef);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.4);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .email-form-content {
        flex-direction: column;
        text-align: center;
        gap: 20px; /* Smaller gap for mobile */
    }

    .section-title {
        font-size: 2.5rem;
    }

    .image-container {
        max-width: 100%;
    }

    .form-container {
        padding: 20px;
    }
}

.wpcf7 form>div, .wpcf7 form>p {
    text-align: left !important;
}
/* Video Slider Section */
.video-slider {
    background: #f9f9f9;
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.section-title .highlight {
    color: #00aeef;
}

.slider-container {
    position: relative;
    max-width: 95%;
    margin: auto;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.video-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slides {
    flex: 0 0 25%; /* Show 4 videos per page */
    text-align: center;
    padding: 8px;
}

iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    .slides {
        flex: 0 0 33.333%; /* Show 3 videos per page on medium screens */
    }
}

@media (max-width: 768px) {
    .slides {
        flex: 0 0 50%; /* Show 2 videos per page on small screens */
    }
}

@media (max-width: 480px) {
    .slides {
        flex: 0 0 100%; /* Show 1 video per page on very small screens */
    }
    
    iframe {
        height: 180px;
    }
}
/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #004a8f, #002d5a);
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Footer Styling */
.footer {
    background: linear-gradient(135deg, #004a8f, #002d5a);
    color: #fff;
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
}

.footer .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* Footer Top Section */
.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    flex: 1;
    min-width: 250px;
    margin: 20px;
    transition: transform 0.3s ease-in-out;
}

.footer-column:hover {
    transform: translateY(-5px);
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    color: #00aeef;
}

.footer-column h3::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #00aeef;
    display: block;
    margin-top: 10px;
}

.footer-column p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 15px;
    color: #fff;
}

.footer-column a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #00aeef;
}

/* Address Section */
.address {
    margin-bottom: 20px;
}

.address p {
    margin: 5px 0;
    color: #fff;
}

.contact-info p{
    color: #FFF;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
}

.quick-links li {
    margin-bottom: 10px;
    margin-left: -48px;
}

.quick-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.quick-links a:hover {
    color: #00aeef;
}

/* Newsletter Form */
.newsletter-form {
    display: flow;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: 1px solid #000;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
    padding: 10px 20px;
    background: #00aeef;
    border: none;
    border-radius: 5px;
    color: #002d5a;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.newsletter-form button:hover {
    background: #ffcc00;
}

/* Social Media Icons */
.social-icons {
    margin-top: 40px;
}

.social-icon {
    display: inline-block;
    margin: 0 15px;
    font-size: 1.5rem;
    color: #fff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #00aeef;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 40px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin: 20px 0;
    }

    /* Center Quick Links */
    .footer-column.quick-links-column {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .quick-links {
        padding: 0;
        text-align: center;
    }

    .quick-links li {
        margin-bottom: 10px;
        margin-left: -44px;
    }

    /* Newsletter Form */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
    .footer-column h3::after{
       display: none;
    }
}
/* Responsive Code */
@media (max-width: 1024px) {
    .slide-content {
        width: 85%;
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
    }

    .slide-overlay {
        align-items: center;
        justify-content: center;
    }

    .slide-content {
        width: 90%;
        padding: 20px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
    }

    .slide-content {
        width: 95%;
        padding: 15px;
    }

    .slide-content h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .slide-content p {
        font-size: 0.9rem;
    }

    .hero-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .counter-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .counter-box {
        width: 80%;
        padding: 25px;
        margin-top: 15px;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
    }
    .section-title::after{
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .counter-box {
        width: 90%;
        padding: 20px;
        margin-top: 15px;
    }

    .icon {
        font-size: 2.5rem;
    }

    .counter {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-title::after{
        margin-top: 10px;
    }
}

/* Responsive Testimonials Section */
@media (max-width: 992px) {
    .testimonial {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .testimonial-slider {
        display: flex;
        overflow: hidden;
        gap: 20px;
        justify-content: flex-start; /* Align testimonials to the start */
        align-items: center;
        padding: 20px;
        scroll-behavior: smooth;
        width: 100%;
        position: relative;
    }

    .testimonial {
        background: white;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
        width: calc(33.33% - 20px); /* Show 3 testimonials at once */
        flex: 0 0 auto; /* Prevent flex shrinking */
        text-align: center;
        position: relative;
        animation: fadeInUp 1s ease-in-out;
    }

    .testimonial img {
        width: 70px;
        height: 70px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 1.3rem;
    }

    .testimonial-role {
        font-size: 0.9rem;
    }
    .section-title::after{
        display: none !important;
    }
}

@media (max-width: 480px) {
    .testimonial {
        width: 90%;
    }

    .section-title {
        font-size: 2rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }

    .testimonial-role {
        font-size: 0.85rem;
    }
    .section-title::after{
        display: none !important;
    }
}

.ast-desktop .ast-primary-header-bar .main-header-menu > .menu-item{
    font-weight: bold !important;
}

.ast-desktop .ast-menu-hover-style-underline > .menu-item > .menu-link:before, .ast-desktop .ast-menu-hover-style-overline > .menu-item > .menu-link:before{
    height: 3px !important;
}

.site-title{
    display: none !important;
}

/* Academic Page */
.academic-hero {
    position: relative;
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    z-index: -1;
    animation: zoomIn 15s infinite alternate;
}

@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.05); }
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 50px 20px;
    gap: 30px;
}

.hero-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
    animation-play-state: paused;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.card-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3498db;
    color: white;
    font-size: 3rem;
}

.card:nth-child(1) .card-icon { background-color: #3498db; }
.card:nth-child(2) .card-icon { background-color: #2ecc71; }
.card:nth-child(3) .card-icon { background-color: #e74c3c; }
.card:nth-child(4) .card-icon { background-color: #f39c12; }
.card:nth-child(5) .card-icon { background-color: #9b59b6; }

.card-content {
    padding: 20px;
}

.card-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    color: #7f8c8d;
    line-height: 1.6;
}

.cta {
    background: linear-gradient(135deg, #2c3e50 0%, #4a6f8b 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

.cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #e74c3c;
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.icons {
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-card {
        width: 100%;
        max-width: 400px;
    }
}


/* About Us */

/* Full-width banner from HTML */
.about-banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.about-banner h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    animation: fadeInDown 1s ease-in-out;
}

.about-banner p {
    color: #f1f1f1;
    font-size: 1.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-in-out;
}

 /* Header Banner Section */
 .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}


.aboutmain-banner {
    position: relative;
    height: 90vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.aboutmain-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
    transform: scale(1);
    transition: transform 10s ease;
}

.aboutmain-banner:hover img {
    transform: scale(1.1);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.about-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/100x100') repeat;
    opacity: 0.05;
    animation: backgroundMove 20s linear infinite;
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.about-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 1.5s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    color: #fff;
}

.about-overlay h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #27ae60, #2ecc71);
    margin: 15px auto 0;
    border-radius: 3px;
}

.about-overlay p {
    font-size: 1.4rem;
    max-width: 700px;
    animation: fadeInUp 1.5s ease;
    margin-top: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-overlay h1 {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .about-overlay p {
        font-size: 1.2rem;
        max-width: 600px;
    }

    .scroll-down {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .aboutmain-banner {
        height: 70vh;
    }

    .about-overlay h1 {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }

    .about-overlay p {
        font-size: 1rem;
        max-width: 90%;
    }

    .scroll-down {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .aboutmain-banner {
        height: 60vh;
    }

    .about-overlay h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
    }

    .about-overlay p {
        font-size: 0.9rem;
        max-width: 90%;
    }

    .scroll-down {
        font-size: 1.2rem;
    }
}

 /* Introduction Section */
 .intro-section {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    padding: 60px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #044389, #27ae60);
}

.intro-text {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 30px;
    animation: fadeIn 1.5s ease;
    position: relative;
    z-index: 1;
}

.intro-highlight {
    font-weight: 600;
    color: #044389;
}

.intro-decoration {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(4, 67, 137, 0.1), rgba(39, 174, 96, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.intro-decoration-1 {
    top: -100px;
    right: -100px;
}

.intro-decoration-2 {
    bottom: -100px;
    left: -100px;
}

/* Vision & Mission Sections */
.vision-mission {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 70px;
}

.vision, .mission {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.vision::before, .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #044389, #27ae60);
    z-index: -1;
}

.vision::after, .mission::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: url('https://via.placeholder.com/150x150') no-repeat center center;
    opacity: 0.05;
    z-index: -1;
}

.vision:hover, .mission:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.vision:hover .card-icon, .mission:hover .card-icon {
    transform: rotate(45deg);
}

.philosophy-section {
    background: linear-gradient(135deg, #f9fafc 0%, #edf2f7 100%);
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.philosophy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://via.placeholder.com/200x200') repeat;
    opacity: 0.03;
}

.philosophy-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-logo-container {
    position: relative;
    margin: 0 auto;
    perspective: 1000px;
}

.about-logo {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.logo-description {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.logo-description::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(4, 67, 137, 0.05), rgba(39, 174, 96, 0.05));
    border-radius: 0 0 0 150px;
}

.logo-description h3 {
    font-family: 'Playfair Display', serif;
    color: #044389;
    font-size: 1.8rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.logo-description h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #27ae60;
}

.logo-feature {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    transition: transform 0.3s ease;
    display: flex;
}

.logo-feature:hover {
    transform: translateX(5px);
}
.fa-check-square{
    color: #27ae60;
    font-size: 1.3rem;
    margin-right: 10px;
}

.about-icon{
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: rgba(4, 67, 137, 0.1);
    transition: transform 0.5s ease;
}

 /* Animations */
 @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(70px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}



.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.visible {
    opacity: 1;
    transform: translate(0);
}
/* Section Styles */
.aboutus-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    color: #044389;
}

.aboutus-section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #044389, #27ae60);
    border-radius: 3px;
}

.aboutus-section-title span {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #27ae60;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

/* General Section Styling */
.about-section, .directors-message, .board-directors {
    padding: 80px 20px;
    text-align: center;
    background: #f9f9f9;
    transition: all 0.3s ease-in-out;
}

.about-section h2, .directors-message h2, .board-directors h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 20px;
}
/* Director's Message */
.director-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: justify;
}

.director-content img:hover {
    transform: scale(1.05);
}


.director-content img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.message-text {
    flex-grow: 1;
}

.message-text p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.message-text h4 {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    text-align: right;
}

/* Responsive Design */
@media (max-width: 768px) {
    .director-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .message-text {
        text-align: center;
    }

    .message-text p {
        text-align: center;
    }

    .message-text h4 {
        text-align: center;
    }
}

/* Our Board Members Section */
.board-section {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    position: relative;
    overflow: hidden;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('path-to-subtle-pattern.png');
    opacity: 0.05;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

.board-section .section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #222;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.board-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    border-radius: 2px;
}

.board-section .section-title .highlight {
    color: #00aeef;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.board-section .section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(106, 200, 251, 0.15);
    z-index: -1;
}

/* Board Members Grid */
.board-members {
    display: flex;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 50px;
    justify-content: center;
    align-items: stretch;
}

/* Individual Member Styling - More Compact and Attractive */
.board-members .member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    max-width: 260px;
	height: 300px; /* Fixed height Check */
    margin: 0 auto;
}

.member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #00aeef, #64edff);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.member:hover::before {
    transform: scaleX(1);
}

.member-image {
    position: relative;
    margin-bottom: 15px;
}

.member-image::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.member:hover .member-image::after {
    transform: scale(1);
}

.member-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    border: 4px solid #ffffff;
    transition: all 0.4s ease;
}

.member:hover .member-image img {
    transform: scale(1.05);
    border-color:rgba(106, 200, 251, 0.15);
}

.member-info {
    width: 100%;
    padding: 5px;
}

.member .name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.member:hover .name {
    color: #00aeef;
}

.member .position {
    font-size: 14px;
    font-style: italic;
    color: #777;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.member .position::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color:rgba(106, 200, 251, 0.15);;
    border-radius: 1px;
}

.message-wrapper {
    position: relative;
    margin-top: 12px;
    border-radius: 10px;
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    box-shadow: 
        inset 4px 4px 8px rgba(255, 255, 255, 0.8),
        inset -4px -4px 8px rgba(0, 0, 0, 0.05);
    padding: 2px;
}

.member .message {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    padding: 15px;
    background: #ffffff;
    border-radius: 8px;
    font-weight: 400;
    font-style: italic;
    position: relative;
    text-align: left;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 3px solid #00aeef;
    height: 95px;
    overflow-y: auto;
}

.member .message::-webkit-scrollbar {
    width: 3px;
}

.member .message::-webkit-scrollbar-thumb {
    background-color: rgba(106, 200, 251, 0.15);
    border-radius: 10px;
}

.member .message::before {
    content: '"';
    position: absolute;
    top: 2px;
    left: 5px;
    font-size: 24px;
    color: rgba(106, 200, 251, 0.15);
    line-height: 1;
}
/* Add a subtle shine effect on hover */
.member::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.15);
    transform: rotate(30deg);
    opacity: 0;
    transition: transform 0.6s, opacity 0.6s;
    pointer-events: none;
}

.member:hover::after {
    transform: rotate(30deg) translate(10%, 10%);
    opacity: 1;
}

/* Mobile Slider */
.mobile-view {
    display: none;
}

.board-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 430px; /* Reduced height for more compact cards */
    margin: 0 auto;
}

.board-container .board-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
    display: flex;
    justify-content: center;
}

.board-container .board-slide.active {
    opacity: 1;
    visibility: visible;
}

/* Progress indicator - subtle animation at bottom */
.board-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, #00aeef, #ff9494);
    width: 0;
    animation: progressBar 3s linear infinite;
}

@keyframes progressBar {
    0% { width: 0; opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { width: 100%; opacity: 0; }
}

/* Fade-in Animation */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 1400px) {
    .board-members {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1200px) {
    .board-members {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .board-members {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .board-section .section-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .desktop-view {
        display: none;
    }
    
    .mobile-view {
        display: block;
    }
    
    .board-section {
        padding: 60px 15px;
    }
    
    .board-section .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .board-container {
        height: 430px;
        max-width: 260px;
    }
    
    .board-container .member {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .board-container {
        height: 420px;
    }
    
    .board-section .section-title {
        font-size: 1.8rem;
    }
    
    .member-image img {
        width: 110px;
        height: 110px;
    }
}



/* Academic Page */
  /* STEM Section */
  .academic-stem {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
    padding: 6rem 0;
    position: relative;
}

.academic-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.academic-card {
    background-color: white;
    border-radius: 12px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.academic-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.card-icon {
    background: linear-gradient(135deg, var(#1a4b8c) 0%,  #3a7bd5 100%);
    color: white;
    padding: 2.5rem 0;
    text-align: center;
    font-size: 3rem;
}

.academic-card-content {
    padding: 2rem;
}

.academic-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(#1a4b8c);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Conceptual Learning Section */
.conceptual-section {
    background-color: white;
    padding: 6rem 0;
}

.conceptual-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.concept-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 5px solid #d4af37;
    border-right: 5px solid #d4af37;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.concept-box:hover {
    transform: scale(1.02);
    background-color: #f0f6ff;
}

.concept-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(#1a4b8c);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}



.concept-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Research Section */
.research-section {
    background: url('/api/placeholder/1200/800') center center/cover no-repeat;
    position: relative;
    color: white;
    padding: 6rem 0;
}

.research-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.9) 0%, rgba(58, 123, 213, 0.9) 100%);
    z-index: 1;
}

.research-content {
    position: relative;
    z-index: 2;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.research-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid #d4af37;
}

.research-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.research-item h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: white;
}
.research-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.research-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.research-item:hover .research-image img {
    transform: scale(1.1);
}

/* Reading & Writing Section */
.reading-section {
    background: linear-gradient(135deg, #e4ecfb 0%, #f5f7fa 100%);
    padding: 6rem 0;
}

.reading-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.reading-box {
    background-color: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.reading-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.reading-box h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(#1a4b8c);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
}

.reading-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #d4af37;
}
.reading-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.reading-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.reading-box:hover .reading-image img {
    transform: scale(1.1);
}
/* Salient Features Section */
.features-section {
    background-color: white;
    padding: 6rem 0;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.feature-item:hover {
    background-color: #f0f6ff;
    transform: translateY(-5px);
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: var(#1a4b8c);
    font-size: 2rem;
    background: rgba(26, 75, 140, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-item h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(#1a4b8c);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Calendar Section */
.calendar-section {
    background-color: #f8f9fa;
    padding: 6rem 0;
}

.calendar-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 3rem;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
}

.calendar-table th, .calendar-table td {
    padding: 1.2rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.calendar-table th {
    background: linear-gradient(135deg, var(#1a4b8c) 0%,  #3a7bd5 100%);
    color: white;
    font-weight: 600;
}

.calendar-table tr:hover {
    background-color: #f0f6ff;
}

.calendar-table thead{
    background: linear-gradient(135deg, rgba(26, 75, 140, 0.9) 0%, rgba(58, 123, 213, 0.9) 100%);
}

.download-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(#1a4b8c) 0%,  #3a7bd5 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Book List Section */
.booklist-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4ecfb 100%);
    padding: 6rem 0;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.book-card {
    background-color: white;
    border-radius: 12px;
    box-shadow:  0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #d4af37;
}

.book-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.book-subject {
    color: var(#1a4b8c);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
}

.book-subject::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d4af37;
}

.book-card ul {
    list-style-type: none;
    padding-left: 0 !important;
    margin: 0 !important;
}

.book-card li {
    margin-bottom: 0.8rem;
    padding-left: 20px;
    position: relative;
}

.book-card li::before {
    content: '\f02d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* Footer */
.footer {
    background: var(#1a4b8c);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #d4af37;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    margin-top: 3rem;
    text-align: center;
}

/* Wave divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
    transform: rotateY(180deg);
}

.wave-divider .shape-fill {
    fill: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .academic-stem, .conceptual-section, .research-section,
    .reading-section, .features-section, .calendar-section,
    .booklist-section {
        padding: 4rem 0;
    }
}


/* IG CSS */
/* Program Section */
.programs {
    padding: 60px 0;
    position: relative;
  }

  .ig-section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #0a4d68;
  }

  .ig-section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: #16c79a;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
  }

  .ig-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 20px;
  }

  .ig-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:  0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .ig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }

  .ig-card-icon {
    position: absolute;
    top: 7px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #0a4d68;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1;
    transition: all 0.3s ease;
  }

  .ig-card:hover .ig-card-icon {
    transform: rotate(360deg);
    background: #16c79a;
  }

  .ig-card-header {
    padding: 22px 20px 15px;
    background: rgba(10, 77, 104, 0.03);
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .ig-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #05728c;
    margin-right: 40px;
  }

  .ig-card-body {
    padding: 20px;
    flex-grow: 1;
  }

  .ig-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
  }

  .ig-card p:last-child {
    margin-bottom: 0;
  }

  .ig-card ul {
    list-style-type: none;
    padding: 0;
    margin: 15px 0 0;
  }

  .ig-card ul li {
    position: relative;
    padding: 8px 0 8px 25px;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
  }

  .ig-card ul li:last-child {
    border-bottom: none;
  }

  .ig-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16c79a;
    font-weight: bold;
  }

  /* Featured Card */
  .ig-featured-card {
    grid-column: span 2;
    position: relative;
  }


  /* CTA Section */
  .ig-cta-section {
    padding: 50px 0;
    background: linear-gradient(120deg,#05728c, #0a4d68);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
  }

  .ig-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
  }

  .ig-cta-content {
    position: relative;
    z-index: 1;
  }

  .ig-cta-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
  }

  .ig-cta-description {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
  }

  .ig-cta-button {
    display: inline-block;
    background: white;
    color: #0a4d68;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
  }

  .ig-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  }

  .ig-card-image {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    object-fit: cover; /* Ensures the image covers the area without distortion */
  }
  

  /* Responsive */
  @media (max-width: 992px) {
    .ig-featured-card {
      grid-column: auto;
    }
    .ig-cta-title {
      font-size: 2rem;
    }
  }

  @media (max-width: 768px) {
    .tagline, .ig-cta-description {
      font-size: 1rem;
    }
    
    .ig-card-title {
      font-size: 1.1rem;
    }
    
    .programs {
      padding: 40px 0;
    }
  }

  @media (max-width: 576px) {
    .ig-card-title {
      font-size: 1rem;
    }
  }

  .ig-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }


  /* Hitech CSS */
  .page__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page__header {
    text-align: center;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    color: white;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page__header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1200/400') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.header__content {
    position: relative;
    z-index: 1;
}

.header__title {
    font-size: 3.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInDown 1s ease-out;
}

.header__subtitle {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #1a73e8;
    animation: fadeInUp 1s ease-out;
}

.header__tagline {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
    animation: fadeIn 1.5s ease-out;
}


.carousel__container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: 40px 0;
  }

  .carousel__track {
    display: flex;
    width: max-content;
    will-change: transform;
    gap: 20px;
    margin-bottom: 10px;
  }

.icon__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    transition: transform 0.5s ease;
    width: max-content;
}

.icon__item {
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: fadeInScale 0.8s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
}

.icon__item:nth-child(1) { animation-delay: 0.1s; }
.icon__item:nth-child(2) { animation-delay: 0.2s; }
.icon__item:nth-child(3) { animation-delay: 0.3s; }
.icon__item:nth-child(4) { animation-delay: 0.4s; }
.icon__item:nth-child(5) { animation-delay: 0.5s; }
.icon__item:nth-child(6) { animation-delay: 0.6s; }
.icon__item:nth-child(7) { animation-delay: 0.7s; }
.icon__item:nth-child(8) { animation-delay: 0.8s; }
.icon__item:nth-child(9) { animation-delay: 0.9s; }

.icon__item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon__image {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.icon__text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: #333;
}

.content__section {
    background-color: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.content__section.visible {
    opacity: 1;
    transform: translateY(0);
}

.content__section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section__title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 600;
}

.section__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.content__section:hover .section__title::after {
    width: 100px;
}

.benefits__list {
    list-style-type: none;
    padding-left: 0;
}

.benefits__item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.benefits__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ca1af;
    font-weight: bold;
}

.benefits__list.visible .benefits__item {
    opacity: 1;
    transform: translateX(0);
}

.benefits__item:nth-child(1) { transition-delay: 0.1s; }
.benefits__item:nth-child(2) { transition-delay: 0.2s; }
.benefits__item:nth-child(3) { transition-delay: 0.3s; }
.benefits__item:nth-child(4) { transition-delay: 0.4s; }
.benefits__item:nth-child(5) { transition-delay: 0.5s; }
.benefits__item:nth-child(6) { transition-delay: 0.6s; }
.benefits__item:nth-child(7) { transition-delay: 0.7s; }
.benefits__item:nth-child(8) { transition-delay: 0.8s; }

.resources__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.resource__card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.9);
}

.resources__grid.visible .resource__card {
    opacity: 1;
    transform: scale(1);
}

.resource__card:nth-child(1) { transition-delay: 0.1s; }
.resource__card:nth-child(2) { transition-delay: 0.2s; }
.resource__card:nth-child(3) { transition-delay: 0.3s; }
.resource__card:nth-child(4) { transition-delay: 0.4s; }

.resource__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.resource__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #4ca1af;
}

.resource__title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cta__section {
    background: linear-gradient(90deg, #4ca1af, #2c3e50);
    color: white;
    text-align: center;
    padding: 60px 40px;
    border-radius: 15px;
    margin: 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta__section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/api/placeholder/1200/400') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.cta__content {
    position: relative;
    z-index: 1;
}

.cta__title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.cta__button {
    display: inline-block;
    background-color: white;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.page__footer {
    text-align: center;
    padding: 30px 0;
    color: #6c757d;
    font-size: 0.9rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Particle effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100vh) translateX(100vw) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .header__title { font-size: 2.5rem; }
    .header__subtitle { font-size: 1.5rem; }
    .icon__grid { gap: 10px; }
    .icon__item { width: 120px; height: 120px; }
    .content__section { padding: 30px 20px; }
    .resources__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .header__title { font-size: 2rem; }
    .header__subtitle { font-size: 1.2rem; }
    .icon__grid { gap: 5px; }
    .icon__item { width: 100px; height: 100px; }
    .resources__grid { grid-template-columns: 1fr; }
    .icon__item img{
        width: 30px;
        height: 30px;
    }

    .icon__item p{
        font-size:11px;
    }
}

 /* Additional styles for section images */
 .section__image-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.section__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section__image:hover {
    transform: scale(1.02);
}

.section__flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media (min-width: 768px) {
    .section__flex {
        flex-direction: row;
        align-items: center;
    }
    
    .section__content {
        flex: 1;
    }
    
    .section__image-container {
        flex: 1;
        margin: 0;
    }
}


/* Admission CSS */
/* Main Content Styles */
.admissions__main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
}

.admissions__main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(107, 71, 255, 0.2), transparent);
    z-index: -1;
}

.admissions__section {
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.admissions__section.visible {
    opacity: 1;
    transform: translateY(0);
}

.admissions__section-title {
    font-size: 2.5rem;
    color: #6b47ff;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.admissions__section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    border-radius: 2px;
}

.admissions__section-icon {
    display: block;
    margin: 0 auto 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(107, 71, 255, 0.3);
}

/* Age Criteria Styles */
.age-criteria__container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 50px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.age-criteria__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(107, 71, 255, 0.05) 100%);
    z-index: -1;
}

.age-criteria__container:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.age-criteria__title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.age-criteria__list {
    list-style: none;
}

.age-criteria__item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.age-criteria__item:hover {
    transform: translateX(10px);
}

.age-criteria__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.age-criteria__grade {
    font-weight: 600;
    min-width: 180px;
    color: #6b47ff;
    font-size: 1.1rem;
}

.age-criteria__age {
    color: #666;
    font-size: 1.1rem;
    position: relative;
    padding-left: 20px;
}

.age-criteria__age::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    border-radius: 50%;
}

/* Admission Process Styles */
.admission-process__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.admission-process__step {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1;
}

.admission-process__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    z-index: 1;
}

.admission-process__step:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.admission-process__step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(107, 71, 255, 0.07);
    line-height: 1;
}

.admission-process__step-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #6b47ff;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.admission-process__step-description {
    color: #666;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

.admission-process__step-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(107, 71, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b47ff;
    font-size: 1.5rem;
}

/* Online Registration Styles */
.online-registration__container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    padding: 50px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.online-registration__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(107, 71, 255, 0.05) 100%);
    z-index: -1;
}

.online-registration__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: 600;
}

.online-registration__description {
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}

.online-registration__form {
    max-width: 800px;
    margin: 0 auto;
}

.online-registration__form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.online-registration__form-group {
    margin-bottom: 25px;
    position: relative;
}

.online-registration__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95rem;
}

.online-registration__input,
.online-registration__select,
.online-registration__textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.online-registration__input:focus,
.online-registration__select:focus,
.online-registration__textarea:focus {
    border-color: #6b47ff;
    box-shadow: 0 0 0 3px rgba(107, 71, 255, 0.2);
    outline: none;
    background-color: #fff;
}

.online-registration__input::placeholder,
.online-registration__textarea::placeholder {
    color: #aaa;
}

.online-registration__textarea {
    resize: vertical;
    min-height: 120px;
}

.online-registration__submit {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 40px auto 0;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(107, 71, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.online-registration__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.online-registration__submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 71, 255, 0.4);
}

.online-registration__submit:hover::before {
    opacity: 1;
}

/* Admission Prospectus Styles */
.prospectus__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prospectus__content {
    padding-right: 20px;
}

.prospectus__title {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
}

.prospectus__description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.prospectus__features {
    list-style: none;
    margin-bottom: 40px;
}

.prospectus__feature {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    padding-left: 10px;
}

.prospectus__feature:hover {
    transform: translateX(10px);
}

.prospectus__feature::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    color: white;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.prospectus__button {
    display: inline-block;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(107, 71, 255, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.05rem;
}

.prospectus__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.prospectus__button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(107, 71, 255, 0.4);
}

.prospectus__button:hover::before {
    opacity: 1;
}

.prospectus__image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.prospectus__image-container:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.prospectus__image {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.5s ease;
}

.prospectus__image-container:hover .prospectus__image {
    transform: scale(1.05);
}

.prospectus__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #00aeef, #0077b6);
    opacity: 0;
    transition: all 0.5s ease;
}

.prospectus__image-container:hover .prospectus__image-overlay {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .admissions__title {
        font-size: 3.5rem;
    }

    .prospectus__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .prospectus__content {
        padding-right: 0;
        order: 2;
    }

    .prospectus__image-container {
        order: 1;
        transform: perspective(1000px) rotateY(0deg);
    }
}

@media (max-width: 768px) {
    .admissions__header {
        padding: 100px 5% 80px;
    }

    .admissions__title {
        font-size: 2.8rem;
    }

    .admissions__subtitle {
        font-size: 1.1rem;
    }

    .admissions__section-title {
        font-size: 2.2rem;
    }

    .age-criteria__container,
    .online-registration__container {
        padding: 30px;
    }

    .admission-process__step {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .admissions__title {
        font-size: 2.3rem;
    }

    .admissions__section-title {
        font-size: 1.8rem;
    }

    .age-criteria__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .age-criteria__grade {
        margin-bottom: 5px;
    }

    .age-criteria__age {
        padding-left: 0;
    }

    .age-criteria__age::before {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.shimmer-effect {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    background-size: 1000px 100%;
    animation: shimmer 2s infinite linear;
}

/* Franchise CSS */
  /* Advantages Section */
  .advantages {
    background-color: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
  }

  .advantages__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(249, 115, 22, 0.05));
    z-index: 0;
  }

  .advantages__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .advantages__heading {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
  }

  .advantages__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
  }

  .advantages__subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .advantage-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
    animation: fadeInUp 1s ease-out;
    animation-delay: calc(0.2s * var(--i));
  }

  .advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: #2563eb;
    transition: height 0.3s ease;
    z-index: -1;
  }

  .advantage-card:hover::before {
    height: 100%;
  }

  .advantage-card__icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
  }

  .advantage-card__title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
  }

  .advantage-card__description {
    color: #64748b;
    font-size: 1rem;
  }

  /* MOU Ceremonies Section */
  .ceremonies {
    padding: 5rem 2rem;
    background-color:linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(249, 115, 22, 0.05));
  }

  .ceremonies__container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .ceremonies__heading {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out;
  }

  .ceremonies__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
  }

  .ceremonies__subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
  }

  .ceremonies__slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
  }

  .ceremonies__track {
    display: flex;
    gap: 2rem;
    animation: slideTrack 30s linear infinite;
  }

  .ceremony-card {
    min-width: 350px;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .ceremony-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }

  .ceremony-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .ceremony-card__content {
    padding: 1.5rem;
  }

  .ceremony-card__title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
  }

  .ceremony-card__date {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .ceremony-card__description {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .ceremony-card__link {
    display: inline-block;
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .ceremony-card__link:hover {
    color: #1d4ed8;
    transform: translateX(5px);
  }

  /* Form Section */
  .form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    position: relative;
    overflow: hidden;
  }

  .form-section__shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.1;
  }

  .form-section__shape {
    position: absolute;
    border-radius: 50%;
    background-color: white;
  }

  .form-section__shape--1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: 10%;
    animation: float 8s infinite ease-in-out;
  }

  .form-section__shape--2 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 5%;
    animation: float 10s infinite ease-in-out reverse;
  }

  .form-section__container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
  }

  .form-section__content {
    flex: 1;
    min-width: 300px;
    animation: fadeInLeft 1s ease-out;
  }

  .form-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .form-section__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
  }

  .form-section__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .form-section__feature {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .form-section__feature-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .form-section__feature-text {
    font-size: 1rem;
  }

  .form-section__form-container {
    flex: 1;
    min-width: 300px;
    animation: fadeInRight 1s ease-out;
  }

  .franchise-form {
    background-color: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .franchise-form__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .franchise-form__group {
    margin-bottom: 1.5rem;
  }

  .franchise-form__label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 0.5rem;
  }

  .franchise-form__input,
  .franchise-form__textarea,
  .franchise-form__select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    color: #1e293b;
    transition: all 0.3s ease;
  }

  .franchise-form__input:focus,
  .franchise-form__textarea:focus,
  .franchise-form__select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  .franchise-form__textarea {
    resize: vertical;
    min-height: 100px;
  }

  .franchise-form__button {
    width: 100%;
    padding: 1rem;
    background-color: #2563eb;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .franchise-form__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
  }

  .franchise-form__button:hover {
    background-color: #1d4ed8;
  }

  .franchise-form__button:hover::before {
    left: 100%;
  }
/* Animations */
@keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  @keyframes widthGrow {
    from {
      width: 0;
    }
    to {
      width: 80px;
    }
  }

  @keyframes slideTrack {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  /* Responsive Styles */
  @media (max-width: 768px) {
    .advantages {
      padding: 3rem 1.5rem;
    }

    .advantages__title {
      font-size: 2rem;
    }

    .ceremonies {
      padding: 3rem 1.5rem;
    }

    .ceremonies__title {
      font-size: 2rem;
    }

    .form-section {
      padding: 3rem 1.5rem;
    }

    .form-section__title {
      font-size: 2rem;
    }
  }


  /* Gallery Section */
.gallery {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.gallery__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05); /* Light background overlay */
    z-index: -1;
}

.gallery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Envira Gallery Grid Layout */
.envira-gallery-wrap {
    margin-bottom: 20px;
}

.envira-gallery-public {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Increased spacing between images */
}

.envira-gallery-item {
    flex: 1 1 calc(25% - 20px); /* 4 items in a row with 20px gap */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 0 !important; /* Override any default margin */
}



/* Ensure images fit nicely */
.envira-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Load More Button */
.gallery-pagination {
    text-align: center;
    margin-top: 40px;
}

.gallery__load-more {
    display: inline-block;
    padding: 12px 30px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gallery__load-more:hover {
    background-color: #005bb5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .envira-gallery-item {
        flex: 1 1 calc(33.33% - 20px); /* 3 items in a row for tablets */
    }
}

@media (max-width: 768px) {
    .envira-gallery-item {
        flex: 1 1 calc(50% - 15px); /* 2 items in a row for smaller tablets */
    }
    
    .envira-gallery-public {
        gap: 15px; /* Slightly smaller gap for tablets */
    }
}

@media (max-width: 480px) {
    .envira-gallery-item {
        flex: 1 1 100%; /* 1 item in a row for mobile */
    }
    
    .envira-gallery-public {
        gap: 15px; /* Maintain smaller gap for mobile */
    }
}
/* Campus CSS */
  /* Map Section */
  .map-section {
    padding: 6rem 5%;
    background-color: white;
  }

  .map-section__content {
    max-width: 1400px;
    margin: 0 auto;
  }

  .map-section__header {
    text-align: center;
    margin-bottom: 3rem;
  }

  .map-section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
  }

  .map-section__subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
  }

  .map-container {
    display: flex;
    gap: 2rem;
    height: 600px;
  }

  .map-sidebar {
    width: 350px;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
  }

  .map-sidebar__header {
    padding: 1.5rem;
    background-color: #3b82f6;
    color: white;
  }

  .map-sidebar__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .map-sidebar__filter {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .map-sidebar__filter-input {
    flex-grow: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
  }

  .map-sidebar__filter-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
  }

  .map-sidebar__list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1rem;
  }

  .map-sidebar__item {
    padding: 1rem;
    border-radius: 0.375rem;
    background-color: white;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .map-sidebar__item:hover {
    transform: translateY(-2px);
    box-shadow:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }

  .map-sidebar__item--active {
    border-left: 4px solid #3b82f6;
  }

  .map-sidebar__item-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
  }

  .map-sidebar__item-address {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }

  .map-sidebar__item-details {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: #6b7280;
  }

  .map-sidebar__item-detail {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .map-display {
    flex-grow: 1;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    position: relative;
  }

  .map-display__map {
    width: 100%;
    height: 100%;
    border: none;
  }

  .map-display__overlay {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: white;
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 300px;
    animation: fadeIn 0.3s ease-out;
  }

  .map-display__overlay-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
  }

  .map-display__overlay-address {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
  }

  .map-display__overlay-link {
    display: inline-block;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
  }

  .map-display__overlay-link:hover {
    text-decoration: underline;
  }

  /* Careers */
    .jobs {
        padding: 6rem 5%;
        background-color: #f9fafb;
      }
  
      .jobs__content {
        max-width: 1200px;
        margin: 0 auto;
      }
  
      .jobs__header {
        text-align: center;
        margin-bottom: 4rem;
      }
  
      .jobs__title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
      }
  
      .jobs__subtitle {
        font-size: 1.125rem;
        color:  #6b7280;
        max-width: 800px;
        margin: 0 auto;
      }
  
      .jobs__filters {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
      }
  
      .jobs__filter {
        background: none;
        border: 1px solid #e5e7eb;
        padding: 0.5rem 1.25rem;
        border-radius: 2rem;
        font-size: 0.875rem;
        font-weight: 500;
        color:  #6b7280;
        cursor: pointer;
        transition: all 0.3s ease;
      }
  
      .jobs__filter:hover {
        border-color:  #4f46e5;
        color:  #4f46e5;
      }
  
      .jobs__filter--active {
        background-color:  #4f46e5;
        color: white;
        border-color:  #4f46e5;
      }
  
      .jobs__filter--active:hover {
        background-color: #4338ca;
        color: white;
      }
  
      .jobs__list {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
      }
  
      .job-card {
        background-color: white;
        border-radius: 0.5rem;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
      }
  
      .job-card:hover {
        transform: translateY(-5px);
        box-shadow:  0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      }
  
      .job-card__header {
        padding: 1.5rem;
        border-bottom: 1px solid #e5e7eb;
      }
  
      .job-card__title {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #1f2937;
      }
  
      .job-card__company {
        font-size: 0.875rem;
        color:  #6b7280;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
      }
  
      .job-card__tags {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
      }
  
      .job-card__tag {
        background-color: #e5e7eb;
        color:  #6b7280;
        padding: 0.25rem 0.75rem;
        border-radius: 1rem;
        font-size: 0.75rem;
        font-weight: 500;
      }
  
      .job-card__tag--featured {
        background-color:  #4f46e5;
        color: white;
      }
  
      .job-card__body {
        padding: 1.5rem;
        flex-grow: 1;
      }
  
      .job-card__description {
        color:  #6b7280;
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
      }
  
      .job-card__details {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        margin-bottom: 1.5rem;
      }
  
      .job-card__detail {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        color:  #6b7280;
      }
  
      .job-card__footer {
        padding: 1.5rem;
        border-top: 1px solid #e5e7eb;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      .job-card__salary {
        font-weight: 600;
        color: #1f2937;
      }
  
      .job-card__apply {
        background-color:  #4f46e5;
        color: white;
        padding: 0.5rem 1.25rem;
        border-radius: 0.375rem;
        font-weight: 500;
        text-decoration: none;
        transition: background-color 0.3s ease;
      }
  
      .job-card__apply:hover {
        background-color: #4338ca;
      }
  
      /* Application Form Section */
      .application {
        padding: 6rem 5%;
        background-color: white;
      }
  
      .application__content {
        max-width: 800px;
        margin: 0 auto;
      }
  
      .application__header {
        text-align: center;
        margin-bottom: 3rem;
      }
  
      .application__title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: #1f2937;
      }
  
      .application__subtitle {
        font-size: 1.125rem;
        color:  #6b7280;
      }
  
      .application__form {
        background-color: #f9fafb;
        border-radius: 0.5rem;
        padding: 2.5rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
      }
  
      .form__group {
        margin-bottom: 1.5rem;
      }
  
      .form__label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #000;
      }
  
      .form__input,
      .form__textarea,
      .form__select {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid #e5e7eb;
        border-radius: 0.375rem;
        font-size: 1rem;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
      }
  
      .form__input:focus,
      .form__textarea:focus,
      .form__select:focus {
        outline: none;
        border-color:  #4f46e5;
        box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
      }
  
      .form__textarea {
        resize: vertical;
        min-height: 120px;
      }
  
      .form__file {
        display: none;
      }
  
      .form__file-label {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border: 1px dashed #e5e7eb;
        border-radius: 0.375rem;
        cursor: pointer;
        transition: border-color 0.3s ease, background-color 0.3s ease;
      }
  
      .form__file-label:hover {
        background-color: rgba(79, 70, 229, 0.05);
        border-color:  #4f46e5;
      }
  
      .form__file-text {
        font-size: 0.875rem;
        color:  #6b7280;
      }
  
      .form__submit {
        background-color:  #4f46e5;
        color: white;
        padding: 0.75rem 1.5rem;
        border: none;
        border-radius: 0.375rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        width: 100%;
      }
  
      .form__submit:hover {
        background-color: #4338ca;
        transform: translateY(-2px);
      }
  
/* Contact US */
.bg__circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.bg__circle--1 {
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #7c3aed;
    animation: float 15s ease-in-out infinite;
}

.bg__circle--2 {
    bottom: 10%;
    right: -100px;
    width: 350px;
    height: 350px;
    background: #2563eb;
    animation: float 18s ease-in-out infinite reverse;
}

.bg__circle--3 {
    top: 40%;
    left: 30%;
    width: 200px;
    height: 200px;
    background: #ec4899;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, 20px) rotate(5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

 /* Page Title */
 .title__section {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.title__main {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: fadeInDown 1s ease-out;
}

.title__subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

/* Contact Grid */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Form Section */
.form__section {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: slideInLeft 1s ease-out;
    position: relative;
    overflow: hidden;
    margin: auto;
}

.form__section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(124, 58, 237, 0.1),
        rgba(236, 72, 153, 0.1)
    );
    transform: rotate(30deg);
    z-index: -1;
}
.form__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #f8fafc;
    position: relative;
    display: inline-block;
}
.form__title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: -8px;
    left: 0;
    background: linear-gradient(to right, #7c3aed, #ec4899);
}
.form__group {
    margin-bottom: 1.5rem;
    position: relative;
}
.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
    transition: color 0.3s ease;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #f8fafc;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__button {
    background: #6366f1;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #6366f1;
    transition: left 0.3s ease;
    z-index: -1;
}

.form__button:hover::before {
    left: 0;
}

.form__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(124, 58, 237, 0.5);
}

/* Map Section */
.map__section {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    animation: slideInRight 1s ease-out;
    position: relative;
    margin-top: 20px;
}


.map__title {
    font-size: 2rem;
    font-weight: 700;
    padding: 2rem 2.5rem;
    color: #f8fafc;
    position: relative;
    display: inline-block;
}

.map__title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    bottom: 1.5rem;
    left: 2.5rem;
    background: linear-gradient(to right, #7c3aed, #ec4899);
}

.map__container {
    height: 400px;
    width: 100%;
}

.map__iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.text-section {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.quran-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.arabic-text {
    font-size: 42px;
    color: #0099cc;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: bold;
}

.translation {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 10px;
}

.source {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.about-main-container{
    display: flex;
}

.intro-description {
    background-color: #0078b6;
    color: white;
    padding: 30px;
    font-size: 20px;
    text-align: left;
    line-height: 1.6;
    border-radius: 5px;
    margin-top: 20px;
}



            .text-section, .image-section {
                order: 1;
                padding: 10px;
            }

            .arabic-text {
                font-size: 2rem;
            }
            
            .translation, .source {
                font-size: 1.125rem;
            }
            
            .description {
                font-size: 1rem;
                padding: 20px;
            }
        

        /* Smaller Mobile Devices */
        @media (max-width: 480px) {
            .arabic-text {
                font-size: 1.75rem;
            }
            
            .translation, .source {
                font-size: 1rem;
            }
            
            .description {
                font-size: 0.9rem;
                padding: 15px;
            }
			 .about-main-container {
                flex-direction: column;
            }
        }

@media (max-width: 768px) {
    .arabic-text {
        font-size: 32px;
    }
    
    .translation, .source {
        font-size: 18px;
    }
    
    .description {
        font-size: 16px;
    }
	
	.about-main-container {
        flex-direction: column;
    }
    .concept-box{
        display: block;
    }
    .contact__grid{
        display: inline-block;
    }

}

.menu-item-34 > a,
.menu-item-36 > a, 
.menu-item-35 > a
{
    pointer-events: none;
    cursor: default;
}
.sub-menu .icon-arrow {
    display: none !important;
}

/* WeekendClasses CSS */
.weekend-classes-about{
    padding: 6rem 2rem;
    position: relative;
}


.weekend-classes-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.weekend-classes-image{
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}
.weekend-classes-image:hover{
    transform: perspective(1000px) rotateY(0deg);
}

.weekend-classes-content{
    animation: fadeIn 1s ease-out;
}

.weekend-classes-title{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #f8fafc;
    position: relative;
}

.weekend-classes::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 2px;
}



.weekend-classes-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.weekend-classes-item{
    background: linear-gradient(135deg, #1e293b, #0f172a);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.weekend-classes-title:hover{
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.weekend-classes-text {
    font-weight: 500;
    color: #000;
}

.f-text{
    font-weight: 500;
    color: #FFF;
}

 /* Programs Section */
 .programs-section {
    padding: 6rem 2rem;
}

.program-section-title{
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    animation: fadeInDown 1sease-in-out;
    margin-left: 8rem;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.program-card {
    background: rgba(30, 41, 59, 0.8);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.program-card:nth-child(1) { animation-delay: 0.2s; }
.program-card:nth-child(2) { animation-delay: 0.4s; }
.program-card:nth-child(3) { animation-delay: 0.6s; }
.program-card:nth-child(4) { animation-delay: 0.8s; }

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
    z-index: -1;
}
.program-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.program-card:hover .program-image {
    transform: scale(1.1);
}
.program-content {
    padding: 1.5rem;
}

.program-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #f8fafc;
    position: relative;
    display: inline-block;
}

.program-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.program-card:hover .program-title::after {
    width: 100%;
}

.program-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.program-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.program-link:hover {
    background: rgba(59, 130, 246, 0.3);
    transform: translateX(5px);
}

 /* Why Direct Tech Section */
 .why-section {
    padding: 6rem 2rem;
    /* background: linear-gradient(135deg, #1e293b, #0f172a); */
    position: relative;
    overflow: hidden;
}

.why-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.why-item:nth-child(1) { animation-delay: 0.2s; }
.why-item:nth-child(2) { animation-delay: 0.4s; }
.why-item:nth-child(3) { animation-delay: 0.6s; }
.why-item:nth-child(4) { animation-delay: 0.8s; }

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.why-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFF;
}

.why-text {
    color: #FFF;
}

/* Curriculum Section */
.curriculum-section {
    padding: 6rem 2rem;
    /* background: #0f172a; */
    position: relative;
}

.curriculum-container {
    max-width: 1200px;
    margin: 0 auto;
}

.curriculum-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    animation: fadeIn 1s ease-out;
}

.curriculum-text {
    /* color: #cbd5e1; */
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.curriculum-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.curriculum-card:nth-child(1) {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    animation-delay: 0.2s;
}

.curriculum-card:nth-child(2) {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    animation-delay: 0.4s;
}

.curriculum-card:nth-child(3) {
    background: linear-gradient(135deg, #ec4899, #be185d);
    animation-delay: 0.6s;
}

.curriculum-card:nth-child(4) {
    background: linear-gradient(135deg, #10b981, #047857);
    animation-delay: 0.8s;
}

.curriculum-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.curriculum-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.curriculum-content {
    padding: 2rem;
}

.curriculum-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.curriculum-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s infinite ease-in-out;
    z-index: 0;
}

.floating-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 1s;
}

.floating-3 {
    width: 80px;
    height: 80px;
    bottom: 10%;
    left: 20%;
    animation-delay: 2s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .weekend-classes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .program-section-title{
        margin-left: 1rem;
    }
    .weekend-classes-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .programs-grid,
    .why-grid,
    .curriculum-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    .program-section-title{
        margin-left: 1rem;
    }
    .weekend-classes-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .weekend-classes-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .weekend-classes-title {
        font-size: 1.8rem;
    }

    .weekend-classes-subtitle {
        font-size: 1rem;
    }
    .program-section-title{
        margin-left: 1rem;
    }
    .hero-cta {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .weekend-classes-title,
    .section-title {
        font-size: 1.8rem;
    }
}

/* Center the form and set max-width for responsiveness */
.cform-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

/* Style for each row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 15px;
    justify-content: space-between;
}

/* Style for each field group */
.form-group {
    flex: 1;
    min-width: 30%;
    margin-right: 10px;
    margin-bottom: 15px;
}

.form-group:last-child {
    margin-right: 0;
}

/* Make all input, select elements and submit button the same size */
.form-group input,
.form-group select,
.form-group input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    height: 45px;
    box-sizing: border-box;
}

/* Label styling */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

/* Submit button styling */
.form-group input[type="submit"] {
    background-color: #2563eb;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    margin-top: 20px;
}



/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .form-group {
        flex: 1 0 100%;
        margin-right: 0;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Modern Career Page Styling - Enhanced Version */


/* Career Container */
.career-container {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 2.5rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
  position: relative;
  overflow: hidden;
}

.career-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #4263eb 0%, #805ad5 100%);
}

/* Search Filters */
.career-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  background-color: #f7fafc;
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  position: relative;
}

.career-filters::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 5%;
  width: 90%;
  height: 5px;
  background: #e2e8f0;
  border-radius: 0 0 12px 12px;
}

.career-filters input {
  flex: 1;
  min-width: 220px;
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: white;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.career-filters input::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.career-filters input:focus {
  outline: none;
  border-color: #4263eb;
  box-shadow: 0 0 0 4px rgba(66, 99, 235, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.career-filters button {
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #4263eb 0%, #3b82f6 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.career-filters button:hover {
  background: linear-gradient(135deg, #3b5bdb 0%, #2563eb 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.career-filters button:active {
  transform: translateY(-1px);
}

/* Job Listings Grid */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.job-card {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.job-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, #4263eb, #805ad5);
  transition: height 0.3s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e0;
}

.job-card:hover::after {
  height: 100%;
}

.job-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.8rem;
  transition: color 0.3s ease;
}

.job-card:hover .job-title {
  color: #4263eb;
}

.job-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

.job-location::before {
  content: '📍';
  transition: transform 0.3s ease;
}

.job-card:hover .job-location::before {
  transform: scale(1.2);
}

.job-department {
  background: linear-gradient(135deg, #ebf4ff 0%, #e6e6ff 100%);
  color: #4263eb;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(66, 99, 235, 0.1);
}

.job-card:hover .job-department {
  background: linear-gradient(135deg, #4263eb 0%, #805ad5 100%);
  color: white;
  border-color: transparent;
}

/* Enhanced Job Summary Styling */
.description {
  position: relative;
  color: #4a5568;
  margin-bottom: 1.8rem;
  flex-grow: 1;
  line-height: 1.7;
  padding: 1.2rem;
  background-color: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #e2e8f0;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
height:100px;
overflow-y:auto;
}

.description::before {
  content: 'Job Description';
  position: absolute;
  top: 0px;
  left: 12px;
  background-color: white;
  padding: 0 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #4263eb;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
}

.job-card:hover .job-summary {
  background-color: #f0f7ff;
  border-left-color: #4263eb;
}

/* Job summary bulleted list */
.job-points {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0.8rem;
}

.job-points li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.job-points li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  color: #4263eb;
  font-weight: bold;
}

.apply-button {
  width: 100%;
  padding: 0.9rem 1rem;
  background-color: white;
  color: #4263eb;
  border: 2px solid #4263eb;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.apply-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #4263eb 0%, #805ad5 100%);
  transition: all 0.4s ease;
  z-index: -1;
}

.apply-button:hover {
  color: white;
}

.apply-button:hover::before {
  left: 0;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pagination button {
  padding: 0.8rem 1.5rem;
  background-color: white;
  color: #4263eb;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pagination button:hover:not([disabled]) {
  background-color: #4263eb;
  color: white;
  border-color: #4263eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(66, 99, 235, 0.2);
}

.pagination button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

#page-info {
  font-size: 0.95rem;
  color: #718096;
  font-weight: 500;
}

/* Application Form */
.apply-form-container {
  background-color: white;
  border-radius: 16px;
  padding: 2.5rem;
  margin-top: 3rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.apply-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #4263eb 0%, #805ad5 100%);
}

.apply-form-container h2 {
  margin-bottom: 2rem;
  color: #2d3748;
  text-align: center;
  font-size: 1.75rem;
  position: relative;
  padding-bottom: 1rem;
}

.apply-form-container h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #4263eb 0%, #805ad5 100%);
  border-radius: 3px;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #4a5568;
}

.form-group input {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #f8fafc;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.03);
}

.form-group input:focus {
  outline: none;
  border-color: #4263eb;
  box-shadow: 0 0 0 4px rgba(66, 99, 235, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.03);
  background-color: white;
}

.form-group input[type="file"] {
  padding: 0.8rem;
  background-color: #f7fafc;
  cursor: pointer;
}

.apply-form-container button {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, #4263eb 0%, #805ad5 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
  box-shadow: 0 6px 16px rgba(66, 99, 235, 0.3);
  letter-spacing: 0.5px;
}

.apply-form-container button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(66, 99, 235, 0.4);
  background: linear-gradient(135deg, #3b5bdb 0%, #6b46c1 100%);
}

.apply-form-container button:active {
  transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .career-container {
    padding: 1.5rem;
    margin: 1rem;
    border-radius: 12px;
  }
  
  .career-filters {
    flex-direction: column;
    padding: 1.5rem;
  }
  
  .job-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .apply-form-container {
    padding: 1.5rem;
  }
}

/* Animation for job cards */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.job-card {
  animation: fadeIn 0.6s ease forwards;
  animation-delay: calc(var(--animation-order) * 0.1s);
  opacity: 0;
}

/* No results message styling */
.no-jobs {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem;
  background-color: #f7fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e0;
  color: #718096;
  font-size: 1.1rem;
  font-weight: 500;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.gallery-tabs {
    margin-bottom: 30px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 10px;
}

.tab-list {
    display: inline-flex;
    gap: 10px;
    padding: 0 10px;
    margin: 0;
    list-style: none;
}

.tab-item {
    padding: 10px 20px;
    background: #f5f5f5;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
    flex-shrink: 0;
}

.tab-item:hover,
.tab-item.active {
    background: #007bff;
    color: white;
}

.gallery-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    color: white;
    margin: 0;
    font-size: 16px;
}

.gallery-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.gallery-popup.active {
    display: flex;
}

.popup-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.load-more-container {
    text-align: center;
    margin-top: 30px;
}

.load-more-btn {
    padding: 12px 30px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.load-more-btn:hover {
    background: #0056b3;
}

.region-filter {
    display: flex;
  flex-wrap: wrap;
  justify-content: center; /* ✅ Center horizontally */
  gap: 10px; /* space between buttons */
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0 10px;
}

.region-btn {
    padding: 10px 15px;
    margin: 5px;
    background: #0073aa;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.region-btn:hover {
    background: #005177;
}

.campus-item {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
    margin-bottom: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .gallery-content {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .tab-item {
        padding: 8px 15px;
        font-size: 12px;
    }

}
  /* Add spacing between boxes */
.campus-group {
    display: flex;
    flex-direction: column;
    gap: 30px; /* space between each campus-box */
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  /* Campus box updated */
  .campus-box {
    display: flex;
    flex-direction: row;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px; /* Keeps all boxes at least this tall */
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  .campus-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  
  /* Title section styling */
  .campus-title {
    background: linear-gradient(135deg, #004a8f, #002d5a);
    color: #fff;
    padding: 25px;
    width: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    word-wrap: break-word;
    flex-shrink: 0;
  }
  
  /* Keep title vertically aligned even if text wraps */
  .campus-title > span {
    display: block;
    line-height: 1.3;
  }
  
  /* Details section styling */
  .campus-details {
    background: #fdfdfd;
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .campus-details p {
    margin: 6px 0;
    line-height: 1.6;
    font-size: 15px;
  }
  
  /* Responsive: Stack on smaller screens */
  @media (max-width: 768px) {
    .campus-box {
      flex-direction: column;
      min-height: unset;
    }
  
    .campus-title {
      width: 100%;
      padding: 20px;
    }
  }
  
  /* See More Button Styling */
.see-more-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  
  .see-more-btn {
    padding: 10px 30px;
    background: linear-gradient(135deg, #004a8f, #002d5a);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 15px;
  }
  
  .see-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }

  /* ECE */



.title-underline {
    display: block;
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    margin-bottom: 30px;
}

.center {
    text-align: center;
}

.center-underline {
    margin: 0 auto 30px;
}

.light-underline {
    background-color: #ffffff;
}

/* Introduction Section */
.ece-introduction {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.ece-intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 40px;
}

.highlight-box {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #004a8f, #002d5a);
    border-radius: 10px;
    padding: 30px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.1);
}

.highlight-icon {
    flex: 0 0 80px;
    margin-right: 25px;
}

.ece-icon-image {
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.highlight-text h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.highlight-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Features Section */
.ece-features-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.ece-feature-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ece-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.1);
    border-bottom: 3px solid #ffc107;
}

.ece-feature-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
}

.ece-feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #004a8f, #002d5a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 5px;
    left: 5px;
}

.ece-feature-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px dashed #ffc107;
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.ece-feature-item h3 {
    font-size: 1.3rem;
    color:#004a8f;
    margin-bottom: 15px;
    font-weight: 700;
}

.ece-feature-item p {
    color: #666666;
    line-height: 1.6;
}


.pyp-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 60px 0;
}

.pyp-section-head {
    text-align: center;
    margin-bottom: 40px;
}

.pyp-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004a8f;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.pyp-section-title::after {
    content: '';
    position: absolute;
    width: 60%;
    height: 4px;
    background-color: #ffc107;
    left: 20%;
    bottom: -10px;
}

.pyp-program-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pyp-intro-text {
    max-width: 800px;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    color: #555;
}

.pyp-features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.pyp-feature-box {
    background: linear-gradient(135deg, #004a8f, #002d5a);
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 45, 90, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 45, 90, 0.2);
}

.pyp-feature-header {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    position: relative;
}

.pyp-feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    position: relative;
    padding-left: 15px;
    color: #fff;
}

.pyp-feature-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background-color: #ffc107;
}

.pyp-feature-content {
    padding: 30px;
}

.pyp-feature-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .pyp-section-title {
        font-size: 2rem;
    }

    .pyp-features-container {
        grid-template-columns: 1fr;
    }
}


/* Franchise Advantages */
/* Header Styles */
.se-header {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.se-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.se-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.se-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* Section Styles */
.se-section {
    margin-bottom: 60px;
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.se-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1a2a6c, #b21f1f);
}

.se-section h2 {
    font-family: 'Playfair Display', serif;
    color: #1a2a6c;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.se-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #b21f1f);
    border-radius: 2px;
}

.se-section p {
    color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* School Setup Items */
.se-school-setup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.se-setup-item {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

.se-setup-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.se-setup-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.se-setup-item-content {
    padding: 25px;
}

.se-setup-item h3 {
    color: #1a2a6c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.se-setup-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Locations Table */
.se-locations {
    margin-top: 50px;
}

.se-responsive-table {
    overflow-x: auto;
    margin-top: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.se-locations-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
}

.se-locations-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.se-locations-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #eee;
    color: #555;
    font-size: 0.95rem;
}

.se-locations-table tr:hover td {
    background-color: #f0f4f8;
    color: #1a2a6c;
}

/* Phase Container */
.se-phase-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.se-phase {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.se-phase:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.se-phase-header {
    padding: 20px;
    color: #fff;
    font-weight: 600;
    text-align: center;
    font-size: 1.2rem;
}

.se-phase:nth-child(1) .se-phase-header {
    background: linear-gradient(135deg, #1a2a6c, #3b4b8c);
}

.se-phase:nth-child(2) .se-phase-header {
    background: linear-gradient(135deg, #b21f1f, #d23f3f);
}

.se-phase:nth-child(3) .se-phase-header {
    background: linear-gradient(135deg, #10b981, #30c999);
}

.se-phase-list {
    padding: 20px;
}

.se-phase-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
    align-items: center;
}

.se-phase-number {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
}

.se-phase-content {
    color: #555;
    font-size: 0.95rem;
}

/* Policy Circles */
.se-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.se-policy-circle {
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.se-policy-circle:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.se-policy-circle img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.se-policy-circle h3 {
    color: #1a2a6c;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.se-policy-circle p {
    color: #666;
    font-size: 0.95rem;
}

/* Marketing List */
.se-marketing-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.se-marketing-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f59e0b;
}

.se-marketing-item:hover {
    background-color: #1a2a6c;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* CTA Section */
.se-cta {
    background: linear-gradient(135deg, #1a2a6c, #3b4b8c);
    color: #fff;
    padding: 60px 0;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.se-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.se-cta h2 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 2rem;
    position: relative;
    z-index: 2;
}

.se-cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.se-cta-button {
    display: inline-block;
    background-color: #f59e0b;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.se-cta-button:hover {
    background-color: #fbbf24;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.se-footer {
    background-color: #1a2a6c;
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.se-footer p {
    margin-bottom: 15px;
    opacity: 0.8;
}

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

.se-footer-links a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.se-footer-links a:hover {
    opacity: 1;
    color: #fbbf24;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .se-header h1 {
        font-size: 2.4rem;
    }
    
    .se-section {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .se-header {
        padding: 40px 0;
    }
    
    .se-header h1 {
        font-size: 2rem;
    }
    
    .se-header p {
        font-size: 1rem;
    }
    
    .se-section h2 {
        font-size: 1.7rem;
    }
    
    .se-setup-item img {
        height: 180px;
    }
    
    .se-policy-circle img {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .se-header h1 {
        font-size: 1.8rem;
    }
    
    .se-section {
        padding: 25px;
    }
    
    .se-section h2 {
        font-size: 1.5rem;
    }
    
    .se-marketing-list {
        grid-template-columns: 1fr;
    }
    
    .se-cta {
        padding: 40px 20px;
    }
    
    .se-cta h2 {
        font-size: 1.7rem;
    }
}


         /* Section Styles */
         .fa-section {
            padding: 80px 0;
            position: relative;
        }

        .fa-section:nth-child(even) {
            background-color: #f8fafc;
        }

        .fa-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2563eb, #f59e0b);
        }

        .fa-section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .fa-section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: #1e40af;
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .fa-section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f59e0b, #2563eb);
            border-radius: 2px;
        }

        .fa-section-title p {
            color: #6b7280;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Card Styles */
        .fa-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .fa-card {
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            padding: 40px 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(229, 231, 235, 0.5);
        }

        .fa-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #2563eb, #f59e0b);
        }

        .fa-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .fa-card-icon {
            font-size: 2.5rem;
            color: #2563eb;
            margin-bottom: 25px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .fa-card:hover .fa-card-icon {
            color: #f59e0b;
            transform: scale(1.1);
        }

        .fa-card h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #1f2937;
            text-align: center;
            font-weight: 600;
        }

        .fa-card p {
            color: #6b7280;
            margin-bottom: 15px;
            text-align: center;
            font-size: 1rem;
        }

        .fa-card ul {
            list-style-type: none;
            margin-bottom: 15px;
        }

        .fa-card li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
            color: #6b7280;
            font-size: 0.95rem;
            list-style-type: none;
        }

        .fa-card li::before {
            content: '\f00c';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #10b981;
        }

        /* Benefits Section */
        .fa-benefits {
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(245, 158, 11, 0.03));
            border-radius: 16px;
            padding: 50px;
            margin-top: 40px;
            border: 1px solid rgba(229, 231, 235, 0.5);
        }

        .fa-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .fa-benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            transition: all 0.3s ease;
        }

        .fa-benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

        .fa-benefit-icon {
            flex-shrink: 0;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #f59e0b);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .fa-benefit-text h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #1f2937;
            font-weight: 600;
        }

        .fa-benefit-text p {
            color: #6b7280;
            font-size: 0.95rem;
        }

        /* Process Steps */
        .fa-process {
            margin-top: 60px;
        }

        .fa-steps {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
            position: relative;
        }

        .fa-steps::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #2563eb, #f59e0b);
            z-index: 1;
            opacity: 0.2;
        }

        .fa-step {
            flex: 0 1 200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .fa-step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #2563eb, #f59e0b);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .fa-step h4 {
            font-size: 1.1rem;
            margin-bottom: 12px;
            color: #1f2937;
            font-weight: 600;
        }

        .fa-step p {
            font-size: 0.9rem;
            color: #6b7280;
        }

        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .fa-benefits-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 992px) {
            .fa-section {
                padding: 60px 0;
            }
            
            .fa-section-title h2 {
                font-size: 2.2rem;
            }
            
            .fa-benefits {
                padding: 40px;
            }
            
            .fa-step {
                flex: 0 1 160px;
            }
        }

        @media (max-width: 768px) {
            .fa-section {
                padding: 50px 0;
            }
            
            .fa-section-title h2 {
                font-size: 2rem;
            }
            
            .fa-section-title p {
                font-size: 1rem;
            }
            
            .fa-card {
                padding: 30px 20px;
            }
            
            .fa-benefits {
                padding: 30px;
            }
            
            .fa-benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .fa-steps {
                flex-direction: column;
                align-items: center;
                gap: 30px;
            }
            
            .fa-steps::before {
                display: none;
            }
            
            .fa-step {
                flex: 1 1 auto;
                max-width: 300px;
            }
        }

        @media (max-width: 576px) {
            .fa-section {
                padding: 40px 0;
            }
            
            .fa-section-title h2 {
                font-size: 1.8rem;
            }
            
            .fa-cards {
                grid-template-columns: 1fr;
            }
            
            .fa-benefits {
                padding: 25px 20px;
            }
            
            .fa-benefit-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
            }
            
            .fa-benefit-icon {
                margin-bottom: 15px;
            }
        }

        /* CTA Section */
        .fa-cta-section {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            color: white;
            padding: 80px 0;
        }

        .fa-cta-button {
            display: inline-block;
            background-color: #f59e0b;
            color: white;
            padding: 15px 30px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .fa-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            background-color: #fbbf24;
        }

        .lm-section {
            margin-bottom: 60px;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            background-color: white;
            background: linear-gradient(to bottom right, white, #f9fbfe);
            border: 1px solid rgba(0, 87, 163, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .lm-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, #0057a3, #00a0e9);
        }
        
        .lm-section:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 35px rgba(0, 87, 163, 0.15);
        }
        
        .lm-section h2 {
            color: #0057a3;
            margin-bottom: 20px;
            font-size: 2rem;
            font-weight: 700;
            position: relative;
            padding-bottom: 15px;
        }
        
        .lm-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #0057a3, #00a0e9);
            border-radius: 2px;
        }
        
        .lm-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .lm-feature-item {
            background-color: white;
            padding: 18px 20px;
            border-radius: 12px;
            flex: 1 1 200px;
            transition: all 0.3s ease;
            border-left: 4px solid #0057a3;
            box-shadow: 0 4px 12px rgba(0, 87, 163, 0.08);
            font-weight: 500;
            color: #0057a3;
            background: linear-gradient(to right, white 90%, #f0f7ff);
        }
        
        .lm-feature-item:hover {
            background: linear-gradient(to right, white 80%, #e1eeff);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 87, 163, 0.12);
        }
        
        .lm-module {
            margin-bottom: 50px;
            background-color: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .lm-module:hover {
            transform: translateY(-5px);
        }
        
        .lm-module-header {
            background: linear-gradient(135deg, #0057a3 0%, #003366 100%);
            color: white;
            padding: 20px;
            font-size: 1.5rem;
            text-align: center;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }
        
        .lm-module-content {
            padding: 30px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }
        
        .lm-module-text {
            flex: 1 1 400px;
        }
        
        .lm-module-text h3 {
            color: #0057a3;
            font-size: 1.6rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .lm-module-text h4 {
            color: #003366;
            font-size: 1.2rem;
            margin: 25px 0 15px 0;
            font-weight: 600;
        }
        
        .lm-module-image {
            flex: 1 1 400px;
            text-align: center;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .lm-module-image:hover {
            transform: scale(1.02);
        }
        
        .lm-module-image img {
            max-width: 100%;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }
        
        .lm-module-image:hover img {
            transform: scale(1.03);
        }
        
        .lm-bullet-list {
            list-style-type: none;
            margin-left: 10px;
        }
        
        .lm-bullet-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 12px;
            line-height: 1.6;
        }
        
        .lm-bullet-list li:before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 14px;
            height: 14px;
            background: linear-gradient(135deg, #0057a3 0%, #00a0e9 100%);
            border-radius: 50%;
        }
        
        .lm-highlight {
            background: linear-gradient(to right, #f0f7ff, white);
            border-left: 4px solid #0057a3;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 15px rgba(0, 87, 163, 0.05);
        }
        
        .lm-highlight p {
            margin: 0;
            font-weight: 500;
            color: #0057a3;
            font-size: 1.1rem;
        }
        
        .lm-cta {
            background: linear-gradient(135deg, #0057a3 0%, #003366 100%);
            color: white;
            text-align: center;
            padding: 60px 20px;
            border-radius: 16px;
            margin: 50px 0 30px 0;
            position: relative;
            overflow: hidden;
        }
        
        .lm-cta::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .lm-cta::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .lm-cta h2 {
            color: white;
            margin-bottom: 20px;
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            z-index: 1;
        }
        
        .lm-cta h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: white;
        }
        
        .lm-cta p {
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
        }
        
        .lm-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: white;
            color: #0057a3;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid white;
            font-size: 1.1rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }
        
        .lm-button:hover {
            background-color: transparent;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }
        
        .lm-footer {
            background: linear-gradient(135deg, #003366 0%, #001a33 100%);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 70px;
            border-radius: 50px 50px 0 0;
        }
        
        .lm-footer p {
            margin: 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        .lm-tag {
            display: inline-block;
            background: linear-gradient(to right, #e1eeff, white);
            color: #0057a3;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 5px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(0, 87, 163, 0.1);
            transition: all 0.3s ease;
        }
        
        .lm-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 87, 163, 0.15);
        }
        
        @media screen and (max-width: 768px) {
            .lm-container {
                padding: 15px;
            }
            
            .lm-section {
                padding: 25px;
                margin-bottom: 40px;
            }
            
            .lm-section h2 {
                font-size: 1.6rem;
            }
            
            .lm-feature-item {
                flex: 1 1 100%;
            }
            
            .lm-module-content {
                padding: 20px;
                flex-direction: column;
            }
            
            .lm-module-text, .lm-module-image {
                flex: 1 1 100%;
            }
            
            .lm-cta {
                padding: 40px 20px;
            }
            
            .lm-cta h2 {
                font-size: 1.8rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .lm-section {
                padding: 20px;
            }
            
            .lm-section h2 {
                font-size: 1.4rem;
            }
            
            .lm-module-header {
                font-size: 1.3rem;
                padding: 15px;
            }
            
            .lm-button {
                padding: 12px 30px;
            }
        }

        .tr-section {
            background: white;
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .tr-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .tr-section h2 {
            color: #3a0ca3;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f0f0f0;
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            position: relative;
        }

        .tr-section h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 3px;
            background: #4cc9f0;
        }

        .tr-section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #6c757d;
        }

        .tr-image-container {
            text-align: center;
            margin: 30px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            position: relative;
        }

        .tr-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .tr-image:hover {
            transform: scale(1.03);
        }

        /* Grid system for responsive layout */
        .tr-grid {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .tr-column {
            flex: 1;
            padding: 0 15px;
            min-width: 300px;
            margin-bottom: 30px;
        }

        /* Highlight boxes */
        .tr-highlight-box {
            background: linear-gradient(to right, #f8f9fa, #f0f7ff);
            border-left: 4px solid #4cc9f0;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 0 12px 12px 0;
            transition: all 0.3s ease;
        }

        .tr-highlight-box:hover {
            transform: translateX(5px);
            box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
        }

        .tr-highlight-box h3 {
            color: #3a0ca3;
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }

        /* Footer */
        .tr-footer {
            text-align: center;
            padding: 30px;
            margin-top: 50px;
            color: #6c757d;
            border-top: 1px solid #eaeaea;
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tr-column {
                flex: 100%;
            }
            
            .tr-header h1 {
                font-size: 2rem;
            }
            
            .tr-section {
                padding: 20px;
            }
            
            .tr-image {
                height: 200px;
            }
        }

        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .tr-section {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .tr-section:nth-child(2) { animation-delay: 0.1s; }
        .tr-section:nth-child(3) { animation-delay: 0.2s; }
        .tr-section:nth-child(4) { animation-delay: 0.3s; }
        .tr-section:nth-child(5) { animation-delay: 0.4s; }
        
        /* Image captions */
        .tr-image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 10px 15px;
            font-size: 0.9rem;
            text-align: center;
        }