/* header secton started  */

/* Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #f1c40f;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --text-color: #333;
    --white: #fff;
    --transition: all 0.3s ease;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color:#EEEEEE;
}

/* Header Styles */
.header {
background-color: #041C32;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    transition: var(--transition);
    background-color: whitesmoke;
}

.logo:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
}

.logo-text h1 {
    font-size: 1.3rem;
    font-weight: 700;
    color: whitesmoke;
    line-height: 1.2;
}

.logo-text p {
    font-size: 0.9rem;
    color: whitesmoke;
    font-weight: 400;
}

/* Navigation Styles */
.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: whitesmoke;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
  background-color: #182848;
    transition: var(--transition);
}

.nav-link:hover {
    color:rgb(164, 164, 164);
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    transition: var(--transition);
}

.contact-btn:hover {
    background-color: darkkhaki;
    color: black !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.contact-btn::after {
    display: none;
}

/* Mobile Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* Mobile Menu Active State */
.menu-toggle.active .hamburger {
    background-color: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-links {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        /* color: #041C32; */
        height: calc(100vh - 80px);
        background-color: #0a3d62;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 2rem;
        padding-top: 3rem;
        transition: 0.3s;
    }

    .navbar.active {
        left: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-btn {
        margin-top: 1rem;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header {
    animation: fadeInDown 0.5s ease forwards;
}

/* Header Scroll Effect */
.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}











/* header section ended  */



/* hero section started  */


/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Main Container */
.fajar-main-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background-color: lightslategrey; */
    
}

/* Content Wrapper */
.fajar-content-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* Text Section */
.fajar-text-section {
    flex: 1;
    animation: fajarFadeInLeft 1s ease-out;
}

.fajar-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: #2c3e50;
}

.fajar-accent-text {
    color: #182848;
    display: inline-block;
    position: relative;
}

.fajar-accent-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;
    animation: fajarUnderlineGrow 1.5s ease-out forwards;
}

.fajar-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

/* Buttons */
.fajar-button-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.fajar-btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.fajar-primary-btn {
    background-color: #3498db;
    color: white;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.fajar-primary-btn:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.fajar-secondary-btn {
    background-color: white;
    color: #3498db;
    border: 2px solid #3498db;
}

.fajar-secondary-btn:hover {
    background-color: #f0f8ff;
    transform: translateY(-3px);
}

/* Image Section */
.fajar-image-section {
    flex: 1;
    position: relative;
    animation: fajarFadeInRight 1s ease-out;
}

.fajar-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.fajar-animated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.fajar-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(41, 128, 185, 0.1));
}

.fajar-decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.fajar-decor-icon-1,
.fajar-decor-icon-2,
.fajar-decor-icon-3 {
    position: absolute;
    color: rgba(52, 152, 219, 0.7);
    font-size: 2rem;
    animation: fajarFloat 6s infinite ease-in-out;
}

.fajar-decor-icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.fajar-decor-icon-2 {
    top: 60%;
    left: 70%;
    animation-delay: 1s;
}

.fajar-decor-icon-3 {
    top: 30%;
    left: 80%;
    animation-delay: 2s;
}

/* Animations */
@keyframes fajarFadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fajarFadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fajarUnderlineGrow {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

@keyframes fajarFloat {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Hover Effects */
.fajar-image-container:hover .fajar-animated-image {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .fajar-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .fajar-main-heading {
        font-size: 2rem;
        text-align: center;
    }
    
    .fajar-description {
        text-align: center;
    }
    
    .fajar-button-group {
        justify-content: center;
    }
    
    .fajar-image-container {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .fajar-main-container {
        padding: 1.5rem;
        margin-top: 100px;
        
    }
    .fajar-image-section{
        width: 100%;
    }
    .fajar-image-container img{
        width: 100% ;
    }
    .fajar-main-heading {
        font-size: 1.8rem;
    }
    
    .fajar-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .fajar-image-container {
        height: 250px;
    }
}








/* hero section end */


/* form section started  */




.main-container {
    max-width: 100%;
    margin: -100px auto;
    padding: 40px 20px;

}

.content-wrapper {
    display: flex;
    gap: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.left-content {
    flex: 1;
    padding: 40px;
}

.right-form {
    flex: 1;
    /* background: #D1D8BE; */
    background: #EEEEEE;
    padding: 40px;
    color: white;
}

.main-heading {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #4b6cb7, #182848);
    border-radius: 2px;
}

.features-list {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: rgba(75, 108, 183, 0.1);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 1.5rem;
    color: #4b6cb7;
    margin-top: 5px;
}

.feature-item h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

.closing-text {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

/* Form Styles */
.form-container {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #d24e4e;
}

.demo-text {
    color: #182848;
}

.heartbeat {
    animation: heartbeat 1.5s infinite;
    color: #db4545;
}

.form-header p {
    opacity: 0.9;
    color: #1f3011;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
    /* color: red; */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: none;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: black;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 1px solid #041C32;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #041c32;

}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #EEEEEE;
    border-color: #2875bd;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #1f3011;
    font-size: 1rem;
}

.submit-btn {
 padding: 12px;
    background: #3F4F44;
    text-decoration: none;
    color: black;
    border: none;
    font-size: large;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
     background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(125, 122, 117, 0.4);
}

/* Animations */
@keyframes heartbeat {
    0% { transform: scale(1); }
    14% { transform: scale(1.1); }
    28% { transform: scale(1); }
    42% { transform: scale(1.1); }
    70% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
        width: 100%;
    }
    
    .left-content,
    .right-form {
        padding: 30px;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .form-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 20px 15px;
    }
    
    .left-content,
    .right-form {
        padding: 25px;
    }
    
    .main-heading {
        font-size: 1.5rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .feature-icon {
        margin-top: 0;
    }
}



/* form section section ended */




/* courses section started  */

/* Base Styles */

.courses-container h1{

    text-align: center;
    color: #182848;
    position: relative;
    font-size: 2.2rem;

    margin-bottom: 50px;
}



.courses-container {
    max-width: 1400px;
    margin: 0px auto;
    padding: 40px 20px;
    background-color: #EEEEEE;
    border-top: 1px solid white;
}

/* .section-title {
    color: #182848;
} */

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.course-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: all 0.5s ease;
}

.course-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--secondary-color);
}

.learn-more-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .courses-container {
        padding: 40px 15px;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
}



/* courses section ended */


/* about us section started */


/* About Section */

.about-container {
    max-width: 100%;
    /* margin: 60px auto; */
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    margin-top: 30px;
    margin-bottom: 10px;
    /* background-color: #E5E1DA; */
    background-color: #DBDBDB;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 500px; /* Limited height */
}

/* Typography */
.about-section h2{
    color: #0a3d62;
    padding: 20px;
    font-size: xx-large;
}

.section-title {
    font-size: 2.2rem;
    /* color: #2c3e50; */
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20;
    width: 80px;
    height: 4px;
    /* background: linear-gradient(90deg, #3498db, #8e44ad); */
    border-radius: 2px;
}

.about-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #555;
}

.hadith-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #0a3d62;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #0a3d62;
    background-color: rgba(52, 152, 219, 0.1);
    position: relative;
}

.hadith-quote span {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: normal;
}

/* Image Styles */
.image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(142, 68, 173, 0.1));
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.decorative-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 2.5rem;
    animation: float 6s infinite ease-in-out;
}

.decorative-icon:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.decorative-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

/* Button */
.read-more-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #182848;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #A2AF9B;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.read-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Hover Effects */
.image-wrapper:hover .featured-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 400px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 50px 0;
    }
    
    .about-image {
        height: 300px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .hadith-quote {
        font-size: 1rem;
        padding: 15px;
    }
}



/* about us section ended */




/* ready section started */


/* Section Styles */
.ready-to-start {
    /* padding: 100px 0; */
    background-color:#F5F5F5;
    /* width: 100vw; */

    max-width: 100%;
    /* margin: 60px auto; */
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    margin-top: 30px;
    margin-bottom: 10px;



}

.container {
    margin: 0 auto;
    padding: 0 30px;
    max-width: 1400px;
}

.content-wrapper {
    width: 100vw;
      display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

/* Image Section - 50% width */
.image-section {
     flex: 1;
    animation: fajarFadeInLeft 1s ease-out;
}

.image-container {
    
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(142, 68, 173, 0.1));
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-elements i {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    font-size: 3rem;
    animation: float 6s infinite ease-in-out;
}

.icon-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.icon-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

/* Content Section - 50% width */
.content-section {
      flex: 1;
    position: relative;
    animation: fajarFadeInRight 1s ease-out;
}

.section-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    border-radius: 2px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 40px;
}

.benefits-list li {
    font-size: 1.2rem;
    margin-bottom: 18px;
    color: #555;
    display: flex;
    align-items: center;
}

.benefits-list i {
    color: #27ae60;
    margin-right: 15px;
    font-size: 1.4rem;
}

.register-btn {
    display: inline-block;
    padding: 16px 35px;
    background: linear-gradient(90deg, #3498db, #8e44ad);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(52, 152, 219, 0.3);
    font-size: 1.1rem;
}

.register-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.register-btn i {
    transition: transform 0.3s ease;
}

.register-btn:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(5deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Hover Effects */
.image-container:hover .feature-image {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .image-section,
    .content-section {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .image-container {
        height: 400px;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .content-section {
        padding: 40px 0 0;
        text-align: center;
    }
    
    .section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .benefits-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .ready-to-start {
        padding: 80px 0;
    }
    
    .container {
        padding: 0 25px;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .benefits-list li {
        font-size: 1.1rem;
    }
    
    .register-btn {
        padding: 14px 30px;
    }
}

@media (max-width: 576px) {
    .ready-to-start {
        padding: 60px 0;
    }
    
    .image-container {
        height: 300px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .benefits-list li {
        font-size: 1rem;
    }
    
    .floating-elements i {
        font-size: 2.5rem;
    }
}

/* ready section ended */

/* footer section started */


/* Base Styles */


/* Footer Styles */
.fajar-footer {
    background: #15212d;
    color: #fff;
    padding: 50px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.logo-section {
    display: flex;
    align-items: center;
}

.academy-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f5f6f8;
    margin-right: 15px;
}

.academy-tagline {
    font-size: 1.2rem;
    color: #fff;
    opacity: 0.9;
}

.footer-buttons {
    display: flex;
    gap: 15px;
}

.footer-btn {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-btn:hover {
    background: #9AA6B2;
    color: #0a3d62;
    transform: translateY(-3px);
}

/* Main Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 1.3rem;
    color: #EEEEEE;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #fad390;
}

/* Quick Links */
.links-list {
    list-style: none;
}

.links-list li {
    margin-bottom: 12px;
}

.links-list a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.links-list a:hover {
    opacity: 1;
    color: #fad390;
    transform: translateX(5px);
}

.links-list i {
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Social Links */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #fad390;
    color: #0a3d62;
    transform: translateY(-5px);
}

.contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    opacity: 0.8;
}

.contact-info i {
    margin-right: 10px;
    color: #fad390;
    width: 20px;
}

/* Demo Form */

.fdemo-request-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ffooter-section demo-form h3{
    color: #d24e4e;
}

.fform-group input,
.fform-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.fform-group input::placeholder,
.fform-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.fform-group input:focus,
.fform-group textarea:focus {
    outline: none;
    border-color: #fad390;
    background: rgba(255, 255, 255, 0.15);
}

.fform-group textarea {
    min-height: 100px;
    resize: vertical;
}

.fsubmit-btn {
    padding: 12px;
    background: #F1F1F1;
    text-decoration: none;
    color: black;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fsubmit-btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(125, 122, 117, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #fad390;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .footer-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .academy-logo {
        font-size: 2rem;
    }
    
    .academy-tagline {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .footer-btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}




/* whatsapp */
/* Font Awesome for the Icon */
    @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

    .whatsapp-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
    }

    .whatsapp-btn {
        background-color: #25d366;
        color: white;
        width: 65px;
        height: 65px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 35px;
        box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.3);
        text-decoration: none;
        position: relative;
        transition: transform 0.3s ease;
        /* Attention grabbing animation */
        animation: pulse-animation 2s infinite;
    }

    .whatsapp-btn:hover {
        transform: scale(1.1);
        color: white;
    }

    /* Pulse Effect */
    @keyframes pulse-animation {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Tooltip styling */
    .tooltip-text {
        visibility: hidden;
        width: 120px;
        background-color: #333;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px;
        position: absolute;
        right: 80px;
        font-family: sans-serif;
        font-size: 14px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .whatsapp-btn:hover .tooltip-text {
        visibility: visible;
        opacity: 1;
    }