
:root {
    --primary-color: #1e88e5;
    --secondary-color: #f9a825;
    --background-color: #fdfdfd;
    --text-color: #212121;
    --white-color: #ffffff;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --transition-speed: 0.3s;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1.5rem;
}

header {
    background: var(--white-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links a {
    margin: 0 1rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color var(--transition-speed) ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: black;
    font-size: 1.5rem;
    cursor: pointer;
}

.hamburger .fa-times {
    display: none;
}

.hamburger.active .fa-bars {
    display: none;
}

.hamburger.active .fa-times {
    display: block;
}

/* Fixed Search Bar */
.search-bar {
    text-align: center;
    margin: 2rem 0;
    position: relative;
}

.search-bar input {
    width: 70%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 1rem;
    transition: all var(--transition-speed) ease;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-bar input:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 4px 20px rgba(30,136,229,0.2);
    transform: translateY(-2px);
}

        .search-bar::after {
            content: '\f002';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: 25%;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.2rem;
            pointer-events: none;
            color: var(--primary-color);
        }

.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: var(--gradient-hero);
    overflow: hidden;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 12s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInDown 1s ease-out;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .cta {
    animation: fadeInUp 1s ease-out 1s;
    animation-fill-mode: both;
}

.cta a {
    padding: 12px 25px;
    margin: 0 10px;
    background: var(--secondary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.card {
    padding: 2rem;
    border-radius: 16px;
    background: var(--white-color);
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: all var(--transition-speed) ease;
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.card:hover::before {
    left: 100%;
}

        .card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        /* Icon Colors */
        .fas.fa-book-open { color: #e74c3c; } /* Red for education */
        .fas.fa-tasks { color: #3498db; } /* Blue for tasks */
        .fas.fa-brain { color: #9b59b6; } /* Purple for mind maps */
        .fas.fa-video { color: #e67e22; } /* Orange for videos */
        .fas.fa-id-card { color: #27ae60; } /* Green for cards */
        .fas.fa-file-alt { color: #34495e; } /* Dark blue for files */
        .fas.fa-calculator { color: #f39c12; } /* Yellow for calculator */
        .fas.fa-calendar-alt { color: #e74c3c; } /* Red for calendar */
        .fas.fa-certificate { color: #f1c40f; } /* Gold for certificates */
        .fas.fa-pencil-alt { color: #2c3e50; } /* Dark for writing */
        .fas.fa-school { color: #3498db; } /* Blue for schools */
        .fas.fa-briefcase { color: #27ae60; } /* Green for business */
        .fas.fa-university { color: #8e44ad; } /* Purple for institutes */
        .fas.fa-check-circle { color: #27ae60; } /* Green for success */
        .fas.fa-arrow-up { color: #ffffff; } /* White for back to top */
        .fas.fa-bars, .fas.fa-times { color: #333333; } /* Dark for menu */
        
        /* Social Media Icons */
        .fab.fa-instagram { color: #e4405f; } /* Instagram pink */
        .fab.fa-youtube { color: #ff0000; } /* YouTube red */
        .fab.fa-facebook-f { color: #1877f2; } /* Facebook blue */
        .fab.fa-whatsapp { color: #25d366; } /* WhatsApp green */
        .fab.fa-telegram { color: #0088cc; } /* Telegram blue */

.card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

#why ul {
    list-style: none;
    max-width: 600px;
    margin: auto;
}

#why li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

        #why i {
            margin-right: 1rem;
            font-size: 1.5rem;
        }

        /* Why Section Icon Colors */
        #why .fas.fa-check-circle { color: #27ae60; } /* Green for success */

.faq-item {
    background: var(--white-color);
    margin-bottom: 1rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    padding: 1.5rem;
}

.faq-item h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* --- NEW ENHANCED FOOTER --- */
        .site-footer {
            background-color: #2c3e50;
            color: #bdc3c7;
            padding: 4rem 0 2rem 0;
            font-size: 0.9rem;
        }

        /* Footer Social Icons - White Background */
        .site-footer .social-icons a {
            background-color: #ffffff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

.site-footer .container {
    max-width: 1100px;
    margin: auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-about,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
}

.footer-about .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 1rem;
}

.footer-about .logo span {
    color: var(--secondary-color);
}

.site-footer h4 {
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.site-footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

        .social-icons a {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #ffffff;
            color: var(--white-color);
            font-size: 1.2rem;
            text-decoration: none;
            transition: background-color var(--transition-speed), transform var(--transition-speed);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .social-icons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }

        /* Social Icons Hover Effects */
        .social-icons a:hover .fab.fa-instagram { color: #e4405f; }
        .social-icons a:hover .fab.fa-youtube { color: #ff0000; }
        .social-icons a:hover .fab.fa-facebook-f { color: #1877f2; }
        .social-icons a:hover .fab.fa-whatsapp { color: #25d366; }
        .social-icons a:hover .fab.fa-telegram { color: #0088cc; }

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    margin: 0;
    color: #7f8c8d;
}

/*service page*/
.services-section {
  padding: 4rem 1rem;
  background-color: #f7f9fc;
}

.services-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.services-section .section-title {
  font-size: 2.4rem;
  color: #1e88e5;
  margin-bottom: 1rem;
}

.services-section .section-desc {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  color: #444;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-card {
  padding: 1.8rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #333;
}

        .service-card i {
            margin-right: 8px;
        }

        /* Service Card Icon Colors */
        .service-card .fas.fa-school { color: #3498db; } /* Blue for schools */
        .service-card .fas.fa-briefcase { color: #27ae60; } /* Green for business */
        .service-card .fas.fa-university { color: #8e44ad; } /* Purple for institutes */

.service-card p {
  color: #555;
  font-size: 0.95rem;
}

.ask-developer-btn {
  display: inline-block;
  padding: 14px 30px;
  background-color: #f9a825;
  color: white;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ask-developer-btn:hover {
  background-color: #d68900;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Search Results Styling */
.search-results {
    position: absolute;
    top: 100%;
    left: 15%;
    right: 15%;
    margin-top: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e0e0e0;
}

.search-results.active {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-result-item {
    padding: 0.8rem;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border-radius: 6px;
    margin-bottom: 0.2rem;
}

.search-result-item:hover {
    background-color: #f8f9fa;
    transform: translateX(5px);
}

.search-result-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

        .search-result-item i {
            font-size: 1.2rem;
            width: 20px;
        }

        /* Search Result Icon Colors */
        .search-result-item .fas.fa-book-open { color: #e74c3c; }
        .search-result-item .fas.fa-tasks { color: #3498db; }
        .search-result-item .fas.fa-brain { color: #9b59b6; }
        .search-result-item .fas.fa-video { color: #e67e22; }
        .search-result-item .fas.fa-id-card { color: #27ae60; }
        .search-result-item .fas.fa-file-alt { color: #34495e; }
        .search-result-item .fas.fa-calculator { color: #f39c12; }
        .search-result-item .fas.fa-calendar-alt { color: #e74c3c; }
        .search-result-item .fas.fa-certificate { color: #f1c40f; }
        .search-result-item .fas.fa-pencil-alt { color: #2c3e50; }

.search-result-item span {
    font-weight: 500;
    color: #333;
}

.no-results {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 1rem;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background: var(--white-color);
        padding: 1rem 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        text-align: center;
        padding: 1rem;
        width: 100%;
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

            .search-bar input {
            width: 90%;
        }

        .search-results {
            left: 5%;
            right: 5%;
        }

    /* Footer responsive adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .site-footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .cta a {
        padding: 10px 20px;
        display: block;
        margin: 10px auto;
        width: fit-content;
    }

    .cta a:last-child {
        margin-bottom: 0;
    }
} 













@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

.about-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow: hidden; /* Ensures animations don't cause scrollbars */
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* --- Image Styles & Animation --- */
.about-image-wrapper {
  flex: 0 0 40%; /* Allocates 40% width to the image container */
  animation: float-in-left 1.5s ease-out forwards;
}

.about-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  /* Soft floating animation for the transparent PNG */
  animation: float 4s ease-in-out infinite;
}

/* --- Content Styles & Animation --- */
.about-content {
  flex: 1; /* Takes the remaining space */
  animation: slide-in-right 1.5s ease-out forwards;
  opacity: 0;
  transform: translateX(50px);
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: #1e88e5; /* Dark Blue */
}

.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, #141313, #040404);
  border-radius: 2px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.highlight-orange {
  font-weight: 600;
}

.highlight-blue {
  font-weight: 600;
}

/* --- Tagline with Icons --- */
.about-tagline {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  font-weight: 600;
  font-size: 16px;
  color: #444;
}

.about-tagline span {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.about-tagline span:hover {
  transform: translateY(-5px); /* Adds a subtle lift effect on hover */
}

.about-tagline .fas {
  font-size: 20px;
}

/* Specific icon colors */
.fa-lightbulb { color: #f1c40f; } /* Red */
.fa-robot { color: #0096c7; } /* Blue */
.fa-user-check { color: #2ecc71; } /* Green */

/* --- Keyframe Animations --- */

/* For the image wrapper */
@keyframes float-in-left {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* For the content section */
@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* For the transparent image's floating effect */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image-wrapper {
    margin-bottom: 40px;
  }
  
  .about-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-tagline {
    justify-content: center;
    flex-wrap: wrap; /* Allows taglines to wrap on smaller screens */
  }
}