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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Logo Styles (as provided) */
.brand {
    display: inline-block;
    padding: 5px;
    margin: 20px 20px;
    border-top: 2px solid rgb(175, 167, 167);
    border-left: 2px solid rgb(175, 167, 167);
    box-shadow: 2px 2px rgb(196, 45, 45);
    background-color: white;
    color: black;
    position: relative;
}

.brand .brand-text {
    color: black;
    font-size: 20px;
    font-family: Monospace, 'Courier New', Courier, monospace;
    font-weight: 550;
    letter-spacing: 0.8px;
    display: inline-block;
}

.brand:hover {
    background-color: white;
    box-shadow: 2px 2px red;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    cursor: pointer;
}

.brand:hover .brand-text {
    color: black;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.nav-links li a:hover {
    color: #c22d2d;
}

.cta-button {
    background-color: #c22d2d;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a42525;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #1a1a1a;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23c22d2d' fill-opacity='0.15'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm9-10v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3Cpath d='M6 5V0H5v5H0v1h5v94h1V6h94V5H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
        linear-gradient(45deg, #1a1a1a 0%, #2d2d2d 100%);
    background-position: center;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Add animated circles in the background */
.hero::before {
    content: '';
    position: absolute;
    width: 200vw;
    height: 200vh;
    top: -100vh;
    left: -100vw;
    background: radial-gradient(circle, #c22d2d 0%, transparent 10%),
                radial-gradient(circle, #c22d2d 0%, transparent 10%);
    background-position: 0 0, 50px 50px;
    background-size: 100px 100px;
    animation: backgroundMove 30s linear infinite;
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Add a tech-themed decorative element */
.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23c22d2d' opacity='0.2'%3E%3Cpath d='M20 18c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2H0v2h24v-2h-4zM4 6h16v10H4V6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.1;
}

/* Add animation for the background movement */
@keyframes backgroundMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

/* Add a subtle glow effect to the hero text */
.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(194, 45, 45, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 5px rgba(194, 45, 45, 0.3);
}

/* Add hover effect to hero buttons */
.hero-buttons .primary-button,
.hero-buttons .secondary-button {
    position: relative;
    overflow: hidden;
}

.hero-buttons .primary-button::after,
.hero-buttons .secondary-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(35deg);
    transition: transform 0.5s ease;
}

.hero-buttons .primary-button:hover::after,
.hero-buttons .secondary-button:hover::after {
    transform: translate(-50%, -50%) rotate(35deg) translateY(-100%);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.primary-button, .secondary-button {
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.primary-button {
    background-color: #c22d2d;
    color: white;
}

.secondary-button {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.primary-button:hover, .secondary-button:hover {
    transform: translateY(-2px);
}

/* Features Section */
.about-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card i {
    font-size: 2.5rem;
    color: #c22d2d;
    margin-bottom: 1rem;
}

/* Courses Section */
.courses-section {
    padding: 5rem 0;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.course-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.course-content {
    padding: 1.5rem;
}

.course-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #c22d2d;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 3rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 2rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #c22d2d;
}

/* Packages Section */
.packages-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #c22d2d;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-price {
    margin: 1.5rem 0;
    text-align: center;
}

.original-price {
    color: #666;
    text-decoration: line-through;
    font-size: 1.1rem;
    display: block;
}

.discounted-price {
    color: #c22d2d;
    font-size: 2rem;
    font-weight: bold;
    display: block;
    margin: 0.5rem 0;
}

.savings {
    background-color: #e8f5e9;
    color: #2e7d32;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    display: inline-block;
}

.package-features {
    list-style: none;
    margin: 1.5rem 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.package-features li i {
    color: #c22d2d;
    margin-right: 10px;
}

.package-button {
    display: block;
    background-color: #c22d2d;
    color: white;
    text-align: center;
    padding: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.package-button:hover {
    background-color: #a42525;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Footer Contact Styles */
.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #fff;
}

.contact-list i {
    margin-right: 15px;
    color: #c22d2d;
    font-size: 1.2rem;
    margin-top: 3px;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-list a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #c22d2d;
}

/* Update Footer Links Styles */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #c22d2d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        height: 300px;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .contact-list {
        margin-bottom: 1.5rem;
    }
} 