 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
    font-family: "Iceland", sans-serif;
    font-weight: 400;
    font-style: normal;
}
.firstfont{
    font-family: 'Conthrax', sans-serif;
        font-size: 20px;
 
}
.secondfont{
    font-family: 'Armstrong', sans-serif;
    color: white;
    font-size: 20px !important;
}


:root {
    --primary-yellow: #FFD700;
    --secondary-orange: #FF8C00;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #cccccc;
    --accent-blue: #00bfff;
    --glass-bg: rgba(26, 26, 26, 0.8);
    --glass-border: rgba(255, 215, 0, 0.2);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.4s ease;
    mix-blend-mode: difference;
}

.cursor.hover {
    transform: scale(1.5);
    border-color: var(--secondary-orange);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-size: 28px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary-yellow);
    display: flex;  /* nav space less*/
    align-items: center;
    font-size: 20px;
    /* animation: pulse 2s infinite; */
}

.logo-text {
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    /* -webkit-background-clip: text; */
    background-clip: text;
    color: transparent;
  
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

nav a:hover {
    color: var(--primary-yellow);
}

nav a.active {
    color: var(--primary-yellow);
}

nav a.active::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--primary-yellow);
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 24px;
}

/* Hero Carousel */
.hero-section {
    margin-top: 80px;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    filter: brightness(0.4);
}


.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slide-text {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

.carousel-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 3;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-yellow);
    transform: scale(1.3);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
    transform: translateY(-50%);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(26, 26, 26, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
}

/* Section Common Styles */
.section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 20px;
    position: relative;
}

.section-title span {
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 700px;
    margin: 40px auto 60px;
    font-size: 18px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    align-items: center;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 17px;
    text-align: center;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--glass-bg);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-text {
    color: var(--text-muted);
    margin-top: 10px;
    font-size: 16px;
}

/* Home Robots Showcase */
.home-robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Robot Card */
.home-robot-card {
    background-color: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;     
}

.home-robot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.home-robot-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.home-robot-card:hover .home-robot-img {
    transform: scale(1.05);
}

.home-robot-info {
    padding: 25px;
}

.home-robot-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.home-robot-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.home-robot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.home-robot-feature {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* ✅ Responsive Design */
@media (max-width: 1024px) {
    .home-robots-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .home-robots-grid {
        grid-template-columns: 1fr;   /* single column on tablets/mobiles */
    }

    .home-robot-info {
        padding: 15px;
        text-align: center;
    }

    .home-robot-info h3 {
        font-size: 20px;
    }

    .home-robot-info p {
        font-size: 14px;
    }

    .home-robot-feature {
        font-size: 12px;
        padding: 4px 10px;
    }
}

@media (max-width: 480px) {
    .home-robot-info h3 {
        font-size: 18px;
    }

    .home-robot-info p {
        font-size: 13px;
    }

    .home-robot-img {
        max-height: 200px;   /* prevent oversized images on small screens */
        object-fit: cover;
    }
}


/* Robots Showcase */

.robots-grid {
    display: flex;
    flex-direction: column;   /* stack cards vertically */
    gap: 30px;
}

.robot-card {
    display: flex;            /* image + info side by side */
    align-items: flex-start;
    gap: 20px;
    background-color: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
}

.robot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.robot-img {
    flex-shrink: 0;           /* prevent image from shrinking */
    width: 300px;             /* fixed width */
    height: 300px;            /* fixed height for consistency */
    object-fit: cover;        /* crop nicely */
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.robot-card:hover .robot-img {
    transform: scale(1.05);
}

.robot-info {
    flex: 1;                  /* text takes remaining space */
    padding: 25px;
}

.robot-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.robot-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.robot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.robot-feature {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}

/* Responsive: stack image above text on smaller screens */
@media (max-width: 768px) {
    .robot-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .robot-img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }
}

/* Robots Showcase 
.robots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.robot-card {
    background-color: var(--glass-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    position: relative;
}

.robot-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.1);
}

.robot-img {
    width: 100%;
    height: auto; 
    object-fit: contain;
}
.robot-card:hover .robot-img {
    transform: scale(1.05);
}

.robot-info {
    padding: 25px;
}

.robot-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.robot-info p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.robot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.robot-feature {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-yellow);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
}
*/
/* Technology Section */
.tech-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-card {
    background-color: var(--glass-bg);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-yellow);
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-yellow);
}

.tech-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.tech-card p {
    color: var(--text-muted);
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-yellow), var(--secondary-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-yellow);
}

.contact-details p {
    color: var(--text-muted);
}

.contact-form {
    background-color: var(--glass-bg);
    border-radius: 15px;
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 25px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Footer */
footer {
    background-color: rgba(10, 10, 10, 0.95);
    padding: 60px 5% 30px;
    border-top: 1px solid var(--glass-border);
}

/*logo*/
.footer-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;                  /* round shape */
    border: 2px solid var(--primary-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    animation: pulse 2s infinite;        /* glowing animation */
    transition: transform 0.3s ease;
}

.footer-logo-wrapper:hover {
    transform: rotate(360deg);           /* spin on hover */
}

.footer-logo {
    width: 70%;                          /* scale inside circle */
    height: auto;
    border-radius: 50%;                  /* keeps image round */
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(90deg, var(--primary-yellow), var(--secondary-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Pulse glow animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-yellow);
}

.footer-column p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;  /*remove underline*/
}

.social-icons a:hover {
    background-color: var(--primary-yellow);
    color: var(--dark-bg);
    transform: translateY(-5px);
    text-decoration: none;  /*remove underline*/
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a:hover {
    color: var(--primary-yellow);
    padding-left: 10px;
}

.footer-links li a i {
    margin-right: 10px;
    color: var(--primary-yellow);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 14px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .slide-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 5%;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.5s;
        padding: 30px 0;
        z-index: 1000;
        border-top: 1px solid var(--glass-border);
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .hero-section {
        height: 70vh;
    }

    .carousel-nav {
        display: none;
    }

    .section {
        padding: 70px 5%;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 28px;
    }

    .slide-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

