 /* Page Background Gradient with Font Stack */
body, .main-content { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif; background: linear-gradient(to bottom, #e0e7ff 0%, #c0d8ff 40%, #99ccff 100%); background-attachment: fixed; /* Ensures gradient stays fixed on scroll */ margin: 0;
}
/* Ensure the full page takes up the gradient background */
.main-content { min-height: 100vh; /* Ensures the gradient spans the viewport height */ display: flex; justify-content: center; align-items: center; padding: 20px; /* Optional: add padding for spacing */
} /* Container for the floating login link */ .custom-login-link { position: fixed; /* Fixed position to keep it floating */ top: 20px; right: 20px; font-size: 16px; font-weight: bold; z-index: 1000; /* Ensures it stays above other elements */ } /* Styling for the login link */ .custom-login-link a { color: #f2f2f2; /* Customize the color as desired */ text-decoration: none; padding: 8px 12px; border: 1px solid #f2f2f2; border-radius: 4px; } /* Hover effect for the login link */ .custom-login-link a:hover { background-color: #2e86de; color: #fff; }
/* Section Header Styling */
.section-header { font-size: 20px; /* Slightly larger for distinction */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #4f4f4f; /* Deep silver color */ margin-bottom: 15px; letter-spacing: 1px; /* Slightly spaced out letters for style */ padding-bottom: 5px; border-bottom: 1px solid #c0c0c0; /* Silver border for distinction */
}
/* Short Description Styling */
.short-description { background-color: #f9f5e6; /* Light, warm yellow-tinted background */ font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; color: #333333; padding: 15px; border-radius: 8px; border: 1px solid #eeeeee; box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); line-height: 1.6; position: relative; font-style: italic; /* Optional italic for emphasis */
}
/* Starting Point Title Styling */
.starting-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Ending Point Title Styling */
.ending-point-title { font-size: 18px; /* Slightly larger than the main text */ font-weight: bold; font-family: inherit; /* Use unified font stack */ color: #a83232; /* Deep reddish color for contrast */ text-align: center; margin-bottom: 10px; /* Space below the title */
}
/* Full Description Styling */
.full-description { font-size: 16px; font-family: inherit; /* Use unified font stack */ margin-bottom: 15px; background-color: #fcfcfc; /* Very light gray for a subtle contrast */ color: #2e2e2e; /* Dark gray text color */ padding: 15px; border-radius: 8px; /* Soft rounded corners for visual appeal */ border: 1px solid #eeeeee; /* Lighter border for a softer look */ box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1); /* Light shadow for depth */ line-height: 1.6; /* Increased line-height for readability */
}
/* Project Title Styling */
.project-title { font-size: 26px; font-weight: bold; font-family: inherit; /* Use unified font stack */ text-align: center; margin: 20px 0; color: #2e2e2e; background: linear-gradient(to right, #2b6cb0, #1a3e59); /* Dark blue to navy gradient */ -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-transform: uppercase; letter-spacing: 1.5px; text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2); padding-bottom: 5px; border-bottom: 1px solid #cccccc;
}
/* Teaser and Fade Effect Styling */
.teaser { overflow: hidden; max-height: 10em; /* Controls height of teaser for truncation */ position: relative; padding-bottom: 1.5em; /* Adds space for the fade overlay */
}
.fade-effect { position: absolute; bottom: 0; left: 0; height: 6em; /* Increased height to make the fade more visible */ width: 100%; z-index: 10; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 60%, rgba(255, 255, 255, 1) 100%); pointer-events: none; /* Allows clicks through the fade effect */
}
/* Centering Button Container */
.button-container { display: flex; justify-content: center; margin-top: 10px;
}
/* Expand Button Styling */
.expand-btn { display: inline-block; width: 150px; height: 30px; font-size: 14px; color: #333333; background: linear-gradient(to bottom, #f0f0f0, #c0c0c0); /* Silver gradient background */ border: 1px solid #999999; border-radius: 5px; cursor: pointer; font-weight: 600; /* Semi-bold */ box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; line-height: 30px; /* Center text vertically */
}
/* Hover Effect For Expand */
.expand-btn:hover { background: linear-gradient(to bottom, #e0e0e0, #b0b0b0); /* Slightly darker silver on hover */ box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Full Description Container */
.full-description-container { position: relative; /* Reference for sticky positioning */ padding-bottom: 60px; /* Extra space for the close button at the bottom */
}
/* Close Button Styling */
.close-btn { width: 120px; height: 30px; font-size: 14px; color: #ffffff; background: linear-gradient(to bottom, #b33939, #8b1a1a); border: 1px solid #732020; border-radius: 5px; cursor: pointer; font-weight: bold; box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); transition: background 0.3s ease, box-shadow 0.3s ease; position: sticky; bottom: 10px; right: 10px; z-index: 1000;
}
/* Mobile Styles for Close Button */
@media (max-width: 768px) { .close-btn { position: fixed; bottom: 10px; left: 50%; transform: translateX(-50%); z-index: 1000; }
}
.close-btn:hover { background: linear-gradient(to bottom, #a82b2b, #611313); box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}
/* Divider Styling for Mobile */
@media (max-width: 768px) { .divider { height: 3px; background: linear-gradient(to right, #4a90e2, #d9534f); border-radius: 2px; margin: 30px 0; box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); } .teaser { max-height: 7em; padding-bottom: 2em; } .expand-btn, .close-btn { width: 100%; height: 40px; } .story-block { padding: 20px; margin-bottom: 20px; border: 2px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15); } .custom-login-link { position: fixed; /* Keeps it fixed while scrolling */ bottom: 20px; /* Moves to the bottom on mobile */ right: 10px; /* Adjusts from right edge */ font-size: 14px; /* Slightly smaller font size */ } .custom-login-link a { background-color: rgba(26, 62, 92, 0.2); /* Dark blue with 80% opacity */ color: #fff; /* White text */ padding: 10px 14px; /* Adjusted padding for button look */ border: none; /* Removes border */ border-radius: 6px; /* Rounded corners */ }
} *{} #IE-warning { display: none; position: fixed; width: 100%; height: 100%; z-index: 9999; background: white; } .IE-warning-message { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); text-align: center; } /* --- 1. Global Builder Bypass & Reset --- */ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important; background: linear-gradient(to bottom, #e0e7ff, #99ccff) !important; background-attachment: fixed !important; min-height: 100vh !important; margin: 0 !important; padding: 0 !important; color: #33475b !important; } .main-content { display: block !important; width: 100% !important; min-height: 100vh !important; background: transparent !important; padding: 0 !important; } .container { max-width: 900px; margin: 0 auto !important; padding: 20px; text-align: center; } /* --- 2. Header & Typography --- */ .logo { width: 140px; height: 140px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); margin-bottom: 20px; } .pre-headline { font-size: 1.1em; font-style: italic; color: #4b5a6b; display: block; margin-bottom: 8px; } h1 { font-size: 3em; line-height: 1.1; margin-bottom: 20px; color: #33475b; } /* Global H3 */ h3 { font-size: 1.8em; color: #33475b; margin-top: 30px; margin-bottom: 15px; font-weight: 700; } /* SPECIFIC FIX: Tightened Clarity Block Header */ .clarity-block h3 { margin-top: 0 !important; } .subtitle { font-size: 1.4em; color: #4b5a6b; line-height: 1.5; margin-bottom: 40px; } /* Preservation of inline spacing for bold tags */ strong { display: inline; font-weight: 700; } /* --- 3. Layout Blocks --- */ .video-box { background: white; padding: 15px; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.15); margin-bottom: 40px; } .clarity-block { background: rgba(255, 255, 255, 0.6); padding: 30px; border-radius: 15px; margin-bottom: 40px; } .offer-card { background: white; border-radius: 20px; padding: 45px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: left; margin-bottom: 40px; } .offer-card h2 { text-align: center; color: #567dff; margin-top: 0; font-size: 2.1em; } .feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 35px 0; } .feature-item { background: #f8faff; padding: 20px; border-radius: 12px; border: 1px solid #dce4ff; } .reiteration-box { background: #f0f4ff; border-left: 5px solid #567dff; padding: 25px; margin: 30px 0; border-radius: 0 12px 12px 0; } /* --- 4. Pricing & Buttons --- */ .price-section { text-align: center; margin-top: 40px; } .price-tag { font-size: 3.5em; font-weight: bold; color: #33475b; margin: 10px 0; display: block; } .cta-button { display: inline-block; background: #ff6b6b !important; color: white !important; text-decoration: none !important; font-size: 1.6em; font-weight: bold; padding: 22px 40px; border-radius: 50px; text-align: center; box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3); transition: transform 0.2s; } .cta-button:hover { transform: scale(1.03); background: #ee5253 !important; } .cta-subtext { font-size: 0.9em; color: #4b5a6b; margin-top: 25px !important; display: block !important; opacity: 0.8; } /* --- 5. Spaced Modal Layout --- */ .modal-overlay { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(51, 71, 91, 0.9); backdrop-filter: blur(5px); } .modal-content { background-color: white; margin: 10% auto; padding: 50px 40px !important; border-radius: 20px; width: 90%; max-width: 500px; text-align: center; box-shadow: 0 20px 50px rgba(0,0,0,0.3); position: relative; } .modal-content h2 { color: #33475b; margin-top: 0; margin-bottom: 25px !important; font-size: 2em; } .modal-content p { font-size: 1.15em !important; color: #4b5a6b !important; line-height: 1.8 !important; margin-bottom: 35px !important; } .close-modal { position: absolute; top: 15px; right: 20px; font-size: 28px; cursor: pointer; color: #abb8c3; } /* --- 6. Bio Section --- */ .bio-section { background: rgba(255,255,255,0.6); padding: 40px; border-radius: 20px; margin-top: 60px; display: flex; align-items: center; gap: 30px; text-align: left; } .bio-image { flex: 0 0 150px; width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 3px solid white; } /* --- 7. Mobile Styles (Confirmed) --- */ @media (max-width: 768px) { h1 { font-size: 2.2em; } .feature-grid { grid-template-columns: 1fr; } /* Ensures 6 features stack vertically */ .bio-section { flex-direction: column; text-align: center; } .modal-content { padding: 40px 20px !important; } }
