* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  background: #faf8f5;
  padding-top:90px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(7,27,52,0.96);
  z-index: 999;
  padding: 10px 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #c9a14a;
}

.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
}

.tag,
.section-tag {
  color: #c9a14a;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
}

.hero h1,
section h2 {
  font-family: 'Cormorant Garamond', serif;
}

.hero h1 {
  font-size: 72px;
  margin-bottom: 24px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.primary {
  background: #c9a14a;
  color: white;
}

.primary:hover {
  background: #aa8437;
}

.secondary {
  border: 1px solid white;
  color: white;
}

.stats {
  padding: 80px 0;
  background: white;
}

.stats-grid,
.services-grid,
.case-grid,
.team-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 24px;
}

.stat-card,
.service-card,
.case-card,
.news-card,
.team-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about,
.services,
.cases,
.team,
.news,
.contact {
  padding: 140px 0 100px;
  scroll-margin-top: 120px;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 50px;
  align-items: center;
}

.about img,
.team img {
  width: 100%;
  border-radius: 12px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

section h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.footer {
  background: #071b34;
  color: white;
  padding-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 40px;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 10px;
}

.copyright {
  text-align: center;
  padding: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

@media(max-width:768px){
    
    .nav{
    flex-direction:column;
    gap:10px;
}

.logo-text h1{
    font-size:22px;
}

.hero h1 {
  font-size: 48px;
}

.nav-links {
  display: none;
}

section h2 {
  font-size: 36px;
}

.hero-buttons {
  flex-direction: column;
}

}



.logo-container{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo-img{
    width:60px;
    height:60px;
    object-fit:contain;
    display:block;
}

.logo-text h1{
    color:white;
    font-size:30px;
    font-family:'Cormorant Garamond', serif;
    margin:0;
    line-height:1;
    font-weight:700;
}

.logo-text span{
    color:#c9a14a;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.nav-links a{
    position:relative;
}

.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#c9a14a;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}