Skip to content

Commit 5e5f2c4

Browse files
committed
adding
1 parent a6154c2 commit 5e5f2c4

3 files changed

Lines changed: 65 additions & 129 deletions

File tree

index.html

Lines changed: 46 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -1373,14 +1373,17 @@
13731373
}
13741374
.section-common-heading.faq {
13751375
margin: 0;
1376-
height:850px;
1376+
margin-top: 1rem;
1377+
min-height: 0;
1378+
height: auto !important;
1379+
overflow: visible !important;
13771380
font-family: 'Poppins', Arial, sans-serif;
13781381
background-color: #f3f1f1;
13791382
color: #000000;
1380-
/* Safari-specific rendering tweaks */
1383+
z-index: 0;
1384+
padding-bottom: 4rem; /* Space above footer */
13811385
-webkit-font-smoothing: antialiased;
13821386
-webkit-text-fill-color: #000;
1383-
/* Helps override dark mode */
13841387
-webkit-appearance: none;
13851388
}
13861389

@@ -1391,10 +1394,13 @@
13911394
}
13921395
}
13931396

1394-
.faq-2{
1395-
max-width: 800px;
1396-
margin: 40px auto;
1397-
padding: 0 20px;
1397+
.faq-2 {
1398+
max-width: 800px;
1399+
margin: 40px auto 7rem auto; /* Extra bottom margin for footer */
1400+
padding: 0 20px 7rem 20px; /* Add 7rem bottom padding */
1401+
width: 100%;
1402+
height: auto !important;
1403+
min-height: 0 !important;
13981404
}
13991405
.faq-heading{
14001406
text-align: center;
@@ -1467,25 +1473,30 @@
14671473
}
14681474
}
14691475
@media (max-width: 700px) {
1476+
14701477
.faq-heading{
14711478

14721479
font-size: 1.6rem;
14731480
font-family: 'Poppins', sans-serif;
1474-
font-weight: 700;
1481+
font-weight: 600;
14751482

14761483
}
14771484
.faq-heading{
14781485
padding-top: 2rem;
14791486
margin-bottom: 2.5rem;
14801487
}
1481-
.faq-2{
1482-
width:320px;
1483-
height:700px;
1484-
font-family:'Poppins', sans-serif ;
1485-
font-size:1.1rem;
1486-
font-weight: 400;
1487-
1488-
}
1488+
.faq-2 {
1489+
width: 94vw !important;
1490+
max-width: 400px !important;
1491+
margin: 0 auto 7rem auto !important;
1492+
padding: 0 0.5rem 9rem 0.5rem !important;
1493+
}
1494+
.section-common-heading.faq {
1495+
margin-top: 3rem !important;
1496+
min-height: 0 !important;
1497+
height: auto !important;
1498+
padding-bottom: 0 !important; /* Remove padding here, use .faq-2 instead */
1499+
}
14891500
.button-faq{
14901501
font-family:'Poppins', sans-serif ;
14911502
font-size:1.1rem;
@@ -1494,11 +1505,14 @@
14941505
.Partner-Main-box{
14951506
height:130px;
14961507
}
1497-
.content-faq{
1498-
font-family:'Poppins', sans-serif ;
1499-
font-size:1.1rem;
1500-
font-weight: 400;
1501-
}
1508+
.content-faq {
1509+
width: 90vw;
1510+
max-width: 370px;
1511+
margin: 0 auto;
1512+
font-size: 1rem;
1513+
padding: 12px 10px;
1514+
box-sizing: border-box;
1515+
}
15021516

15031517
}.containerPartner {
15041518
flex: 0 0 200px; /* Prevent flex growth/shrink */
@@ -1685,7 +1699,7 @@
16851699

16861700
.custom-footer__contact i {
16871701
margin-right: 10px;
1688-
color: #0062ff;
1702+
color: #f1f1f1;
16891703
min-width: 20px;
16901704

16911705
}
@@ -1714,7 +1728,7 @@
17141728

17151729
.custom-footer__icons i:hover {
17161730
transform: scale(1.1); /* Optional: adds a nice hover effect */
1717-
color: #0062ff; /* Optional: hover color */
1731+
color: #f1f1f1; /* Optional: hover color */
17181732
}
17191733

17201734

@@ -1725,7 +1739,7 @@
17251739
}
17261740

17271741
.custom-footer__icons a:hover {
1728-
color: #0062ff;
1742+
color: #f1f1f1;
17291743
}
17301744

17311745
/* Footer Bottom */
@@ -1757,7 +1771,7 @@
17571771
.footer-contact-form h3 {
17581772
font-size: 1.5rem;
17591773
margin-bottom: 15px;
1760-
color: #0062ff;
1774+
color: #f1f1f1;
17611775
}
17621776

17631777
.footer-contact-form form {
@@ -1780,7 +1794,7 @@
17801794
padding: 12px;
17811795
font-size: 1rem;
17821796
font-weight: bold;
1783-
background-color: #0062ff;
1797+
background-color: rgb(28, 94, 226);
17841798
color: #000;
17851799
border: none;
17861800
border-radius: 4px;
@@ -1789,7 +1803,7 @@
17891803
}
17901804

17911805
.footer-contact-form button:hover {
1792-
background-color: #0062ff;
1806+
background-color: rgb(28, 94, 226);
17931807
}
17941808

17951809
/* Responsive Design */
@@ -1808,6 +1822,7 @@
18081822
.footer-contact-form input,
18091823
.footer-contact-form button {
18101824
font-size: 1.2rem;
1825+
color:#f1f1f1;
18111826
}
18121827
.custom-footer__icons {
18131828
display: flex;
@@ -2823,25 +2838,25 @@ <h2 class="faq-heading">Frequently Asked Questions</h2>
28232838
</div>
28242839
</div>
28252840
<!-- FAQ Item -->
2826-
<div class="Question-1" >
2841+
<!-- <div class="Question-1" >
28272842
<button class="button-faq" onclick="toggleFaq(this)" >
28282843
7. Will I be involved in the design process?
28292844
<span style="float: right;">+</span>
28302845
</button>
28312846
<div class="content-faq">
28322847
Absolutely. At Elicit, we believe your home should reflect you. Our designers work closely with you from the very first consultation understanding your vision, preferences, and lifestyle. You’ll be involved at every key stage, from concept to material selection and final approvals, ensuring the end result is uniquely yours.
28332848
</div>
2834-
</div>
2849+
</div> -->
28352850
<!-- FAQ Item -->
2836-
<div class="Question-1">
2851+
<!-- <div class="Question-1">
28372852
<button class="button-faq" onclick="toggleFaq(this)" >
28382853
8. Do you offer customized furniture and modular solutions?
28392854
<span style="float: right;">+</span>
28402855
</button>
28412856
<div class="content-faq">
28422857
Yes, Elicit specializes in both custom-made furniture and modular designs tailored to your space and style. Whether it’s a modular kitchen, wardrobes, or bespoke sofas and tables, our team ensures each piece is designed for comfort, durability, and visual harmony with your interiors.
28432858
</div>
2844-
</div>
2859+
</div> -->
28452860
</div>
28462861
<!-- ========== Start Contact Home Section ========== -->
28472862

service.html

Lines changed: 10 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@
780780

781781
.custom-footer__contact i {
782782
margin-right: 10px;
783-
color: #f1c40f;
783+
color: #f1f1f1;
784784
min-width: 20px;
785785

786786
}
@@ -809,7 +809,7 @@
809809

810810
.custom-footer__icons i:hover {
811811
transform: scale(1.1); /* Optional: adds a nice hover effect */
812-
color: #f1c40f; /* Optional: hover color */
812+
color: #f1f1f1; /* Optional: hover color */
813813
}
814814

815815

@@ -820,7 +820,7 @@
820820
}
821821

822822
.custom-footer__icons a:hover {
823-
color: #f1c40f;
823+
color: #f1f1f1;
824824
}
825825

826826
/* Footer Bottom */
@@ -853,7 +853,7 @@
853853
.footer-contact-form h3 {
854854
font-size: 1.5rem;
855855
margin-bottom: 15px;
856-
color: #f1c40f;
856+
color: #f1f1f1;
857857
}
858858

859859
.footer-contact-form form {
@@ -876,16 +876,16 @@
876876
padding: 12px;
877877
font-size: 1rem;
878878
font-weight: bold;
879-
background-color: #f1c40f;
880-
color: #000;
879+
background-color: rgb(28, 94, 226);
880+
color: #f1f1f1;
881881
border: none;
882882
border-radius: 4px;
883883
cursor: pointer;
884884
transition: background-color 0.3s ease;
885885
}
886886

887887
.footer-contact-form button:hover {
888-
background-color: #d4ac0d;
888+
background-color: rgb(28, 94, 226);
889889
}
890890

891891
/* Responsive Design */
@@ -1027,54 +1027,15 @@
10271027
<i class="fas fa-calculator"></i>
10281028
<span>Estimate</span>
10291029
</a>
1030-
<div class="nav-item" onclick="toggleDropdown()">
1031-
<i class="fas fa-ellipsis-h"></i>
1032-
<span>More</span>
1033-
</div>
1030+
10341031
</div>
10351032

10361033

10371034
<!-- More Dropdown Menu -->
1038-
<div class="mobile-menu-unique" id="hamburgerDropdownUnique">
1039-
<a href="who we are.html">Who we Are</a>
1040-
<a href="service.html">Services</a>
1041-
<a href="work with us.html">Work with Us</a>
1042-
<a href="contact us.html">Contact</a>
1043-
</div>
1035+
10441036

10451037
<!-- JS to Toggle Dropdown -->
1046-
<script>
1047-
function toggleDropdown() {
1048-
const dropdown = document.getElementById("hamburgerDropdownUnique");
1049-
if (dropdown.style.display === "flex") {
1050-
dropdown.style.display = "none";
1051-
} else {
1052-
dropdown.style.display = "flex";
1053-
}
1054-
}
1055-
1056-
// Optional: Close on outside click
1057-
document.addEventListener('click', function (event) {
1058-
const dropdown = document.getElementById("hamburgerDropdownUnique");
1059-
const moreBtn = event.target.closest('.nav-item');
1060-
if (!dropdown.contains(event.target) && !moreBtn) {
1061-
dropdown.style.display = "none";
1062-
}
1063-
});
1064-
window.addEventListener("DOMContentLoaded", function () {
1065-
const path = window.location.pathname.split("/").pop().split("?")[0]; // current file, like 'design.html'
1066-
const navLinks = document.querySelectorAll(".mobile-navbar .nav-item");
1067-
1068-
navLinks.forEach(link => {
1069-
const page = link.getAttribute("data-page");
1070-
if (page === path) {
1071-
link.classList.add("active"); // This triggers the blue styling from CSS
1072-
}
1073-
});
1074-
});
1075-
1076-
1077-
</script>
1038+
10781039
<!-- ========== Start nav section ========== -->
10791040
<header class ="section-navbar" >
10801041
<div class="container">

0 commit comments

Comments
 (0)