| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621 |
- /* Reset and Base Styles */
- * {
- margin: 0;
- padding: 0;
- box-sizing: border-box;
- }
- body {
- font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
- line-height: 1.6;
- color: #333;
- overflow-x: hidden;
- }
- .container {
- max-width: 1200px;
- margin: 0 auto;
- padding: 0 20px;
- }
- /* Top Bar */
- .top-bar {
- background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
- color: white;
- padding: 10px 0;
- font-size: 14px;
- }
- .top-bar .container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .contact-info {
- display: flex;
- gap: 20px;
- flex-wrap: wrap;
- }
- .social-links {
- display: flex;
- gap: 15px;
- }
- .social-links a {
- color: white;
- text-decoration: none;
- font-size: 18px;
- transition: transform 0.3s ease;
- }
- .social-links a:hover {
- transform: translateY(-2px);
- }
- /* Navigation Bar */
- .navbar {
- background: white;
- box-shadow: 0 2px 10px rgba(0,0,0,0.1);
- position: sticky;
- top: 0;
- z-index: 1000;
- }
- .navbar .container {
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 15px 20px;
- }
- .logo {
- height: 50px;
- width: auto;
- }
- .nav-menu {
- display: flex;
- list-style: none;
- gap: 30px;
- }
- .nav-link {
- text-decoration: none;
- color: #333;
- font-weight: 500;
- transition: color 0.3s ease;
- position: relative;
- }
- .nav-link:hover {
- color: #2563eb;
- }
- .nav-link::after {
- content: '';
- position: absolute;
- bottom: -5px;
- left: 0;
- width: 0;
- height: 2px;
- background: #2563eb;
- transition: width 0.3s ease;
- }
- .nav-link:hover::after {
- width: 100%;
- }
- .hamburger {
- display: none;
- flex-direction: column;
- cursor: pointer;
- }
- .hamburger span {
- width: 25px;
- height: 3px;
- background: #333;
- margin: 3px 0;
- transition: 0.3s;
- }
- /* Hero Section */
- .hero {
- background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
- color: white;
- padding: 80px 0;
- min-height: 600px;
- display: flex;
- align-items: center;
- }
- .hero .container {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 60px;
- align-items: center;
- }
- .hero-content h1 {
- font-size: 3rem;
- font-weight: 700;
- margin-bottom: 20px;
- line-height: 1.2;
- }
- .hero-content p {
- font-size: 1.2rem;
- margin-bottom: 30px;
- opacity: 0.9;
- }
- .hero-buttons {
- display: flex;
- gap: 20px;
- flex-wrap: wrap;
- }
- .hero-image img {
- width: 100%;
- height: auto;
- border-radius: 10px;
- box-shadow: 0 20px 40px rgba(0,0,0,0.2);
- }
- /* Buttons */
- .btn {
- display: inline-block;
- padding: 12px 30px;
- text-decoration: none;
- border-radius: 50px;
- font-weight: 600;
- transition: all 0.3s ease;
- cursor: pointer;
- border: none;
- font-size: 16px;
- }
- .btn-primary {
- background: white;
- color: #2563eb;
- }
- .btn-primary:hover {
- transform: translateY(-2px);
- box-shadow: 0 10px 20px rgba(0,0,0,0.2);
- }
- .btn-secondary {
- background: transparent;
- color: white;
- border: 2px solid white;
- }
- .btn-secondary:hover {
- background: white;
- color: #2563eb;
- }
- .btn-outline {
- background: transparent;
- color: #2563eb;
- border: 2px solid #2563eb;
- }
- .btn-outline:hover {
- background: #2563eb;
- color: white;
- }
- /* Sections */
- .section {
- padding: 80px 0;
- }
- .section-alt {
- background: #f8fafc;
- }
- .section-header {
- text-align: center;
- margin-bottom: 60px;
- }
- .section-header h2 {
- font-size: 2.5rem;
- font-weight: 700;
- margin-bottom: 15px;
- color: #1e293b;
- }
- .section-header p {
- font-size: 1.2rem;
- color: #64748b;
- max-width: 600px;
- margin: 0 auto;
- }
- /* About Section */
- .about-content {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 60px;
- align-items: center;
- }
- .about-text h3 {
- font-size: 1.8rem;
- margin-bottom: 20px;
- color: #1e293b;
- }
- .about-text p {
- margin-bottom: 20px;
- color: #475569;
- }
- .features-list {
- list-style: none;
- margin-top: 30px;
- }
- .features-list li {
- padding: 10px 0;
- color: #475569;
- font-weight: 500;
- }
- .about-image img {
- width: 100%;
- height: auto;
- border-radius: 10px;
- box-shadow: 0 10px 30px rgba(0,0,0,0.1);
- }
- /* Services Section */
- .services-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 30px;
- }
- .service-card {
- background: white;
- padding: 40px 30px;
- border-radius: 15px;
- text-align: center;
- box-shadow: 0 5px 20px rgba(0,0,0,0.1);
- transition: transform 0.3s ease, box-shadow 0.3s ease;
- }
- .service-card:hover {
- transform: translateY(-10px);
- box-shadow: 0 15px 40px rgba(0,0,0,0.15);
- }
- .service-icon {
- font-size: 3rem;
- margin-bottom: 20px;
- }
- .service-card h3 {
- font-size: 1.5rem;
- margin-bottom: 15px;
- color: #1e293b;
- }
- .service-card p {
- color: #64748b;
- }
- /* Projects Section */
- .projects-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
- gap: 30px;
- }
- .project-card {
- background: white;
- border-radius: 15px;
- overflow: hidden;
- box-shadow: 0 5px 20px rgba(0,0,0,0.1);
- transition: transform 0.3s ease;
- }
- .project-card:hover {
- transform: translateY(-5px);
- }
- .project-card img {
- width: 100%;
- height: 250px;
- object-fit: cover;
- }
- .project-info {
- padding: 30px;
- }
- .project-info h3 {
- font-size: 1.5rem;
- margin-bottom: 15px;
- color: #1e293b;
- }
- .project-info p {
- color: #64748b;
- margin-bottom: 20px;
- }
- /* Testimonials Section */
- .testimonials-grid {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
- gap: 30px;
- }
- .testimonial-card {
- background: white;
- padding: 30px;
- border-radius: 15px;
- box-shadow: 0 5px 20px rgba(0,0,0,0.1);
- }
- .testimonial-content {
- margin-bottom: 20px;
- }
- .testimonial-content p {
- color: #475569;
- font-style: italic;
- font-size: 1.1rem;
- }
- .testimonial-author {
- display: flex;
- align-items: center;
- gap: 15px;
- }
- .testimonial-author img {
- width: 60px;
- height: 60px;
- border-radius: 50%;
- }
- .testimonial-author h4 {
- color: #1e293b;
- margin-bottom: 5px;
- }
- .testimonial-author p {
- color: #64748b;
- font-size: 0.9rem;
- }
- /* Contact Section */
- .contact-content {
- display: grid;
- grid-template-columns: 1fr 1fr;
- gap: 60px;
- }
- .contact-info h3 {
- font-size: 1.8rem;
- margin-bottom: 30px;
- color: #1e293b;
- }
- .contact-item {
- display: flex;
- align-items: flex-start;
- gap: 15px;
- margin-bottom: 25px;
- }
- .contact-icon {
- font-size: 1.5rem;
- color: #2563eb;
- min-width: 30px;
- }
- .contact-item h4 {
- color: #1e293b;
- margin-bottom: 5px;
- }
- .contact-item p {
- color: #64748b;
- }
- .contact-form {
- background: white;
- padding: 40px;
- border-radius: 15px;
- box-shadow: 0 5px 20px rgba(0,0,0,0.1);
- }
- .contact-form h3 {
- font-size: 1.8rem;
- margin-bottom: 30px;
- color: #1e293b;
- }
- .form-group {
- margin-bottom: 20px;
- }
- .form-group input,
- .form-group select,
- .form-group textarea {
- width: 100%;
- padding: 15px;
- border: 2px solid #e2e8f0;
- border-radius: 8px;
- font-size: 16px;
- transition: border-color 0.3s ease;
- }
- .form-group input:focus,
- .form-group select:focus,
- .form-group textarea:focus {
- outline: none;
- border-color: #2563eb;
- }
- /* Footer */
- .footer {
- background: #1e293b;
- color: white;
- padding: 60px 0 20px;
- }
- .footer-content {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
- gap: 40px;
- margin-bottom: 40px;
- }
- .footer-section h3 {
- font-size: 1.3rem;
- margin-bottom: 20px;
- color: white;
- }
- .footer-section p {
- color: #94a3b8;
- margin-bottom: 20px;
- }
- .footer-section ul {
- list-style: none;
- }
- .footer-section ul li {
- margin-bottom: 10px;
- }
- .footer-section ul li a {
- color: #94a3b8;
- text-decoration: none;
- transition: color 0.3s ease;
- }
- .footer-section ul li a:hover {
- color: white;
- }
- .newsletter-form {
- display: flex;
- gap: 10px;
- margin-top: 20px;
- }
- .newsletter-form input {
- flex: 1;
- padding: 12px;
- border: none;
- border-radius: 5px;
- }
- .footer-bottom {
- border-top: 1px solid #334155;
- padding-top: 20px;
- text-align: center;
- color: #94a3b8;
- }
- /* Responsive Design */
- @media (max-width: 768px) {
- .hamburger {
- display: flex;
- }
-
- .nav-menu {
- position: fixed;
- left: -100%;
- top: 70px;
- flex-direction: column;
- background-color: white;
- width: 100%;
- text-align: center;
- transition: 0.3s;
- box-shadow: 0 10px 27px rgba(0,0,0,0.05);
- padding: 20px 0;
- }
-
- .nav-menu.active {
- left: 0;
- }
-
- .hero .container {
- grid-template-columns: 1fr;
- text-align: center;
- }
-
- .hero-content h1 {
- font-size: 2rem;
- }
-
- .hero-buttons {
- justify-content: center;
- }
-
- .about-content,
- .contact-content {
- grid-template-columns: 1fr;
- }
-
- .services-grid,
- .projects-grid,
- .testimonials-grid {
- grid-template-columns: 1fr;
- }
-
- .contact-info {
- display: none;
- }
-
- .top-bar .container {
- flex-direction: column;
- gap: 10px;
- text-align: center;
- }
-
- .footer-content {
- grid-template-columns: 1fr;
- text-align: center;
- }
-
- .newsletter-form {
- flex-direction: column;
- }
- }
- @media (max-width: 480px) {
- .section {
- padding: 60px 0;
- }
-
- .hero {
- padding: 60px 0;
- }
-
- .section-header h2 {
- font-size: 2rem;
- }
-
- .hero-content h1 {
- font-size: 1.8rem;
- }
-
- .service-card,
- .contact-form {
- padding: 25px 20px;
- }
- }
|