* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal; 
  box-sizing: border-box;
}
body {
    color: #eee;
    margin: 0;
    font-size: 20px;
}
a {
    text-decoration: none;
    color: #eee;
}
h1 {
    font-size: 36px;
    font-weight: 600;  
    color: #fff;
}
nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 2% 6%;
    width: 100%;
    margin-bottom: 400px;

}
nav img {
    width: 150px;
    margin-top: 50px;
    
}
.nav-links {
    flex: 1;
    text-align: right;
}
.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-links ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-size: 19px;
}
.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #f44336;
    display: block;
    margin: auto;
    transition: width 0.5s;
}
.nav-links ul li:hover::after {
    width: 100%;
}
@media (max-width) {
    .nav-links ul li {
        display: block;
    }    
}
.sub-header {
    width: 100%;
    height: 100vh;
    background-image: url('images/The Services page.png');
    background-position: center;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1 {
    margin-bottom: 60px;
}

.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 20px;
    background:transparent;
    position: relative;
    cursor: pointer;
  padding: 14px 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 5px;
}
.hero-btn:hover {
    border: 1px solid #f44336;
    background: #f44336;
    transition: 0.5s;
    transform: translateY(-3px);
}
.hero-btn.red-btn {
    background: #fff;
    color: #f44336;
    border: 1px solid #f44336;
    cursor: pointer;
    border-radius: 5px;
}
.hero-btn.red-btn:hover {
    background: #f44336;
    color: #fff;
    transition: 0.5s;
}
nav .fa {
    display: none;
}
.fa {
    font-size: 60px;
    color: #222;
    cursor: pointer;
}
@media (max-width: 700px) {
    .text-box h1 {
        font-size: 20px;
    }
    .nav-links ul li {
        display: block;
    }
    .nav-links {
        position: fixed;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa {
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul {
        padding: 30px;
    }
}
/* Common section styling */
section {
    width: 100%;  /* Full width */
    margin: 0;    /* No margins */
    padding: 50px 20px;  /* Top/bottom 50px, sides 20px for content spacing */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333;
    box-sizing: border-box;
}
/* Specific section styling */
.service-list {
    list-style: none;
    margin: 30px 0;
}

.service-list li {
    margin-bottom: 20px;
}

.service-list strong {
    display: block;
    font-size: 1.1rem;
}
@media screen and (max-width: 678px) {
    .service-list strong {
        font-size: 1rem;
    } 
}
/* Services section specific */
h1 {
    font-size: 36px;
    font-weight: 600;
}

h2 {
    font-size: 30px;
    font-weight: 500;
}

h3 {
    font-size: 20px;
    font-weight: 500;
}

p {
    color: #000;
    font-size: 19px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.gold-retainer {
    flex-basis: 31%;
    padding: 20px 12px;
    background: linear-gradient(135deg, #12324a, #c7dce8, #f4b860);
    border-radius: 10px;
    margin-bottom: 5%;
    box-sizing: border-box;
    transition: 0.5s;
    text-align: center;
}
.gold-retainer-col h1 {
    color: #222;
}
.gold-retainer-col {
 flex-basis: 31%;
    padding: 0 20px;
    background-color: #eee;
    border-radius: 15px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    gap: 10px;
}
.gold-retainer-col:hover {
  box-shadow:
  0 12px 32px rgba(0, 0, 0, 0.35),
  inset 0 2px 2px rgba(255, 255, 255, 0.4);
}
.gold-retainer-col ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    text-align: center;
}

.gold-retainer-col ul li {
    margin: 5px 0;
    font-size: 16px;
    font-weight: 500;
}

.gold-retainer-col:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

@media (max-width: 700px) {
    .row {
        flex-direction: column;
    }
    .gold-retainer-col {
        margin-bottom: 20px;
    }
}
/*footer*/
.footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.footer h4 {
    margin-top: 20px;
    margin-bottom: 25px;
    font-weight: 600;
    gap: 10px;
}
.icons .fa-brands {
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
}
.icon-container {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  gap: 10px; 
}

/* Styles for the individual icons */

.icon-container .fa-brands,
.icon-container .fa-solid {
   font-size: 35px;
    color: #f44336;
    margin-right: 30px;
    position: relative;
    display: inline-block;
}