styles.css 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621
  1. /* Reset and Base Styles */
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. box-sizing: border-box;
  6. }
  7. body {
  8. font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  9. line-height: 1.6;
  10. color: #333;
  11. overflow-x: hidden;
  12. }
  13. .container {
  14. max-width: 1200px;
  15. margin: 0 auto;
  16. padding: 0 20px;
  17. }
  18. /* Top Bar */
  19. .top-bar {
  20. background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  21. color: white;
  22. padding: 10px 0;
  23. font-size: 14px;
  24. }
  25. .top-bar .container {
  26. display: flex;
  27. justify-content: space-between;
  28. align-items: center;
  29. }
  30. .contact-info {
  31. display: flex;
  32. gap: 20px;
  33. flex-wrap: wrap;
  34. }
  35. .social-links {
  36. display: flex;
  37. gap: 15px;
  38. }
  39. .social-links a {
  40. color: white;
  41. text-decoration: none;
  42. font-size: 18px;
  43. transition: transform 0.3s ease;
  44. }
  45. .social-links a:hover {
  46. transform: translateY(-2px);
  47. }
  48. /* Navigation Bar */
  49. .navbar {
  50. background: white;
  51. box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  52. position: sticky;
  53. top: 0;
  54. z-index: 1000;
  55. }
  56. .navbar .container {
  57. display: flex;
  58. justify-content: space-between;
  59. align-items: center;
  60. padding: 15px 20px;
  61. }
  62. .logo {
  63. height: 50px;
  64. width: auto;
  65. }
  66. .nav-menu {
  67. display: flex;
  68. list-style: none;
  69. gap: 30px;
  70. }
  71. .nav-link {
  72. text-decoration: none;
  73. color: #333;
  74. font-weight: 500;
  75. transition: color 0.3s ease;
  76. position: relative;
  77. }
  78. .nav-link:hover {
  79. color: #2563eb;
  80. }
  81. .nav-link::after {
  82. content: '';
  83. position: absolute;
  84. bottom: -5px;
  85. left: 0;
  86. width: 0;
  87. height: 2px;
  88. background: #2563eb;
  89. transition: width 0.3s ease;
  90. }
  91. .nav-link:hover::after {
  92. width: 100%;
  93. }
  94. .hamburger {
  95. display: none;
  96. flex-direction: column;
  97. cursor: pointer;
  98. }
  99. .hamburger span {
  100. width: 25px;
  101. height: 3px;
  102. background: #333;
  103. margin: 3px 0;
  104. transition: 0.3s;
  105. }
  106. /* Hero Section */
  107. .hero {
  108. background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  109. color: white;
  110. padding: 80px 0;
  111. min-height: 600px;
  112. display: flex;
  113. align-items: center;
  114. }
  115. .hero .container {
  116. display: grid;
  117. grid-template-columns: 1fr 1fr;
  118. gap: 60px;
  119. align-items: center;
  120. }
  121. .hero-content h1 {
  122. font-size: 3rem;
  123. font-weight: 700;
  124. margin-bottom: 20px;
  125. line-height: 1.2;
  126. }
  127. .hero-content p {
  128. font-size: 1.2rem;
  129. margin-bottom: 30px;
  130. opacity: 0.9;
  131. }
  132. .hero-buttons {
  133. display: flex;
  134. gap: 20px;
  135. flex-wrap: wrap;
  136. }
  137. .hero-image img {
  138. width: 100%;
  139. height: auto;
  140. border-radius: 10px;
  141. box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  142. }
  143. /* Buttons */
  144. .btn {
  145. display: inline-block;
  146. padding: 12px 30px;
  147. text-decoration: none;
  148. border-radius: 50px;
  149. font-weight: 600;
  150. transition: all 0.3s ease;
  151. cursor: pointer;
  152. border: none;
  153. font-size: 16px;
  154. }
  155. .btn-primary {
  156. background: white;
  157. color: #2563eb;
  158. }
  159. .btn-primary:hover {
  160. transform: translateY(-2px);
  161. box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  162. }
  163. .btn-secondary {
  164. background: transparent;
  165. color: white;
  166. border: 2px solid white;
  167. }
  168. .btn-secondary:hover {
  169. background: white;
  170. color: #2563eb;
  171. }
  172. .btn-outline {
  173. background: transparent;
  174. color: #2563eb;
  175. border: 2px solid #2563eb;
  176. }
  177. .btn-outline:hover {
  178. background: #2563eb;
  179. color: white;
  180. }
  181. /* Sections */
  182. .section {
  183. padding: 80px 0;
  184. }
  185. .section-alt {
  186. background: #f8fafc;
  187. }
  188. .section-header {
  189. text-align: center;
  190. margin-bottom: 60px;
  191. }
  192. .section-header h2 {
  193. font-size: 2.5rem;
  194. font-weight: 700;
  195. margin-bottom: 15px;
  196. color: #1e293b;
  197. }
  198. .section-header p {
  199. font-size: 1.2rem;
  200. color: #64748b;
  201. max-width: 600px;
  202. margin: 0 auto;
  203. }
  204. /* About Section */
  205. .about-content {
  206. display: grid;
  207. grid-template-columns: 1fr 1fr;
  208. gap: 60px;
  209. align-items: center;
  210. }
  211. .about-text h3 {
  212. font-size: 1.8rem;
  213. margin-bottom: 20px;
  214. color: #1e293b;
  215. }
  216. .about-text p {
  217. margin-bottom: 20px;
  218. color: #475569;
  219. }
  220. .features-list {
  221. list-style: none;
  222. margin-top: 30px;
  223. }
  224. .features-list li {
  225. padding: 10px 0;
  226. color: #475569;
  227. font-weight: 500;
  228. }
  229. .about-image img {
  230. width: 100%;
  231. height: auto;
  232. border-radius: 10px;
  233. box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  234. }
  235. /* Services Section */
  236. .services-grid {
  237. display: grid;
  238. grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  239. gap: 30px;
  240. }
  241. .service-card {
  242. background: white;
  243. padding: 40px 30px;
  244. border-radius: 15px;
  245. text-align: center;
  246. box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  247. transition: transform 0.3s ease, box-shadow 0.3s ease;
  248. }
  249. .service-card:hover {
  250. transform: translateY(-10px);
  251. box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  252. }
  253. .service-icon {
  254. font-size: 3rem;
  255. margin-bottom: 20px;
  256. }
  257. .service-card h3 {
  258. font-size: 1.5rem;
  259. margin-bottom: 15px;
  260. color: #1e293b;
  261. }
  262. .service-card p {
  263. color: #64748b;
  264. }
  265. /* Projects Section */
  266. .projects-grid {
  267. display: grid;
  268. grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  269. gap: 30px;
  270. }
  271. .project-card {
  272. background: white;
  273. border-radius: 15px;
  274. overflow: hidden;
  275. box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  276. transition: transform 0.3s ease;
  277. }
  278. .project-card:hover {
  279. transform: translateY(-5px);
  280. }
  281. .project-card img {
  282. width: 100%;
  283. height: 250px;
  284. object-fit: cover;
  285. }
  286. .project-info {
  287. padding: 30px;
  288. }
  289. .project-info h3 {
  290. font-size: 1.5rem;
  291. margin-bottom: 15px;
  292. color: #1e293b;
  293. }
  294. .project-info p {
  295. color: #64748b;
  296. margin-bottom: 20px;
  297. }
  298. /* Testimonials Section */
  299. .testimonials-grid {
  300. display: grid;
  301. grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  302. gap: 30px;
  303. }
  304. .testimonial-card {
  305. background: white;
  306. padding: 30px;
  307. border-radius: 15px;
  308. box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  309. }
  310. .testimonial-content {
  311. margin-bottom: 20px;
  312. }
  313. .testimonial-content p {
  314. color: #475569;
  315. font-style: italic;
  316. font-size: 1.1rem;
  317. }
  318. .testimonial-author {
  319. display: flex;
  320. align-items: center;
  321. gap: 15px;
  322. }
  323. .testimonial-author img {
  324. width: 60px;
  325. height: 60px;
  326. border-radius: 50%;
  327. }
  328. .testimonial-author h4 {
  329. color: #1e293b;
  330. margin-bottom: 5px;
  331. }
  332. .testimonial-author p {
  333. color: #64748b;
  334. font-size: 0.9rem;
  335. }
  336. /* Contact Section */
  337. .contact-content {
  338. display: grid;
  339. grid-template-columns: 1fr 1fr;
  340. gap: 60px;
  341. }
  342. .contact-info h3 {
  343. font-size: 1.8rem;
  344. margin-bottom: 30px;
  345. color: #1e293b;
  346. }
  347. .contact-item {
  348. display: flex;
  349. align-items: flex-start;
  350. gap: 15px;
  351. margin-bottom: 25px;
  352. }
  353. .contact-icon {
  354. font-size: 1.5rem;
  355. color: #2563eb;
  356. min-width: 30px;
  357. }
  358. .contact-item h4 {
  359. color: #1e293b;
  360. margin-bottom: 5px;
  361. }
  362. .contact-item p {
  363. color: #64748b;
  364. }
  365. .contact-form {
  366. background: white;
  367. padding: 40px;
  368. border-radius: 15px;
  369. box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  370. }
  371. .contact-form h3 {
  372. font-size: 1.8rem;
  373. margin-bottom: 30px;
  374. color: #1e293b;
  375. }
  376. .form-group {
  377. margin-bottom: 20px;
  378. }
  379. .form-group input,
  380. .form-group select,
  381. .form-group textarea {
  382. width: 100%;
  383. padding: 15px;
  384. border: 2px solid #e2e8f0;
  385. border-radius: 8px;
  386. font-size: 16px;
  387. transition: border-color 0.3s ease;
  388. }
  389. .form-group input:focus,
  390. .form-group select:focus,
  391. .form-group textarea:focus {
  392. outline: none;
  393. border-color: #2563eb;
  394. }
  395. /* Footer */
  396. .footer {
  397. background: #1e293b;
  398. color: white;
  399. padding: 60px 0 20px;
  400. }
  401. .footer-content {
  402. display: grid;
  403. grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  404. gap: 40px;
  405. margin-bottom: 40px;
  406. }
  407. .footer-section h3 {
  408. font-size: 1.3rem;
  409. margin-bottom: 20px;
  410. color: white;
  411. }
  412. .footer-section p {
  413. color: #94a3b8;
  414. margin-bottom: 20px;
  415. }
  416. .footer-section ul {
  417. list-style: none;
  418. }
  419. .footer-section ul li {
  420. margin-bottom: 10px;
  421. }
  422. .footer-section ul li a {
  423. color: #94a3b8;
  424. text-decoration: none;
  425. transition: color 0.3s ease;
  426. }
  427. .footer-section ul li a:hover {
  428. color: white;
  429. }
  430. .newsletter-form {
  431. display: flex;
  432. gap: 10px;
  433. margin-top: 20px;
  434. }
  435. .newsletter-form input {
  436. flex: 1;
  437. padding: 12px;
  438. border: none;
  439. border-radius: 5px;
  440. }
  441. .footer-bottom {
  442. border-top: 1px solid #334155;
  443. padding-top: 20px;
  444. text-align: center;
  445. color: #94a3b8;
  446. }
  447. /* Responsive Design */
  448. @media (max-width: 768px) {
  449. .hamburger {
  450. display: flex;
  451. }
  452. .nav-menu {
  453. position: fixed;
  454. left: -100%;
  455. top: 70px;
  456. flex-direction: column;
  457. background-color: white;
  458. width: 100%;
  459. text-align: center;
  460. transition: 0.3s;
  461. box-shadow: 0 10px 27px rgba(0,0,0,0.05);
  462. padding: 20px 0;
  463. }
  464. .nav-menu.active {
  465. left: 0;
  466. }
  467. .hero .container {
  468. grid-template-columns: 1fr;
  469. text-align: center;
  470. }
  471. .hero-content h1 {
  472. font-size: 2rem;
  473. }
  474. .hero-buttons {
  475. justify-content: center;
  476. }
  477. .about-content,
  478. .contact-content {
  479. grid-template-columns: 1fr;
  480. }
  481. .services-grid,
  482. .projects-grid,
  483. .testimonials-grid {
  484. grid-template-columns: 1fr;
  485. }
  486. .contact-info {
  487. display: none;
  488. }
  489. .top-bar .container {
  490. flex-direction: column;
  491. gap: 10px;
  492. text-align: center;
  493. }
  494. .footer-content {
  495. grid-template-columns: 1fr;
  496. text-align: center;
  497. }
  498. .newsletter-form {
  499. flex-direction: column;
  500. }
  501. }
  502. @media (max-width: 480px) {
  503. .section {
  504. padding: 60px 0;
  505. }
  506. .hero {
  507. padding: 60px 0;
  508. }
  509. .section-header h2 {
  510. font-size: 2rem;
  511. }
  512. .hero-content h1 {
  513. font-size: 1.8rem;
  514. }
  515. .service-card,
  516. .contact-form {
  517. padding: 25px 20px;
  518. }
  519. }