*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}
#contactFormSection{
  scroll-margin-top: 150px !important; 
}

/* ===== HERO ===== */
.hero{
    background:url("/images/close-up-metallic-plates.jpg") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    background:#f2f2f2;
    padding:35px 45px;
    border-radius:22px;
    text-align:center;
    max-width:600px;
    box-shadow:0 4px 12px rgba(0,0,0,0.1);
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 60px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}

.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 28px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* Icon Navigation Bar */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}
}
.resources-section{
max-width:1200px;
margin:auto;
padding:60px 20px;
text-align:center;
}

.resources-section h2{
font-size:28px;
line-height:1.5;
color:#333;
max-width:850px;
margin:auto;
margin-bottom:50px;
}

/* Grid */

.resources-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

/* Card */

.resource-card{
position:relative;
overflow:hidden;
border-radius:6px;
cursor:pointer;
}

.resource-card img{
width:100%;
height:220px;
object-fit:cover;
display:block;
}

/* Overlay */

.resource-title{
position:absolute;
bottom:0;
left:0;
right:0;
background:rgba(255,255,255,0.85);
padding:15px;
font-weight:600;
color:#333;
font-size:16px;
}

/* Bottom request cards */

.request-card{
background:#fff;
border-radius:8px;
padding:30px 20px;
box-shadow:0 5px 15px rgba(0,0,0,0.08);
text-align:center;
}

.request-card img{
width:80px;
margin-bottom:15px;
}

.request-card h3{
font-size:16px;
margin-bottom:20px;
}

.request-card button{
padding:10px 30px;
border-radius:30px;
border:1px solid #333;
background:transparent;
cursor:pointer;
font-weight:600;
transition:0.3s;
}

.request-card button:hover{
background:#333;
color:white;
}

/* Tablet */

@media(max-width:900px){

.resources-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* Mobile */

@media(max-width:600px){

.resources-grid{
grid-template-columns:1fr;
}

.resources-section h2{
font-size:22px;
}

}
.sample-section{
max-width:1100px;
margin:40px auto;
background:#e9e9e9;
border:2px solid #2b6cb0;
display:flex;
align-items:center;
gap:30px;
padding:20px 25px;
flex-wrap:wrap;
}

.sample-image{
flex:1 1 250px;
}

.sample-image img{
width:100%;
height:auto;
display:block;
border-radius:3px;
}

.sample-content{
flex:2 1 400px;
}

.sample-content h2{
font-size:22px;
margin-bottom:12px;
color:#1e4ea1;
}

.sample-content p{
font-size:16px;
color:#444;
margin:0;
}

.sample-button{
flex:1 1 200px;
text-align:right;
}

.sample-button a{
display:inline-block;
background:#2b6cb0;
color:#fff;
padding:12px 30px;
border-radius:25px;
text-decoration:none;
font-size:14px;
font-weight:bold;
transition:0.3s;
}

.sample-button a:hover{
background:#1f4e85;
}

/* Tablet */

@media(max-width:900px){

.sample-section{
flex-direction:column;
text-align:center;
}

.sample-button{
text-align:center;
margin-top:10px;
}

}

/* Mobile */

@media(max-width:500px){

.sample-content h2{
font-size:18px;
}

.sample-content p{
font-size:14px;
}

.sample-button a{
width:100%;
padding:12px;
}

}