@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #0d0d0d;
    color: #fff;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #c40000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.logo span {
    color: #c40000;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover,
nav a.active {
    color: #c40000;
}

.hero {
    padding: 120px 8%;
    text-align: center;
    background: linear-gradient(to right, #000, #1a1a1a);
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 20px;
}

.hero span {
    color: #c40000;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #ccc;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    background: #c40000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn:hover {
    background: #900000;
}

section {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
}

.section-title p {
    color: #aaa;
    margin-top: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #1a1a1a;
    padding: 30px;
    border-left: 4px solid #c40000;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    background: #222;
}

.card h3 {
    margin-bottom: 15px;
    color: #c40000;
}

.dark-section {
    background: #111;
}

ul.list {
    list-style: none;
    max-width: 800px;
    margin: auto;
}

ul.list li {
    margin-bottom: 15px;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 12px;
    border-radius: 4px;
    border: none;
}

.contact-form button {
    padding: 14px;
    background: #c40000;
    border: none;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.contact-form button:hover {
    background: #900000;
}

footer {
    text-align: center;
    padding: 25px;
    background: #000;
    border-top: 1px solid #222;
    color: #aaa;
}

@media(max-width:768px) {
    .hero h1 {
        font-size: 30px;
    }
}


.contact-info{
margin-bottom:30px;
margin-left:400px;
}

.info-item{
display:flex;
align-items:center;
margin-bottom:15px;
font-size:15px;
}

.info-item i{
color:#e50914;
margin-right:12px;
font-size:18px;
}

.info-item a{
color:#ccc;
text-decoration:none;
transition:0.3s;
}

.info-item a:hover{
color:#fff;
}


.home-contact{
padding:100px 8%;
background:#0a0a0a;
position:relative;
overflow:hidden;
}

/* subtle tech grid */
.home-contact::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background-image:
linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
background-size:40px 40px;
z-index:0;
}

.contact-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
position:relative;
z-index:1;
}

.contact-left h2{
font-size:36px;
margin-bottom:20px;
color:#fff;
}

.contact-left p{
color:#aaa;
margin-bottom:30px;
line-height:1.6;
}

.contact-details div{
display:flex;
align-items:center;
margin-bottom:15px;
}

.contact-details i{
color:#e50914;
margin-right:12px;
}

.contact-details a{
color:#ccc;
text-decoration:none;
}

.contact-details a:hover{
color:#fff;
}

.contact-right form{
background:#111;
padding:40px;
border:1px solid #1c1c1c;
}

.contact-right input,
.contact-right textarea{
width:100%;
padding:14px;
margin-bottom:18px;
background:#000;
border:1px solid #222;
color:#fff;
}

.contact-right input:focus,
.contact-right textarea:focus{
outline:none;
border:1px solid #e50914;
}

.contact-right button{
width:100%;
padding:15px;
background:#e50914;
border:none;
color:#fff;
font-weight:600;
cursor:pointer;
transition:0.3s;
}

.contact-right button:hover{
background:#c10812;
}

#home-form-message{
margin-top:15px;
font-size:14px;
}

/* fade-in animation */
.fade-in{
opacity:0;
transform:translateY(20px);
transition:all 0.8s ease;
}

.fade-in.visible{
opacity:1;
transform:translateY(0);
}

@media(max-width:900px){
.contact-wrapper{
grid-template-columns:1fr;
}
}

