/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 12px;
    padding: 0;
}

/* Header Styles */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 0px;
    margin: 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    padding: 10px 0 10px 20px;
}

.nav {
    display: flex;
}

.nav a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    transition: background 0.3s;
}

.nav a:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 10px;
    }

    .nav {
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .nav a {
        margin: 5px 0;
        flex-grow: 1;
        text-align: center;
    }
}
@media (max-width: 768px) {
    .nav {
        flex-direction: row; 
        align-items: center; 
  

    }
    .nav a {
        font-size: 12px; 
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 20px;
        padding: 10px;
    }

    .nav a {
        padding: 10px;
        font-size: 14px;
    }
}





.hero-text {
    text-align: center;
    margin: 20px 0;
}

.tagline {
    font-size: 20px;
    color: #A5770C;
    margin-bottom: 0px;
}

.main-text {
    font-size: 80px;
    color: #A5770C;
    line-height: 1.1;
    letter-spacing: -4px;
}




/* Container and Row Adjustments */
.container {
    max-width: 1000px;
}

/* Ensure buttons are positioned at the bottom */
.col-md-3 {
    position: relative;
}

.col-md-3 a {
    position: absolute;
    bottom: 10px;
    /* Margin from the bottom */
}

.img-fluid {
    width: 100%;
    height: auto;
}

img {
    display: block;
}

/* Mockup Image Styling */
.col-md-6 img {
    height: 400px;
    object-fit: contain;
}




/* General Card Styling */
.card {
    background-color: transparent !important;
    /* Remove background color */
    border: none !important;
    /* Remove border */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    /* Make the card a flex container */
    flex-direction: row;
    /* Align elements horizontally */
    text-align: center;
    /* Center the text */
    align-items: center;
    /* Horizontally center the contents */
    align-self: center;
    justify-content: center;
}

.card img {
    max-width: 80px;
    /* Set the maximum width for the icon */
    height: auto;
    /* Maintain the aspect ratio */
    margin-right: 15px;
    /* Space between the icon and text */
    display: inline-block;
    /* Ensures the image behaves like a block element */
    align-self: center;
    /* Center the image vertically */
}

.card-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    background: transparent;
}

.card-text {
    color: #E3B11D;
    font-size: 16px;
    background: transparent;
}

/* Section Padding */
.features-section {
    padding-top: 300px;
    padding-bottom: 50px;
}

/* Responsive Design: Center the cards */
@media (max-width: 768px) {
    .features-section {
        
        /* Less padding for small screens */
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-size: 14px;
    }
}

    @media (max-width: 768px) {
        .features-section {
            padding-top: 10px; /* Set padding-top to 100px for mobile */
            padding-bottom: 100px; /* Set padding-bottom to 100px for mobile */
        }
    }




.review-card-body {
    background: linear-gradient(0deg, #0F0F07, #A5770C);
    padding: 20px 40px;
    border-radius: 20px;
    max-height: 320px;
    max-width: 100%;
}

.review-card-body2 {
    background: linear-gradient(0deg, #0F0F07, #E3B11D);
    padding: 20px 40px;
    border-radius: 20px;
    max-height: 320px;
    max-width: 100%;
}

.card3 {
    border-width: 8px solid transparent; /* Required border properties */
    border-image: url('D:/Asus data backup mayuri/Mayuri all files/Digitalshakha work/FerroSight web development/Assets/border image.jpg');
    border-radius: 20px;
    padding: 20px; /* Space inside the border */
    align-content: center;
    text-align: center;
    display: flex;
    flex-direction: column;
}


.custom-text-field {
    width: 100%; /* Set width to occupy full available space */
    height: 64px; /* Set the desired height */
    font-size: 16px; /* Adjust font size */
    border: none; /* Remove all borders */
    border-bottom: 2px solid #A5770C; /* Add a bottom border */
    padding: 10px 0; /* Add padding for better spacing */
    box-sizing: border-box; /* Ensure padding doesn't affect total size */
    outline: none; /* Remove focus outline */
}

.custom-text-field:focus {
    border-bottom-color: #E3B11D; /* Change bottom border color on focus */
    box-shadow: 0 2px 5px rgba(165, 119, 12, 0.3); /* Add a slight glow below */
}


.centered-line {
    height: 8px;
    width: 1200px;
    background-color: orange;
    margin-top: 16px;
}






html {
    scroll-behavior: smooth;
}