*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial;
}

body{
   padding-top: 90px;
background:white;
color:#333;
}


/* NAVBAR */

/* =========================
   HEADER / NAVBAR
========================= */
header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    backdrop-filter: blur(10px);
    z-index: 9999;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img{
    height: 70px;
    width: auto;
    display: block;
}

/* NAV DESKTOP */
nav{
    display: flex;
    align-items: center;
    gap: 35px;
}

nav a{
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: #999999;
    position: relative;
    transition: 0.3s;
}

/* GOLDEN HOVER EFFECT */
nav a:hover{
    color: #d4af37;
}

/* UNDERLINE ANIMATION */
nav a::after{
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -5px;
    background: #d4af37;
    transition: 0.3s;
}

nav a:hover::after{
    width: 100%;
}

/* ACTIVE LINK (optional but professional) */
nav a.active{
    color: #d4af37;
}

nav a.active::after{
    width: 100%;
}

/* HAMBURGER ICON */
.menu-toggle{
    display: none;
    font-size: 28px;
    color: #d4af37;
    cursor: pointer;
    z-index: 10001;
}

/* =========================
   MOBILE NAVBAR
========================= */
@media (max-width: 768px){

    .menu-toggle{
        display: block;
    }

    nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: black;
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 15px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);

        /* hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px);
        transition: 0.35s ease;
    }

    nav.active{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav a{
        font-size: 18px;
        color: #444;
    }

    header{
        padding: 15px 5%;
    }

    .logo img{
        height: 48px;
    }
}



/* HERO */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0; /* video peeche */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:linear-gradient(
        rgba(0,0,0,0.55),
        rgba(0,0,0,0.45)
    );
    z-index: 1; /* overlay ko video ke upar, text ke neeche */
}

.hero-content {
    position: relative;
    z-index: 2; /* text aur button ko overlay ke upar */
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    background:linear-gradient(135deg, #c9a227, #e0b93b);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight:600;
    letter-spacing:0.3px;
    transition:all 0.3s ease;
    box-shadow:0 8px 18px rgba(201,162,39,0.25);
    z-index: 2;
    display: inline-block;
}

.btn:hover {
    transform:translateY(-3px);
    box-shadow:0 12px 24px rgba(201,162,39,0.35);
}



/* SERVICES */

.services{
padding:80px 10%;
text-align:center;
}

.services h2{
margin-bottom:50px;
font-size:36px;
}

.service-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:30px;
}

.card{
padding:35px;
border-radius:12px;
background:white;
box-shadow:0 6px 18px rgba(0,0,0,0.12);
transition:0.4s;
}


.card i{
font-size:30px;
color:#c9a227;
margin-bottom:20px;
}

.card:hover{
transform:translateY(-10px) scale(1.03);
box-shadow:0 15px 35px rgba(0,0,0,0.2);
}



/* ABOUT */
.hero1{
height:90vh;

background-image: url("../images/about.jpg"); /* apni image ka path */

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

color:white;
padding:20px;
}

.about{
padding:80px 10%;
}

.hero1 h1{
font-size:48px;
margin-bottom:20px;
}

.hero1 p{
  font-size:18px;
  color: white;
  line-height:1.8;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:40px;
}

/* LEFT TEXT */

.about-text{
flex:1;
font-size:18px;
line-height:1.8;
color:#555;
}

/* RIGHT IMAGE */

.about-images{
flex:1;
text-align:right;
}

.about-images img{
width:100%;
max-width:450px;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}


/* OUR SERVICES */
.hero3{
height:90vh;

background-image: url("../images/service.jpg"); /* apni image ka path */

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

color:white;
padding:20px;
}

.hero3 h1{
font-size:48px;
margin-bottom:20px;
}

.hero3 p{
  font-size:18px;
  color: white;
  line-height:1.8;
}

.services-page{
padding:80px 10%;
background:#fafafa;
}

.services-page h1{
text-align:center;
font-size:36px;
margin-bottom:50px;
}

/* SERVICE LIST */

.service-list{
display:flex;
flex-direction:column;
gap:25px;
}

/* CARD STYLE */

.service-box{
display:flex;
align-items:center;
gap:25px;
background:white;
padding:25px 30px;
border-radius:18px;
box-shadow:0 8px 24px rgba(0,0,0,0.08);
transition:0.3s;
min-height:190px; 
border:1px solid rgba(201,162,39,0.08);  /* all cards same height */
}


/* HOVER EFFECT */

.service-box:hover{
transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,0.12),
               0 0 18px rgba(201,162,39,0.20);
    border-color:rgba(201,162,39,0.35);
}

/* ICON */

.service-icon{
width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg, rgba(201,162,39,0.15), rgba(201,162,39,0.05));
    box-shadow:0 6px 16px rgba(201,162,39,0.15);
}

.service-icon i{
    font-size:28px;
    color:#c9a227;
}

.service-box:hover .service-icon{
transform:rotate(15deg) scale(1.2);
color:#fff;
}


/* TEXT */
.service-content{
flex:1;   /* content remaining space le lega */
}
.service-content h3{
margin-bottom:8px;
font-size:20px;
}

.service-content p{
color:#555;
line-height:1.6;
font-style: italic ;
}

/* SERVICE ACTION BUTTON AREA */
.service-action{
margin-left:auto;   /* button hamesha right side chala jayega */
display:flex;
align-items:center;
}

/* READ MORE BUTTON */
.read-more-btn{
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.25);
    border: 1px solid transparent;
}

/* HOVER EFFECT */
.read-more-btn:hover{
    background: #fff;
    color: #b8860b;
    border: 1px solid #d4af37;
    box-shadow: 0 0 18px rgba(212, 175, 55, 0.45);
    transform: translateY(-3px);
}

/* CLICK EFFECT */
.read-more-btn:active{
    transform: scale(0.97);
}

/* GOLDEN GLOW HOVER EFFECT */

.service-box::before{
content:"";
position:absolute;
top:0;
left:0;
width:0%;
height:100%;
background:linear-gradient(120deg, rgba(212,175,55,0.3), rgba(212,175,55,0.1));
transition:0.5s;
z-index:0;
border-radius:12px;
}

.service-box:hover::before{
width:100%;
}

.service-box:hover{
transform:translateX(10px);
box-shadow:0 15px 30px rgba(212,175,55,0.4);
}

.service-box:hover .service-icon{
color:#fff;
}
/* CONTACT */
.contact-hero{
  width:100%;
  min-height:45vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px 10%;
  background:url("../images/contact.jpg") center/cover no-repeat;
}

.contact-hero-content{
  max-width:800px;
}

.contact-hero h1{
  font-size:52px;
  color: white;
  margin-bottom:15px;
}

.contact-hero p{
  font-size:18px;
  color: white;
  line-height:1.8;
}

/* CONTACT PAGE */
.contact-page{
  padding:80px 8%;
  background:#fafafa;
}

.contact-container{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:40px;
  align-items:start;
}

/* LEFT SIDE */
.contact-info{
  background:white;
  padding:40px 35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
}

.contact-info:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 35px rgba(212,175,55,0.15);
}

.contact-info h2{
  font-size:34px;
  margin-bottom:15px;
  color:#222;
}

.contact-info p{
  color:#666;
  margin-bottom:25px;
  line-height:1.8;
}

.info-box{
  display:flex;
  align-items:flex-start;
  gap:15px;
  margin-bottom:25px;
  padding:18px;
  border:1px solid #eee;
  border-radius:14px;
  transition:0.3s;
}

.info-box:hover{
  border-color:#d4af37;
  box-shadow:0 8px 20px rgba(212,175,55,0.12);
  transform:translateX(5px);
}

.info-box i{
  width:48px;
  height:48px;
  background:#d4af37;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:18px;
  flex-shrink:0;
}

.info-box h4{
  font-size:18px;
  margin-bottom:5px;
  color:#222;
}

.info-box p{
  margin:0;
  color:#666;
  font-size:15px;
}

.social-links{
  margin-top:25px;
  display:flex;
  gap:12px;
}

.social-links a{
  width:42px;
  height:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  color:#d4af37;
  border:1px solid #d4af37;
  border-radius:50%;
  text-decoration:none;
  transition:0.3s;
}

.social-links a:hover{
  background:#d4af37;
  color:#fff;
  transform:translateY(-4px);
  box-shadow:0 8px 18px rgba(212,175,55,0.3);
}

/* FORM BOX */
.contact-form-box{
  background:white;
  padding:40px 35px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.4s;
}

.contact-form-box:hover{
  box-shadow:0 15px 35px rgba(212,175,55,0.15);
}

.contact-form-box h2{
  font-size:34px;
  margin-bottom:25px;
  color:#222;
}

.contact-form{
  width:100%;
}

.input-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
  margin-bottom:18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding:15px 16px;
  border:1px solid #ddd;
  border-radius:10px;
  font-size:15px;
  outline:none;
  background:#fff;
  transition:0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  border-color:#d4af37;
  box-shadow:0 0 12px rgba(212,175,55,0.18);
}

.contact-form textarea{
  resize:none;
  margin-bottom:18px;
}

.contact-form button{
  margin-bottom: 10px;
  width:100%;
  padding:15px;
  border:none;
  border-radius:10px;
  background:#d4af37;
  color:white;
  font-size:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.contact-form button:hover{
  background:#b8922e;
  transform:translateY(-3px);
  box-shadow:0 12px 22px rgba(212,175,55,0.3);
}

/* SUCCESS MESSAGE */
.success-message{
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 12px 15px;
  border-radius: 8px;
  min-height: 20px;
  display: none;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #1f9c36;
}
/* FOOTER */

.footer{
background:#111;
color:#ccc;
padding:70px 10%;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:80px;
}

.footer-box{
flex:1;
min-width:250px;
}

.footer-box h3{
color:#d4af37; /* GOLDEN */
margin-bottom:20px;
font-size:20px;
}

.footer-box p{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #ddd;
    margin: 8px 0;
    line-height: 1.6;
}

.footer-box i {
    color: #d4af37; /* golden/yellow icon */
    font-size: 16px;
    min-width: 14px;
}
.footer-box ul{
list-style:none;
}

.footer-box ul li{
margin-bottom:10px;
transition:0.3s;
cursor:pointer;
}

.footer-box ul li:hover{
color:#d4af37;
padding-left:5px;
}

.social a{
display:inline-block;
width:40px;
height:40px;
background:#222;
text-align:center;
line-height:40px;
border-radius:5px;
color:white;
transition:0.3s;
}

.social a:hover{
background:#d4af37;
color:black;
}


/* =========================
   MOBILE RESPONSIVE FIXES
========================= */

/* Tablets */
@media (max-width: 992px) {

    .hero-content h1 {
        font-size: 38px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 16px;
        max-width: 90%;
    }

    .services,
    .about,
    .contact-page,
    .service-page,
    .contact-hero,
    .about-hero {
        padding: 60px 6%;
    }

    .service-box {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .service-action {
        width: 100%;
        margin-top: 15px;
    }

    .service-action .read-more-btn {
        width: 100%;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-container{
        flex-direction: column;
        text-align: center;
    }
    .about-text, .about-images{
        flex: unset;
        width: 100%;
        text-align: center;
    }
    .about-images img{
        max-width: 350px;
        margin: 20px auto 0 auto;
    }
    .hero1 h1{
        font-size: 36px;
    }
    .hero1 p{
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
        padding-top: 0;
    }

    h1 {
        font-size: 32px !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 28px !important;
        line-height: 1.3;
    }

    h3 {
        font-size: 22px !important;
    }

    p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* HERO */
    .hero1,
    .hero3,
    .contact-hero {
        padding-top: 70px; /* matches mobile navbar height */
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 70px;
        min-height: 80vh;
        height: auto;
    }
    .hero{
  position:relative;
  height:100vh;
  overflow:hidden;
}

    .hero-content {
        width: 100%;
        padding: 0 10px;
    }

    .hero-content h1 {
        font-size: 30px !important;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 25px;
    }

    .hero .btn {
        margin-top: 10px;
    }

    /* GENERAL SECTION PADDING */
    .services,
    .about,
    .contact-page,
    .service-page,
    .contact-hero,
    .about-hero {
        padding: 50px 5%;
    }

    /* SERVICES GRID */
    .service-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .card {
        padding: 25px 20px;
    }

    /* SERVICE BOX */
    .service-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        padding: 22px 18px;
    }

    .service-content h3 {
        font-size: 20px !important;
    }

    .service-action {
        width: 100%;
    }

    .service-action .read-more-btn {
        width: 100%;
        text-align: center;
        display: inline-block;
    }

    /* CONTACT */
    .contact-container {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 25px;
    }

    .input-row {
        flex-direction: column;
        gap: 15px;
    }

    .input-row input,
    .input-row select {
        width: 100% !important;
    }

    .contact-form-box,
    .contact-info {
        padding: 25px 18px;
    }
    /* ABOUT */
    .about{
        padding: 50px 5%;
    }
    .hero1 h1{
        font-size: 28px;
    }
    .hero1 p{
        font-size: 14px;
    }
    .about-images img{
        max-width: 100%;
        margin: 20px auto 0 auto;
    }
    .about-container{
        gap: 20px;
    }

    /* FOOTER */
    .footer {
        padding: 50px 6% 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col {
        text-align: left;
    }

    /* BUTTONS */
    .btn,
    .read-more-btn,
    .ebook-btn {
        padding: 12px 22px;
        font-size: 14px;
    }

    /* IMAGES */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    /* VIDEO */
    .hero-bg-video {
    height:100%;
    min-height:100vh;
    object-fit:cover;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .hero {
        min-height: 75vh;
        padding: 90px 15px 60px;
    }

    .hero-content h1 {
        font-size: 26px !important;
    }

    .hero-content p {
        font-size: 14px;
    }

    .services h2,
    .about h2,
    .contact-page h2,
    .contact-hero h1,
    .about-hero h1 {
        font-size: 24px !important;
    }

    .card,
    .service-box,
    .contact-form-box,
    .contact-info {
        border-radius: 14px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }
}
