"/* TRD DEFTECH Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: #020617;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #10b981;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.logo .highlight {
    color: #10b981;
}

.logo p {
    font-size: 0.75rem;
    color: #cbd5e1;
    margin-top: -4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #10b981;
}

.btn {
    background-color: #10b981;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.875rem;
}

.btn:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #475569;
    color: #cbd5e1;
}

.btn-outline:hover {
    background-color: #1e293b;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid #334155;
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.mobile-menu a:hover {
    background-color: rgba(30, 41, 59, 0.5);
    color: #10b981;
}

/* Hero Section */
.hero-badge {
    margin-bottom: 8px;
}

.hero h1 {
    margin-top: 5px;
    margin-bottom: 10px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #020617;
	
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #020617, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
}

.hero-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob-1, .hero-blob-2 {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(48px);
    animation: pulse 3s infinite;
	
}

.hero-blob-1 {
    top: 25%;
    left: 25%;
    background-color: rgba(16, 185, 129, 0.05);
}

.hero-blob-2 {
    bottom: 25%;
    right: 25%;
    background-color: rgba(59, 130, 246, 0.05);
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 7rem 0;
	
	
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
	
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: #6ee7b7;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    line-height: 1.1;
    margin-bottom: 0rem;
}

.hero h2 {
    font-size: 1.875rem;
    color: #cbd5e1;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10b981;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-cards {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (min-width: 1024px) {
    .feature-cards {
        display: grid;
    }
}

.feature-card {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.feature-card:nth-child(2),
.feature-card:nth-child(4) {
    margin-top: 2rem;
}

.feature-value {
    font-size: 1.875rem;
    font-weight: bold;
    color: #10b981;
    margin-bottom: 0.5rem;
}

.feature-title {
    color: #cbd5e1;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.875rem;
    color: #64748b;
}

/* Section Styling */

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 768px;
    margin: 0 auto; 
}

.highlight {
    color: #10b981;
}

/* About Section */
#about {
    background-color: #020617;
	
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-card {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.about-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

.about-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.about-icon {
    width: 56px;
    height: 56px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #10b981;
}

.about-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.about-card p {
    color: #cbd5e1;
    line-height: 1.75;
}

.values-grid {
    display: grid;
    grid-template-columns: 4fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.value-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
}

.value-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #10b981;
    margin-bottom: 0rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.875rem;
    color: #94a3b8;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.image-container {
    border-radius: 1rem;
    overflow: hidden;
    height: 320px;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-container:hover img {
    transform: scale(1.1);
}

/* Services Section */
#services {
    background: linear-gradient(to right, #020617, rgba(15, 23, 42, 0.95), rgba(2, 6, 23, 0.9));
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
    background-color: rgba(30, 41, 59, 0.8);
}

.service-icon {
    width: 64px;
    height: 64px;
    background-color: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #10b981;
    margin-bottom: 1.5rem;
    transition: background-color 0.3s;
}

.service-card:hover .service-icon {
    background-color: rgba(16, 185, 129, 0.2);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: #10b981;
}

.service-desc {
    color: #94a3b8;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.service-features i {
    color: #10b981;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cta-box {
    margin-top: 4rem;
    text-align: center;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.5), rgba(30, 41, 59, 0.3));
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 1rem;
    padding: 3rem;
}

.cta-box h3 {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #94a3b8;
    max-width: 768px;
    margin: 0 auto 2rem;
}

/* Capabilities, Quality, Contact, Footer sections - continuing in similar pattern */
/* For brevity, using same styling patterns */

.capabilities-grid, .platforms-grid, .quality-grid, .contact-grid, .footer-grid {
    display: grid;
    gap: 2rem;
}

.capability-card, .platform-card, .cert-card, .contact-info-card, .key-contact-card {
    background-color: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s;
}

.capability-card:hover, .platform-card:hover, .cert-card:hover, .key-contact-card:hover {
    border-color: rgba(16, 185, 129, 0.5);
}

/* Form Styles */

.form-group {
    margin-bottom: 2.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 90%;
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid #475569;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #10b981;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer */
.footer {
    background-color: red;
    border-top: 1px solid #334155;
    padding: 3rem 0;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

.capabilities-grid, .platforms-grid, .quality-grid, .contact-grid, .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.capability-card, .platform-card, .cert-card, .contact-info-card, .key-contact-card {
    background-color: #1e293b;
    border: 1px solid rgba(71, 85, 105, 0.5);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.capability-card:hover,
.platform-card:hover,
.cert-card:hover,
.key-contact-card:hover {
    transform: translateY(-5px);
    border-color: #10b981;
}

.footer {
    background: #071426;
    color: #cbd5e1;
    padding: 60px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col h2 {
    color: #fff;
}

.footer-col h2 span {
    color: #22c55e;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li:hover {
    color: #22c55e;
}

/* Badges */
.badges {
    margin-top: 15px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: #0f766e;
    color: #fff;
    border-radius: 6px;
    margin-right: 10px;
    font-size: 13px;
}

.badge.blue {
    background: #1d4ed8;
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 15px;
    text-align: left;
    font-size: 14px;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.small-card {
    padding: 20px;
    border-radius: 16px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.small-card:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
}

.small-card h4 {
    color: #fff;
    margin-top: 10px;
}

.small-card p {
    color: #94a3b8;
    font-size: 13px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
}.card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    border-radius: 16px;
    
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    
    border: 1px solid rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);

    transition: all 0.3s ease;
}

/* Hover Effect */
.card:hover {
    transform: translateY(-5px);
    border-color: #22c55e;
}

/* Icon Box */
.card .icon {
    width: 50px;
    height: 50px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 20px;
}

/* Content */
.card h3 {
    color: #fff;
    margin-bottom: 5px;
}

.card p {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Tag (Certified 2024) */
.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 20px;
    font-size: 12px;
}

