/* Modern footer styles */
.main-footer {
    background: linear-gradient(90deg, #0f2027 60%, #00eaff22 100%);
    color: #fff;
    padding: 44px 0 18px 0;
    margin-top: 48px;
    border-top: 2px solid #00eaff33;
    font-size: 1.08rem;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    gap: 32px;
}
.footer-brand {
    flex: 1 1 220px;
    margin-bottom: 18px;
}
.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00eaff;
    margin-bottom: 6px;
    text-align: center;
}
.footer-motto {
    font-size: 1.08rem;
    color: #e0f7fa;
    text-align: center;
}
.footer-contact {
    flex: 1 1 220px;
    margin-bottom: 18px;
}
.footer-contact p {
    margin: 6px 0;
}
.footer-social {
    flex: 1 1 120px;
    display: flex;
    gap: 28px;
    align-items: center;
    margin-bottom: 18px;
    justify-content: center;
}
.footer-social .social-link svg {
    width: 32px;
    height: 32px;
    transition: transform 0.2s, filter 0.2s;
}
.footer-social .social-link:hover svg {
    transform: scale(1.18) rotate(-6deg);
    filter: drop-shadow(0 0 6px #00eaff);
}
.footer-bottom {
    text-align: center;
    color: #b2ebf2;
    font-size: 0.98rem;
    margin-top: 18px;
    letter-spacing: 0.2px;
}
@media (max-width: 800px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 12px;
    gap: 12px;
  }
  .main-footer {
    padding: 32px 0 10px 0;
  }
}
/* Larger CTA buttons */
.cta {
    font-size: 1.18rem;
    padding: 16px 38px;
    border-radius: 32px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.cta.secondary {
    font-size: 1.13rem;
    padding: 16px 38px;
    border-radius: 32px;
}
/* Improved hero section appearance */
.hero {
    padding: 56px 0 40px 0;
}
.hero-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 56px;
    min-height: 340px;
}
.hero-content {
    flex: 1 1 0;
    min-width: 260px;
    padding-left: 32px;
}
.hero-title {
    font-size: 2.7rem;
    margin-bottom: 10px;
}
.motto {
    font-size: 1.3rem;
    color: #00eaff;
    margin-bottom: 8px;
}
.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #e0f7fa;
}
.hero-actions {
    margin-top: 28px;
    margin-bottom: 48px;
    display: flex;
    gap: 18px;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 32px;
}
.hero-logo-highlight {
    background: rgba(0, 234, 255, 0.10);
    border: 2.5px solid #00eaff55;
    border-radius: 36px;
    padding: 24px 24px 14px 24px;
    margin-left: 0;
    box-shadow: 0 6px 32px #00eaff33;
    display: inline-block;
    transition: box-shadow 0.3s;
}
.hero-logo-highlight:hover {
    box-shadow: 0 12px 48px #00eaff66;
}
.hero-logo-img {
    max-width: 300px;
    border-radius: 28px;
    box-shadow: 0 8px 32px #00eaff44;
    background: transparent;
    display: block;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    min-height: unset;
  }
  .hero-content {
    padding-left: 0;
  }
  .hero-image {
    justify-content: center;
    width: 100%;
    padding-right: 0;
  }
}
/* Hero section flex layout: content left, logo right */
.hero-flex {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}
.hero-content {
    flex: 1 1 0;
    min-width: 260px;
}
.hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .hero-image {
    justify-content: center;
    width: 100%;
  }
}
/* Add spacing below hero action buttons */
.hero-actions {
    margin-top: 24px;
    margin-bottom: 40px;
}
/* Hero logo image style for separation */
.hero-logo-img {
    max-width: 260px;
    border-radius: 24px;
    box-shadow: 0 8px 32px #00eaff44;
    background: transparent;
    display: block;
}
/* Highlighted logo container for hero section */
.hero-logo-highlight {
    background: rgba(0, 234, 255, 0.08);
    border: 2px solid #00eaff44;
    border-radius: 32px;
    padding: 18px 18px 10px 18px;
    margin-left: 24px;
    box-shadow: 0 4px 24px #00eaff22;
    display: inline-block;
    transition: box-shadow 0.3s;
}
.hero-logo-highlight:hover {
    box-shadow: 0 8px 40px #00eaff55;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #0f2027, #2c5364);
    color: #fff;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.7);
    padding: 1rem 2rem;
    position: relative;
}
.logo img {
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 10px #00eaff;
}
ul.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}
ul.nav-menu li a {
    color: #00eaff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
ul.nav-menu li a:hover {
    color: #ffd700;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    color: #00eaff;
    cursor: pointer;
    margin-left: 1rem;
}
/* Dropdown styles */
.dropdown {
    position: relative;
}
.dropbtn {
    background: #00eaff;
    color: #222;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}
.dropbtn:hover {
    background: #ffd700;
    color: #0f2027;
}
.dropdown-content {
    display: none;
    position: absolute;
    background: #222;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    top: 110%;
    left: 0;
}
.dropdown-content a {
    color: #00eaff;
    padding: 0.7rem 1rem;
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #333;
    transition: background 0.3s, color 0.3s;
}
.dropdown-content a:last-child {
    border-bottom: none;
}
.dropdown-content a:hover {
    background: #ffd700;
    color: #222;
}
.dropdown:hover .dropdown-content {
    display: block;
}
@media (max-width: 900px) {
    ul.nav-menu {
        flex-direction: column;
        gap: 0;
        background: rgba(0,0,0,0.95);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: none;
        padding: 1rem 0;
    }
    ul.nav-menu.active {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
}
.hero {
    text-align: center;
    margin-top: 8vh;
    animation: fadeIn 2s ease;
}
.hero h1 {
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.motto {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffd700;
    animation: pulse 2s infinite;
}
.cta {
    background: #00eaff;
    color: #222;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: background 0.3s, color 0.3s;
}
.cta:hover {
    background: #ffd700;
    color: #0f2027;
}
/* Dynamic Animations */
.animate-fade {
    opacity: 0;
    animation: fadeIn 1.2s forwards;
}
.animate-slide {
    opacity: 0;
    transform: translateX(-40px);
    animation: slideIn 1.2s forwards;
}
.animate-pop {
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 1.2s forwards;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
@keyframes slideIn {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes popIn {
    to { opacity: 1; transform: scale(1); }
}
/* Projects Section */
.projects-section {
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.5);
    text-align: center;
}
.contact-section {
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1100px;
}
.contact-flex {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-form-card {
    flex: 1 1 320px;
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 2rem;
    color: #fff;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: #333;
    color: #fff;
}
.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}
.contact-form .cta {
    width: 100%;
    padding: 0.8rem;
    font-size: 1.1rem;
    border-radius: 20px;
    background: #00eaff;
    color: #222;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s, color 0.3s;
}
.contact-form .cta:hover {
    background: #ffd700;
    color: #0f2027;
}
.contact-info-card {
    flex: 1 1 220px;
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 2rem;
    color: #fff;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.contact-info-card h3 {
    color: #00eaff;
    margin-bottom: 1rem;
}
.contact-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.contact-info-card li {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.contact-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.contact-social .social-link {
    color: #00eaff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
.contact-social .social-link:hover {
    color: #ffd700;
}
@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 1.2rem 1rem;
        min-width: 90vw;
        max-width: 95vw;
    }
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    justify-items: center;
}
.service-card {
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.service-card img.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px #00eaff;
    background: #fff;
}
.service-card h3 {
    font-size: 1.2rem;
    color: #ffd700;
    margin-bottom: 0.7rem;
}
.service-card p {
    font-size: 1rem;
    color: #eee;
}
.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px #00eaff44;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        max-width: 95vw;
    }
}
.about-section {
    padding: 3rem 2rem;
    background: rgba(0,0,0,0.4);
    border-radius: 20px;
    margin: 2rem auto;
    max-width: 1100px;
}
.about-flex {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.about-img {
    flex: 1 1 220px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-img img.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    box-shadow: 0 0 20px #00eaff;
    object-fit: cover;
    background: #fff;
}
.about-info {
    flex: 2 1 350px;
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 2rem;
    color: #fff;
    min-width: 280px;
}
.about-info h3 {
    font-size: 1.7rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
.about-info p {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 0.7rem;
}
.company-details {
    margin-top: 1.5rem;
    background: #111;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 12px #00eaff22;
}
.company-details h4 {
    color: #00eaff;
    margin-bottom: 0.7rem;
}
.company-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.company-details li {
    font-size: 1rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
    .about-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .about-info {
        padding: 1.2rem 1rem;
    }
    .about-img img.profile-img {
        width: 120px;
        height: 120px;
    }
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    justify-items: center;
}
.portfolio-card {
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 1.5rem;
    width: 100%;
    max-width: 340px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.portfolio-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px #00eaff;
    background: #fff;
}
.portfolio-card h3 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 0.7rem;
    text-align: center;
}
.portfolio-card p {
    font-size: 1rem;
    color: #eee;
    text-align: center;
}
.portfolio-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px #00eaff44;
}
@media (max-width: 900px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-card {
        max-width: 95vw;
    }
}
.projects-section h2 {
    font-size: 2.2rem;
    color: #00eaff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}
.projects-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}
.project-card {
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 1.5rem;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.project-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 32px #00eaff44;
}
.project-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 0 10px #00eaff;
    background: #fff;
}
.project-card h3 {
    font-size: 1.3rem;
    color: #ffd700;
    margin-bottom: 0.7rem;
}
.project-card p {
    font-size: 1rem;
    color: #eee;
}
@media (max-width: 900px) {
    .projects-list {
        flex-direction: column;
        align-items: center;
    }
    .project-card {
        width: 90vw;
        max-width: 350px;
    }
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { color: #ffd700; }
    50% { color: #00eaff; }
}
