File size: 2,065 Bytes
fe446ed |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
background-color: #f8f9fa;
color: #333;
}
.container {
flex: 1;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
}
/* Navbar Adjustments */
.navbar .nav-link {
padding: 0.8rem 1rem;
font-size: 1.1rem;
}
/* Hero Section */
.hero-section {
background: linear-gradient(to right, #007bff, #0056b3);
padding: 100px 0;
color: white;
}
.hero-section .lead {
font-size: 1.25rem;
font-weight: 300;
}
/* Features Section */
.features-section {
background-color: #ffffff;
}
.feature-card {
background-color: #f8f9fa;
border: none;
border-radius: 15px;
padding: 30px;
margin-bottom: 20px;
transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.feature-card i {
color: #007bff;
margin-bottom: 20px;
}
/* Simulation Section */
.simulation-section {
background-color: #e9ecef;
}
.simulation-card {
border: 1px solid #007bff;
border-radius: 15px;
margin-bottom: 20px;
transition: transform 0.3s, box-shadow 0.3s;
background-color: #f0f8ff; /* AliceBlue */
}
.simulation-card:hover {
transform: translateY(-10px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
/* About Page Text Justify */
.text-justify {
text-align: justify;
}
footer {
background-color: #343a40;
color: white;
padding: 20px 0;
}
/* Custom Button Styles */
.btn-primary {
background-color: #007bff;
border-color: #007bff;
}
.btn-primary:hover {
background-color: #0069d9;
border-color: #0062cc;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.btn-success {
background-color: #28a745;
border-color: #28a745;
}
.btn-success:hover {
background-color: #218838;
border-color: #1e7e34;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
|