* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header with Enhanced Texture */
.header {
    background: linear-gradient(135deg, #e96666 0%, #d94545 100%);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(233, 102, 102, 0.3);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
    background-size: 60px 60px, 40px 40px, 80px 80px;
    animation: textureMove 20s linear infinite;
}

@keyframes textureMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(40px); }
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.logo {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    border-radius: 1px;
}

.logo img {
    max-width: 200px;
    margin: 10px 0px 0px 0px;
    padding: 0px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
    transition: all 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.3)) brightness(1.1);
}

.logo .highlight {
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 15px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
	
    border: 1px solid #ffeef0;
}

.nav-links a::before {
    content: '';
 /**   position: absolute; **/
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
  /**     background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); **/
    transition: left 0.3s ease;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
}

.cta-button {
    background: linear-gradient(45deg, #fff, #f8f8f8);
    color: #e96666;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 102, 102, 0.1), transparent);
    transition: left 0.3s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
    background: linear-gradient(45deg, #fff, #f0f0f0);
}

.footer-section img {
    max-width: 180px;
    padding-bottom: 16px;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

/* Hero Section with Organic Texture */
.hero {
    background: linear-gradient(135deg, #ffeef0 0%, #f8d7da 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(233, 102, 102, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(233, 102, 102, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(233, 102, 102, 0.04) 0%, transparent 50%);
    background-size: 800px 600px, 600px 400px, 700px 500px;
    animation: organicFloat 15s ease-in-out infinite alternate;
}

@keyframes organicFloat {
    0% { 
        transform: translateX(0px) translateY(0px) rotate(0deg);
        filter: blur(0px);
    }
    100% { 
        transform: translateX(30px) translateY(-20px) rotate(2deg);
        filter: blur(1px);
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(233,102,102,0.02)"/><circle cx="75" cy="75" r="0.5" fill="rgba(233,102,102,0.03)"/><circle cx="50" cy="10" r="0.8" fill="rgba(233,102,102,0.015)"/><circle cx="10" cy="60" r="1.2" fill="rgba(233,102,102,0.025)"/><circle cx="90" cy="40" r="0.6" fill="rgba(233,102,102,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.6;
    animation: grainMove 25s linear infinite;
}

@keyframes grainMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(100px) translateY(100px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.1rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
}

.hero-text .highlight {
    background: linear-gradient(45deg, #e96666, #d94545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight {
    background: linear-gradient(45deg, #e96666, #d94545);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e96666, transparent);
    opacity: 0.3;
    border-radius: 2px;
}

.hero-text p {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(45deg, rgba(233, 102, 102, 0.1), transparent, rgba(233, 102, 102, 0.05));
    border-radius: 30px;
    z-index: -1;
    animation: imageGlow 3s ease-in-out infinite alternate;
}

@keyframes imageGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 0.8; transform: scale(1.02); }
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 8px 16px rgba(233, 102, 102, 0.1),
        inset 0 1px 0 rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-image img:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.15),
        0 12px 24px rgba(233, 102, 102, 0.2);
}

/* Features Section with Subtle Pattern */
.features {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(233, 102, 102, 0.1);
    background-size: 40px 40px;
    opacity: 0.3;
}

.section-title {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e96666, transparent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: linear-gradient(135deg, #fff 0%, #ffeef0 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 102, 102, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 102, 102, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 6px;
    height: 6px;
    background: #e96666;
    border-radius: 50%;
    opacity: 0.3;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(233, 102, 102, 0.2),
        0 8px 16px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e96666, #d94545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 8px 16px rgba(233, 102, 102, 0.3),
        inset 0 2px 4px rgba(255,255,255,0.2);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, rgba(233, 102, 102, 0.2), transparent, rgba(233, 102, 102, 0.1));
    border-radius: 50%;
    z-index: -1;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.feature-card p {
    color: #5a6c7d;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.03);
}

/* Courses Section with Diamond Pattern */
.courses {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffeef0 0%, #f8d7da 100%);
    position: relative;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="diamond" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,10 40,30 30,50 20,30" fill="none" stroke="rgba(233,102,102,0.05)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23diamond)"/></svg>');
    opacity: 0.6;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.course-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 4px 8px rgba(233, 102, 102, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(233, 102, 102, 0.1);
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e96666, #d94545, #e96666);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(233, 102, 102, 0.2);
}

.course-image {
    height: 300px;
    background: linear-gradient(135deg, #e96666, #d94545);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    overflow: hidden;
}

.course-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.course-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-header {
    padding: 25px 30px 15px;
    position: relative;
}

.course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(233, 102, 102, 0.2), transparent);
}

.course-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0;
    color: #2c3e50;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.course-content {
    padding: 0 30px 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.course-description {
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.03);
	font-weight: 500;
}

.price-section {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-radius: 15px;
    border: 1px solid rgba(233, 102, 102, 0.1);
    position: relative;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(233, 102, 102, 0.05);
    border-radius: 10px;
}

.old-price {
    color: #e74c3c;
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-right: 10px;
    opacity: 0.7;
}

.new-price {
    color: #3498db;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(52, 152, 219, 0.1);
}

.course-cta {
    text-align: center;
    margin-top: auto;
}

.course-cta .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    background: linear-gradient(45deg, #e96666, #d94545);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 102, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.course-cta .cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.3s ease;
}

.course-cta .cta-button:hover::before {
    left: 100%;
}

.course-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(233, 102, 102, 0.4);
}

/* About Section with Geometric Pattern */
.about {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="geo" width="80" height="80" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(233,102,102,0.02)"/><circle cx="60" cy="60" r="1.5" fill="rgba(233,102,102,0.03)"/><rect x="35" y="5" width="10" height="10" fill="rgba(233,102,102,0.01)" transform="rotate(45 40 10)"/><rect x="5" y="35" width="8" height="8" fill="rgba(233,102,102,0.015)" transform="rotate(45 9 39)"/></pattern></defs><rect width="80" height="80" fill="url(%23geo)"/></svg>');
    opacity: 0.4;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.about-text p {
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.7;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.03);
    position: relative;
    padding-left: 20px;
	font-weight:500;
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #e96666;
    border-radius: 50%;
    opacity: 0.6;
}

.about-image {
    text-align: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(233, 102, 102, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
}

.about-image img {
    width: 105%;
   max-width: 1228px;
    
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02) translateY(-5px);
}

/* Methodology Section with Dark Elegance */
.methodology {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(233, 102, 102, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(233, 102, 102, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, rgba(255,255,255,0.01) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.01) 25%, transparent 25%);
    background-size: 600px 600px, 800px 800px, 40px 40px, 40px 40px;
    animation: darkTexture 30s linear infinite;
}

@keyframes darkTexture {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(40px) translateY(40px); }
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.methodology-card {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 102, 102, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.methodology-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(233, 102, 102, 0.3), transparent);
    transition: left 0.5s ease;
}

.methodology-card:hover::before {
    left: 100%;
}

.methodology-card::after {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 8px;
    height: 8px;
    background: linear-gradient(45deg, #e96666, #d94545);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(233, 102, 102, 0.5);
}

.methodology-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 40px rgba(233, 102, 102, 0.4),
        0 8px 16px rgba(0,0,0,0.2),
        inset 0 2px 0 rgba(255,255,255,0.15);
}

.methodology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #e96666, #d94545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 
        0 8px 16px rgba(233, 102, 102, 0.4),
        inset 0 2px 4px rgba(255,255,255,0.2),
        0 0 20px rgba(233, 102, 102, 0.3);
    position: relative;
}

.methodology-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(233, 102, 102, 0.3), transparent, rgba(233, 102, 102, 0.2));
    border-radius: 50%;
    z-index: -1;
    animation: methodologyPulse 3s ease-in-out infinite;
}

@keyframes methodologyPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.15); }
}

.methodology-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.methodology-card h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e96666, transparent);
    border-radius: 1px;
}

.methodology-card p {
    color: #bdc3c7;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Quote Section with Luxury Texture */
.quote-section {
    background: linear-gradient(135deg, #e96666, #d94545);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.1) 2px, transparent 2px),
        radial-gradient(circle at 70% 60%, rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%);
    background-size: 120px 120px, 80px 80px, 60px 60px, 60px 60px;
    animation: luxuryFloat 25s linear infinite;
}

@keyframes luxuryFloat {
    0% { transform: translateX(0) translateY(0) rotate(0deg); }
    100% { transform: translateX(60px) translateY(-30px) rotate(2deg); }
}

.quote-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.quote-section h2::before,
.quote-section h2::after {
    content: '"';
    font-size: 4rem;
    opacity: 0.3;
    position: absolute;
    top: -20px;
}

.quote-section h2::before {
    left: -50px;
}

.quote-section h2::after {
    right: -50px;
}

.quote-section p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

/* Footer with Professional Finish */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(0deg, rgba(233, 102, 102, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(233, 102, 102, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(233, 102, 102, 0.1);
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #e96666, transparent);
    border-radius: 2px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #e96666;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    position: relative;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #e96666;
    border-radius: 1px;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    position: relative;
    padding-left: 20px;
}

.footer-section p::before,
.footer-section a::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #e96666;
}

.footer-section a:hover {
    color: #e96666;
    transform: translateX(5px);
    text-shadow: 2px 2px 4px rgba(233, 102, 102, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(233, 102, 102, 0.2);
    color: #95a5a6;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e96666, transparent);
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 1.6rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .quote-section h2::before,
    .quote-section h2::after {
        display: none;
    }
    
    .footer-section {
        padding: 15px;
    }
}

/* Enhanced Animation Effects */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }

/* Scroll-triggered animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Luxury Loading Animation */
@keyframes luxuryShimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.luxury-shimmer {
    background: linear-gradient(
        90deg,
        transparent,
        rgba(233, 102, 102, 0.1),
        transparent
    );
    background-size: 200% 100%;
    animation: luxuryShimmer 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #e96666, #d94545);
    border-radius: 6px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #d94545, #c73e3e);
}

/* Selection styling */
::selection {
    background: rgba(233, 102, 102, 0.2);
    color: #2c3e50;
}

::-moz-selection {
    background: rgba(233, 102, 102, 0.2);
    color: #2c3e50;
}

/* Nova Seção: Nossa Paixão */
.nossa-paixao {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff 0%, #ffeef0 100%);
    position: relative;
    overflow: hidden;
}

.nossa-paixao::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(233, 102, 102, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(233, 102, 102, 0.02) 0%, transparent 50%);
    background-size: 800px 800px;
    animation: paixaoFloat 20s ease-in-out infinite alternate;
}

@keyframes paixaoFloat {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(-20px); }
}

.paixao-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.paixao-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(45deg, #e96666, #d94545);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: white;
    box-shadow: 
        0 10px 20px rgba(233, 102, 102, 0.3),
        inset 0 2px 4px rgba(255,255,255,0.2);
    position: relative;
}

.paixao-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, rgba(233, 102, 102, 0.2), transparent, rgba(233, 102, 102, 0.1));
    border-radius: 50%;
    z-index: -1;
    animation: iconPulse 3s ease-in-out infinite;
}

.paixao-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    position: relative;
}

.paixao-content h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #e96666, transparent);
    border-radius: 2px;
}

.paixao-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.paixao-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(233, 102, 102, 0.1);
    position: relative;
}

.paixao-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 50px;
    background: linear-gradient(180deg, #e96666, transparent);
    border-radius: 2px 0 0 2px;
}

.paixao-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(233, 102, 102, 0.1);
}

.paixao-item p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
	font-weight: 500;
}

/* Como Funciona Section */
.como-funciona {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

.como-funciona::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(233, 102, 102, 0.03) 49%, rgba(233, 102, 102, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(233, 102, 102, 0.03) 49%, rgba(233, 102, 102, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    opacity: 0.6;
}

/* Condições Gerais e Política de Cancelamento */
.condicoes-gerais,
.politica-cancelamento {
    padding: 80px 0;
    position: relative;
}

.condicoes-gerais {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
}

.politica-cancelamento {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.condicoes-gerais::before,
.politica-cancelamento::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(233, 102, 102, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(233, 102, 102, 0.01) 0%, transparent 40%);
    background-size: 600px 600px;
}

.condicao-card,
.politica-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(233, 102, 102, 0.1);
    position: relative;
}

.condicao-card::before,
.politica-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100px;
    background: linear-gradient(180deg, #e96666, transparent);
    border-radius: 3px 0 0 3px;
}

.condicao-card p,
.politica-card p {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.condicao-card p:last-child,
.politica-card p:last-child {
    margin-bottom: 0;
}

.condicao-card strong,
.politica-card strong {
    color: #e96666;
    font-weight: 600;
}

/* Ajustes para o Feature Card Expandido */
.feature-card-expanded {
    grid-column: span 1;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    color: #5a6c7d;
    line-height: 1.5;
	font-weight: 500;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #e96666;
    font-size: 0.9rem;
}

/* Responsividade para as novas seções */
@media (max-width: 992px) {
    .paixao-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card-expanded {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nossa-paixao,
    .como-funciona,
    .condicoes-gerais,
    .politica-cancelamento {
        padding: 60px 0;
    }
    
    .paixao-content h2,
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .condicao-card,
    .politica-card {
        padding: 25px;
    }
}

/* --- INÍCIO DA NOVA SEÇÃO: DEPOIMENTOS --- */

.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    position: relative;
}

/* Estilos do Carrossel de Depoimentos */
.carousel-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 80px; /* Espaço entre o carrossel e a grade de certificados */
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
     flex: 0 0 33.33%; /* 3 colunas em telas grandes (100 / 3) */
    box-sizing: border-box;
    padding: 0 15px;
}

.carousel-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    cursor: pointer;
}

.carousel-item img:hover {
   /** transform: scale(1.05); **/
    box-shadow: 0 15px 40px rgba(233, 102, 102, 0.2);
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none; /* Mantivemos sem borda */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    box-shadow: none; /* <<-- AQUI: Removemos a sombra/borda */
    color: #e96666;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Adicionamos uma borda sutil no hover para dar feedback visual */
.carousel-button:hover {
    background: #e96666;
    color: white;
    transform: translateY(-50%) scale(1.1);
    border: 2px solid rgba(255, 255, 255, 0.5); 
}

.carousel-button.prev {
    left: 15px; /* <<-- AQUI: Movemos o botão para dentro da área visível */
}

.carousel-button.next {
    right: 15px; /* <<-- AQUI: Movemos o botão para dentro da área visível */
/* Estilos da Grade de Certificados */
.certificate-grid-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
}


/* Responsividade para a nova seção */
@media (max-width: 1200px) {
    .carousel-item {
        flex: 0 0 25%; /* 4 colunas */
    }
}

@media (max-width: 992px) {
    .carousel-item {
        flex: 0 0 33.33%; /* 3 colunas */
    }
    .certificate-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 60px 0;
    }
    .carousel-item {
        flex: 0 0 50%; /* 2 colunas */
    }
    .carousel-button {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .carousel-button.prev {
        left: 10px;
    }
    .carousel-button.next {
        right: 10px;
    }
    .certificate-grid {
        grid-template-columns: 1fr;
    }
}
/* --- FIM DA NOVA SEÇÃO: DEPOIMENTOS --- */
