|
61 | 61 | background: linear-gradient(135deg, #0f172a, #0dcaf0); |
62 | 62 | backdrop-filter: blur(20px); |
63 | 63 | border-bottom: 1px solid rgba(13, 202, 240, .2); |
64 | | - transition: all .3s ease |
| 64 | + transition: all .3s ease; |
| 65 | + box-shadow:0 4px 18px rgba(0,0,0,0.08); |
| 66 | + |
65 | 67 | } |
66 | 68 |
|
67 | 69 | .navbar-wrapper.scrolled { |
@@ -153,7 +155,7 @@ img { |
153 | 155 | position: relative; |
154 | 156 | padding: 6px 12px; |
155 | 157 | border-radius: 20px; |
156 | | - font-size: 19px; |
| 158 | + font-size: 16px; |
157 | 159 | font-weight: 600; |
158 | 160 | letter-spacing: .2px; |
159 | 161 | color: #fff; |
@@ -206,7 +208,7 @@ img { |
206 | 208 | background: linear-gradient(135deg, #0f172a, #0dcaf0); |
207 | 209 | color: #fff; |
208 | 210 | text-align: center; |
209 | | - padding: 36px 24px; |
| 211 | + padding: 40px 24px; |
210 | 212 | position: relative; |
211 | 213 | overflow: hidden |
212 | 214 | } |
@@ -518,7 +520,7 @@ img { |
518 | 520 | .small-note { |
519 | 521 | font-size: 12px; |
520 | 522 | color: #64748b; |
521 | | - margin-top: 12px |
| 523 | + margin-top: 5px |
522 | 524 | } |
523 | 525 |
|
524 | 526 | /* ========================================================= |
@@ -586,7 +588,7 @@ ul li { |
586 | 588 | border-radius: 12px; |
587 | 589 | text-align: center; |
588 | 590 | box-shadow: 0 6px 18px rgba(0, 0, 0, .06); |
589 | | - transition: .3s; |
| 591 | + transition: .2s; |
590 | 592 | opacity: 0; |
591 | 593 | transform: translateY(20px) |
592 | 594 | } |
@@ -614,8 +616,72 @@ footer { |
614 | 616 | text-align: center; |
615 | 617 | background: #0f172a; |
616 | 618 | color: #94a3b8; |
617 | | - padding: 28px 20px; |
618 | | - font-size: 13.5px |
| 619 | + padding: 20px 20px; |
| 620 | + font-size: 13.5px; |
| 621 | +} |
| 622 | + |
| 623 | + |
| 624 | +/* Footer Social Icons - Perfect Match */ |
| 625 | +.footer-social { |
| 626 | + display: flex; |
| 627 | + justify-content: center; |
| 628 | + align-items: center; |
| 629 | + width: 100%; |
| 630 | + margin-top: 16px; |
| 631 | +} |
| 632 | + |
| 633 | +.social-link { |
| 634 | + display: flex; |
| 635 | + align-items: center; |
| 636 | + justify-content: center; |
| 637 | + width: 35px; |
| 638 | + height: 35px; |
| 639 | + border-radius: 12px; |
| 640 | + background: linear-gradient(135deg, rgba(13, 202, 240, 0.2), rgba(252, 211, 77, 0.2)); |
| 641 | + backdrop-filter: blur(10px); |
| 642 | + border: 1px solid rgba(13, 202, 240, 0.3); |
| 643 | + color: #0dcaf0; |
| 644 | + text-decoration: none; |
| 645 | + transition: all .3s cubic-bezier(.25, .46, .45, .94); |
| 646 | +} |
| 647 | +.social-link:hover { |
| 648 | + background: linear-gradient(135deg, #0dcaf0, #fcd34d); |
| 649 | + color: #fff; |
| 650 | + transform: translateY(-2px) scale(1.05); |
| 651 | + box-shadow: 0 8px 25px rgba(13, 202, 240, 0.4); |
| 652 | +} |
| 653 | + |
| 654 | +.social-icon { |
| 655 | + width: 18px; |
| 656 | + height: 18px; |
| 657 | + flex-shrink: 0; |
| 658 | + border-radius: 15%; |
| 659 | +} |
| 660 | + |
| 661 | +/* Pedigree Section (Matches service-card exactly) */ |
| 662 | +.contact-box1 { |
| 663 | + background: rgb(235 239 243); |
| 664 | + border-left: 4px solid #fcd34d; |
| 665 | + margin-top: 2%; |
| 666 | + padding: 24px; |
| 667 | + border-radius: 8px; |
| 668 | + box-shadow: 0 6px 20px rgba(0, 0, 0, .06) |
| 669 | +} |
| 670 | + |
| 671 | +.milestone-number { |
| 672 | + font-size: 36px; |
| 673 | + font-weight: 800; |
| 674 | + margin-bottom: 8px; |
| 675 | + background: linear-gradient(135deg, #0dcaf0, #fcd34d); |
| 676 | + -webkit-background-clip: text; |
| 677 | + -webkit-text-fill-color: transparent; |
| 678 | + background-clip: text; |
| 679 | +} |
| 680 | + |
| 681 | +.milestone-label { |
| 682 | + font-size: 14px; |
| 683 | + font-weight: 600; |
| 684 | + color: #0f172a |
619 | 685 | } |
620 | 686 |
|
621 | 687 | /* ========================================================= |
@@ -674,8 +740,26 @@ footer { |
674 | 740 | margin: 48px auto; |
675 | 741 | padding: 28px 6% |
676 | 742 | } |
| 743 | + |
| 744 | + .footer-social { |
| 745 | + gap: 16px; |
| 746 | + margin: 16px 0; |
| 747 | + } |
| 748 | + |
| 749 | + .social-link { |
| 750 | + width: 40px; |
| 751 | + height: 40px; |
| 752 | + } |
| 753 | + |
| 754 | + .social-icon { |
| 755 | + width: 20px; |
| 756 | + height: 20px; |
| 757 | + border-radius: 10%; |
| 758 | + } |
677 | 759 | } |
678 | 760 |
|
| 761 | + |
| 762 | + |
679 | 763 | @media (min-width:769px) and (max-width:1200px) { |
680 | 764 | .hamburger { |
681 | 765 | display: none |
|
0 commit comments