/* styles.css */
/* Global Styles */
:root {
    --primary-color: #4a6bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn.primary {
    background-color: var(--primary-color);
    color: white;
}

.btn.primary:hover {
    background-color: #3a56d4;
    transform: translateY(-2px);
}

.btn.secondary {
    background-color: var(--secondary-color);
    color: white;
}

.btn.secondary:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--dark-color);
}

.logo h1 span {
    color: var(--primary-color);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Hero Section */
.hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 3rem;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #6c757d;
}

/* Training Section */
.training-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.training-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.training-info {
    flex: 1;
}

.training-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.training-info ul {
    margin: 1.5rem 0;
}

.training-info li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.training-info li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.training-image {
    flex: 1;
    text-align: center;
}

.training-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Development Section */
.development-section {
    padding: 5rem 0;
    background-color: white;
}

.development-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.development-info {
    flex: 1;
}

.development-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.development-info ul {
    margin: 1.5rem 0;
}

.development-info li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.development-info li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.development-image {
    flex: 1;
    text-align: center;
}

.development-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Consultancy Section */
.consultancy-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.consultancy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.consultancy-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.consultancy-card:hover {
    transform: translateY(-10px);
}

.consultancy-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.consultancy-card h3 {
    margin-bottom: 1rem;
}

/* Placements Section */
.placements-section {
    padding: 5rem 0;
    background-color: white;
}

.placement-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.placement-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.placement-card:hover {
    transform: translateY(-10px);
}

.placement-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Internship Section */
.internship-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.internship-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.internship-info {
    flex: 1;
}

.internship-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.internship-info ul {
    margin: 1.5rem 0;
}

.internship-info li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.internship-info li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.internship-image {
    flex: 1;
    text-align: center;
}

.internship-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Project Section */
.project-section {
    padding: 5rem 0;
    background-color: white;
}

.project-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.project-info {
    flex: 1;
}

.project-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.project-info ul {
    margin: 1.5rem 0;
}

.project-info li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.project-info li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.project-image {
    flex: 1;
    text-align: center;
}

.project-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: white;
}




.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo h3 span {
    color: var(--primary-color);
}

.footer-logo p {
    color: #adb5bd;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #adb5bd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
}

.footer-newsletter h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-newsletter p {
    color: #adb5bd;
    margin-bottom: 1rem;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 5px 0 0 5px;
}

.footer-newsletter button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #3a56d4;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid #495057;
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {

    .hero .container,
    .training-content,
    .development-content,
    .internship-content,
    .project-content,
    .about-content,
    .contact-content {
        flex-direction: column;
    }

    .hero-content,
    .training-info,
    .development-info,
    .internship-info,
    .project-info,
    .contact-form {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 2rem;
    }

    .feature-card {
        padding: 15px 12px;
    }

    .feature-card i {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .feature-card p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 0;
    }
}


/* Extra small screens */
@media (max-width: 400px) {
    .features-grid {
        gap: 10px;
    }

    .feature-card {
        padding: 12px 8px;
    }

    .feature-card i {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .feature-card h3 {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .feature-card p {
        font-size: 10px;
        line-height: 1.3;
    }
}