@charset "UTF-8";
/* CSS Document */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
			font-size:1.125em;
            line-height: 1.6;
            color: #000000;
            background-color: #f8f3ee;
        }
		.float1 {float: right}
		.float2 {float: left}
		.clear {clear: both}
		.center {text-align: center}
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }
 .container-red {
     border:3px solid #DB0003;       
	 max-width: 800px;
            margin: 0 auto;
            padding: 20px;
        }

        /* Header */
        .header {
            text-align: center;
            margin-bottom: 40px;
        }

        .logo {
            width: 150px;
            height: auto;
            margin-bottom: 20px;
        }
.ai {font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
	font-weight: 900;}
	/*color: #b7e07c !important;
  font-style: normal;
text-shadow: 
        -1px -1px 0 #313274,
         1px -1px 0 #313274,
        -1px  1px 0 #313274,
         1px  1px 0 #313274;}*/
        /* Main Headlines */
        .main-headline {
            font-size: 2.2em;
            font-weight: 700;
            color: #7030a0;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        .sub-headline {
            font-size: 1.875em;
            font-weight: 400;
            color: #0033cc;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .tagline {
            font-size: 1.1em;
            margin-bottom: 40px;
            font-style: italic;
			color:#212abd;
        }

        .tagline strong {
            font-weight: 700;
        }

        /* Robot Section */
        .robot-section {
            text-align: center;
            margin-bottom: 50px;
        }
        .robot-text {
            font-size: 1.3em;
            color: #20409a;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .robot-subtext {
            font-size: 1.3em;
            color: #354da1;
            font-weight: 600;
            font-style: italic;
        }
/* Styled Blockquote */
.styled-blockquote {
    position: relative;  
    padding: 30px 40px 30px 80px;
    margin: 20px 0;
    border-radius: 8px;
	background-color:#d5d7f8;
    min-width: 600px;
}

.styled-blockquote::before {
    content: '"';
    position: absolute;
    left: 20px;
    top: 10px;
    font-size: 80px;
    color: #7CB342;
    font-weight: bold;
    line-height: 1;
    font-family: Georgia, serif;
}
.styled-blockquote::after {
    content: '"';
    position: absolute;
    right: 10px;
    bottom: 0;
    font-size: 80px;
    color: #7CB342;
    font-weight: bold;	
    line-height: 1;
    font-family: Georgia, serif;
}
.styled-blockquote p {
    margin: 0;
    font-size: 22px;
    color: #212abd;
    font-style: italic;
    font-weight: 600;
    line-height: 1.4;
}
        /* Arrow Animation */
        .arrow-container {
            text-align: center;
            margin: 40px 0;
        }

        .arrow {
            width: 60px;
            height: auto;
            animation: bounce 2s infinite;
        }

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

        /* Course Info Box */
        .course-box {
            background-color: #c5cce9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        .course-title {
            font-size: 1.2em;
            font-weight: 700;
            color: #212abd;
            margin-bottom: 20px;
            text-align: center;
        }

        .rescue-mission {
            font-size: 1em;
            margin-bottom: 20px;
        }

        .rescue-mission strong {
            font-weight: 700;
        }

        .course-list {
            margin-bottom: 30px;
        }

        .course-list ul {
            list-style: none;
            padding-left: 0;
        }

        .course-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .course-list li::before {
            content: "•";
            color: #20409a;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Learning Section */
        .learning-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .lightbulb {
            width: 60px;
            height: auto;
            margin-bottom: 20px;
        }

        .learning-title {
            font-size: 1.3em;
            font-weight: 700;
            color: #212abd;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .learning-list ul {
            list-style: none;
            padding-left: 0;
            text-align: left;
            max-width: 600px;
            margin: 0 auto;
        }

        .learning-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .learning-list li::before {
            content: "•";
            color: #20409a;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* What You Get Box */
        .benefits-box {
            background-color: #c5cce9;
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 40px;
        }

        .benefits-title {
            font-size: 1.2em;
            font-weight: 700;
            color: #20409a;
            margin-bottom: 20px;
        }

        .benefits-list ul {
            list-style: none;
            padding-left: 0;
        }

        .benefits-list li {
            margin-bottom: 10px;
            padding-left: 25px;
            position: relative;
        }

        .benefits-list li::before {
            content: "✓";
            color: #20409a;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Who This Is For */
        .target-audience {
            margin-bottom: 30px;
        }

        .audience-title {
            font-size: 1.2em;
            font-weight: 700;
            color: #212abd;
            margin-bottom: 15px;
        }

        .audience-list ul {
            list-style: none;
            padding-left: 0;
        }

        .audience-list li {
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .audience-list li::before {
            content: "•";
            color: #20409a;
            font-weight: bold;
            position: absolute;
            left: 0;
        }

        /* Call to Action */
        .cta-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .cta-text {
            font-size: 1.1em;
            margin-bottom: 30px;
            font-style: italic;
        }

        .cta-button-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .hand-icon {
            width: 40px;
            height: auto;
        }

        .cta-button {
            background-color: #f6eb14;
            color: #212abd;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            font-family: 'Open Sans', sans-serif;
        }
        .cta-button:hover {
    background-color: #212abd;
    color: white !important;
}

.cta-button2 {
            background-color: #212abd;
            color: #ffffff;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            font-family: 'Open Sans', sans-serif;
        }

        .cta-button2:hover {
    background-color: #ffffff;
    color: #212abd !important;
}

.cta-button3 {
            background-color: #b7d87f;
            color: #212abd;
            padding: 15px 30px;
            border: none;
            border-radius: 5px;
            font-size: 1.1em;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: background-color 0.3s ease;
            font-family: 'Open Sans', sans-serif;
        }

        .cta-button:hover {
    background-color: #212abd;
    color: white !important;
}

        .limited-seats {
            font-weight: 700;
            color: #20409a;
            margin-bottom: 20px;
        }

        .embed-note {
            font-style: italic;
            color: #666;
            margin-bottom: 30px;
        }

        /* Links */
        a {
            color: #212abd;
            text-decoration: underline;
        }

        a:hover {
            color: #7030a0;
        }

        /* Footer */
        .footer {
            text-align: center;
            font-size: 0.9em;
            color: #666;
            border-top: 1px solid #ddd;
            padding-top: 20px;
        }
/* video */
.video-container-portrait {
    position: relative;
    width: 100%;
    max-width: 400px; /* Adjust based on your needs */
    aspect-ratio: 9/16; /* Portrait ratio */
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
}

.video-container-portrait video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* or 'contain' to show full video */
}
/* social icons */
.social {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social li {
    margin: 0 15px; /* 30px total space between icons */
}

.social a {
    display: inline-block;
    text-decoration: none;
    border: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

.social img {
    width: 45px;
    height: 45px;
    display: block;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .social li {
        margin: 10px;
    }
}
/* Mobile responsive */
@media (max-width: 600px) {
    .video-container-portrait {
        max-width: 300px;
    }
}
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 15px;
            }
.container-red {
                padding: 15px;
            }
            .main-headline,
            .sub-headline {
                font-size: 1.8em;
            }       

            .robot-text,
            .robot-subtext {
                font-size: 1.1em;
            }

            .course-box,
            .benefits-box {
                padding: 20px;
            }

            .cta-button-container {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .main-headline,
            .sub-headline {
                font-size: 1.5em;
            }

            .robot-section img {
               width: 90%;
				height:auto;
				float:none;
				text-align:center !important; 
            }

            .logo {
                width: 120px;
            }

            .arrow {
                width: 45px;
            }

            .lightbulb {
                width: 45px;
            }
        }