/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header Styles */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

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

.logo-img {
    height: 80px;
    width: auto;
    background-color: #f0f0f0;
    border: 2px #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #007bff;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
    .hero {
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-bottom: 0;
  padding-bottom: 0;
}

.hero-content {
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-img {
    width: 100%;
    background-color: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.course-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.course-header {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.course-image {
    flex: 1;
    margin-right: 2rem;
}

.course-img {
    width: 100%;
    height: 200px;
    background-color: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
    border-radius: 10px;
    object-fit: cover;
}

.course-info {
    flex: 1;
    text-align: center;
}

.course-badge {
    background-color: rgba(255,255,255,0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.practice-text {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.training-text {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.course-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.course-duration {
    font-size: 1.2rem;
    opacity: 0.9;
}

.course-content {
    padding: 2rem;
}

.course-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-description {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.course-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.course-includes {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.certificate-logo {
    width: 100px;
    height: 60px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    margin: 1rem auto;
    display: block;
}

.btn-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
    font-weight: 500;
}

.btn-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Master Program Section */
.master-program {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.master-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.master-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.master-details {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.master-info {
    display: flex;
    gap: 3rem;
}

.master-duration, .master-price {
    text-align: center;
}

.label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
}

.master-certification {
    text-align: center;
}

.university-logo {
    width: 120px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
    border: 2px dashed rgba(255,255,255,0.5);
    margin: 1rem auto;
    display: block;
    border-radius: 10px;
}

.master-btn {
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    background-color: rgba(255,255,255,0.2);
    border: 2px solid white;
}

.master-btn:hover {
    background-color: white;
    color: #667eea;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
}

.about-image {
    flex: 1;
}

.about-img {
    width: 100%;
    height: 300px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 15px;
    object-fit: cover;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.community-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.btn-join {
    font-family: 'Raleway', sans-serif;
    background-color: white;
    color: #28a745;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 25px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-join:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Training Section */
.training-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.training-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 3rem;
}

.training-img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
    color: white;
    padding: 80px 0;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.contact-item {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-form-section {
    flex: 1;
    text-align: center;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}

.social-link:hover {
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .course-header {
        flex-direction: column;
        text-align: center;
    }
    
    .course-image {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .master-details {
        flex-direction: column;
        gap: 2rem;
    }
    
    .master-info {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
        text-align: center;
    }
    
    .community-title {
        font-size: 2rem;
    }
    
    .training-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .course-title {
        font-size: 1.5rem;
    }
    
    .master-title {
        font-size: 2rem;
    }
    
    .community-title {
        font-size: 1.8rem;
    }
    
    .training-title {
        font-size: 1.8rem;
    }
}

/* Placeholder image styles */
img[src*="placeholder"] {
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    text-align: center;
}

img[src*="placeholder"]:before {
    content: "Image Placeholder";
    position: absolute;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap');

.menu-text {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    font-weight: 200; /* Regular weight */
    color: #1a1a33; /* Similar dark navy color from image */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.menu-text:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(102, 167, 170, 0.4));
    animation: logoGlow 1.5s ease-in-out infinite alternate;
}

.menu-text .dropdown-icon {
    margin-left: 5px;
    font-size: 18px;
}

/* Instagram Logo Hover Effect */
.contact-item img[src*="instagram"] {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item img[src*="instagram"]:hover {
    content: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Instagram_icon.png/64px-Instagram_icon.png');
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Call/WhatsApp Icon Hover Effect */
.contact-item img[src*="call"] {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item img[src*="call"]:hover {
    content: url('https://upload.wikimedia.org/wikipedia/commons/thumb/6/6b/WhatsApp.svg/64px-WhatsApp.svg.png');
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.4));
}

/* ACLAM Logo Hover Animations */



@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 8px 16px rgba(102, 167, 170, 0.4)) brightness(1);
    }
    100% {
        filter: drop-shadow(0 12px 24px rgba(102, 167, 170, 0.6)) brightness(1.1);
    }
}

/* ACLAM Content Images Animation */
.aclam-img-animated {
    transition: all 0.5s ease;
}

.aclam-img-animated:hover {
    transform: scale(1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2)) brightness(1.1);
    animation: floatAnimation 3s ease-in-out infinite;
}


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


@keyframes bounceRotate {
    0%, 100% {
        transform: scale(1.05) rotate(0deg);
    }
    25% {
        transform: scale(1.07) rotate(2deg);
    }
    75% {
        transform: scale(1.07) rotate(-2deg);
    }
}


@keyframes floatAnimation {
    0%, 100% {
        transform: scale(1.05) translateY(0px);
    }
    50% {
        transform: scale(1.05) translateY(-10px);
    }
}

/* Rotating Circular Text Component */
.circular-text-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-badge {
    position: relative;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #66a7aa 0%, #4f8c8f 100%);
    border-radius: 50%;
    border: 8px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateText 15s linear infinite;
}

.circular-text {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.circular-text svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-text text {
    fill: white;
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: normal;
    text-transform: lowercase;
    letter-spacing: 1px;
}

.needle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 60px;
    background-color: white;
    transform: translate(-50%, -50%);
    border-radius: 1px;
    transform-origin: center bottom;
}

.needle::before {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background-color: white;
    border-radius: 50%;
}

@keyframes rotateText {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Hover effect for circular text */
.circular-text-container:hover .circular-badge {
    animation-duration: 8s;
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}
