/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    background-color: #050E58;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    color: white;
    font-size: 24px;
    font-weight: 700;
}

.logo span {
    color: #ffc107;
    font-weight: 700;
}

.logo .road {
    font-size: 16px;
    color: #FFF;
    margin-left: 5px;
    font-weight: normal;
    position: relative;
    top: -4px;
    color: white;
}

/* Hero Section */
/*.hero {*/
/*    background-image: url('../images/highway2.png');*/
/*    background-size: cover;*/
/*    background-position: center;*/
/*    color: white;*/
/*    position: relative;*/
/*    padding: 150px 0 100px;*/
/*    margin-top: 60px;*/
/*}*/
.hero {
    position: relative;
    color: white;
    padding: 150px 0 100px;
    margin-top: 60px;
    z-index: 1;
    background:#000;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../images/highway2.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.yellow-bar {
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 500;
}

.hero .description {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.highlight {
    color: #ffc107;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #ffc107;
    color: #1a2b47;
}

.btn-primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #F8FAFC;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    color: #1a2b47;
    margin-bottom: 15px;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
    font-size: 18px;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon {
    width: 100%;
    height: auto;
    opacity: 0.8;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #050E58;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #050E58;
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact p {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

.device-image {
    margin: 30px 0;
    text-align: center;
}

.device-image img {
    
    border-radius: 8px;
}

/*.contact-info {*/
/*    margin-top: -161px;*/
/*    float:left*/
/*    position: relative;*/
/*    z-index: 99;*/
/*}*/

/*.info-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-bottom: 15px;*/
/*}*/

.info-item i {
    margin-right: 10px;
    color: #ffc107;
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffc107;
}

.contact-form .btn-primary {
    width: 100%;
    padding: 15px;
    font-size: 18px;
}

/* Footer */
footer {
    background-color: #050E58;
    color: #ccc;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Icons for contact info */
.icon-phone:before {
    content: "📞";
}

.icon-email:before {
    content: "✉️";
}

.icon-web:before {
    content: "🌐";
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .contact-text {
        order: 1;
    }
    
    .contact-form {
        order: 0;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero::before {
        opacity: 0.5;
    }
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero .subtitle {
        font-size: 18px;
    }
    
    .features h2 {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
}
.info-item {
    display: flex;
    align-items: center;
    float: inline-start;
    padding-right: 15px;
}
.contact-info {
    margin-top: 0px;
    z-index: 99;
    font-size:14px;
}
@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .contact h2 {
        font-size: 28px;
    }
}
.form-group textarea{
        font-family: inherit;
}