/* ================================
   SST BRAND COLOR SYSTEM
================================ */

:root {


   /* Primary Brand Colors */

   --color-gold: #d4af37;
   --color-gold-light: #f1d27a;
   --color-gold-dark: #9c7c1f;


   /* White / Silver Shades */

   --color-white: #ffffff;
   --color-white-soft: #f5f5f5;
   --color-white-light: #e9e9e9;


   /* Metallic / Silver */

   --color-silver: #c9c9c9;
   --color-silver-dark: #8f8f8f;


   /* Accent */

   --color-accent-red: #7a1c1c;


   /* Metallic / Silver */

   --color-silver: #c9c9c9;
   --color-silver-dark: #8f8f8f;


   /* Accent (from SST text glow) */

   --color-accent-red: #7a1c1c;


   /* Background Colors */

   --color-black: #000000;
   --color-dark: #0e0e0e;
   --color-dark-light: #1a1a1a;


   /* Text Colors */

   --text-white: #ffffff;
   --text-light: #cccccc;
   --text-muted: #888888;


   /* Borders */

   --border-dark: #2a2a2a;


   /* Gradient */

   --gold-gradient: linear-gradient(135deg, #d4af37, #f1d27a);


   /* Shadows */

   --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.3);
   --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.5);


   /* Radius */

   --radius-sm: 6px;
   --radius-md: 12px;
   --radius-lg: 30px;


   /* Transition */

   --transition: all .3s ease;

}





/* ================================
   SST PREMIUM NAVBAR
================================ */

.sst-navbar {

   background: rgba(0, 0, 0, 0.85);
   backdrop-filter: blur(10px);
   padding: 15px 0;
   transition: 0.4s ease;
   border-bottom: 1px solid rgba(255, 255, 255, 0.08);

}

/* Logo */

.navbar-brand img {

   height: 120px;
   transition: 0.3s;

}

.navbar-brand img:hover {

   transform: scale(1.05);

}

/* Menu */

.nav-link {

   color: var(--color-white);
   font-weight: 500;
   margin-left: 30px;
   position: relative;
   transition: 0.3s;

}

/* Gold Hover Line */

.nav-link::after {

   content: "";
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 0;
   height: 2px;
   background: var(--color-gold);
   transition: 0.4s;

}

.nav-link:hover {

   color: var(--color-gold);

}

.nav-link:hover::after {

   width: 100%;

}

/* Mobile Logo */

@media (max-width:768px) {

   .navbar-brand img {
      height: 80px;
   }

}

/* ===============================
   SUPER CONTACT BUTTON
================================ */

.contact-btn {

   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   color: #000 !important;
   padding: 10px 26px;
   border-radius: 5px;
   margin-left: 35px;
   font-weight: 600;
   letter-spacing: 0.5px;
   position: relative;
   overflow: hidden;
   transition: all 0.35s ease;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35);


}

/* Shine Effect */

.contact-btn::before {

   content: "";
   position: absolute;
   top: 0;
   left: -75%;
   width: 50%;
   height: 100%;
   background: rgba(255, 255, 255, 0.4);
   transform: skewX(-25deg);
   transition: 0.6s;

}

/* Hover Effects */

.contact-btn:hover {

   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
   color: #000 !important;

}

.contact-btn:hover::before {

   left: 130%;

}

/* Mobile Icon */

.navbar-toggler {

   border: none;
   color: #fff;
   font-size: 28px;

}

/* Scroll Effect */

.sst-navbar.scrolled {

   background: #000;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

}


/* Active Menu */

.nav-link.active {
   color: var(--color-white) !important;
}

.nav-link.active::after {
   width: 100%;
   background: var(--color-gold);
}

/* HERO IMAGE */

.hero-img {
   height: 100vh;
   object-fit: cover;
}


/* Overlay */

.hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.55);
}


/* Text */

.hero-text {
   bottom: 35%;
   z-index: 5;
}

.hero-text h1 {
   font-size: 60px;
   font-weight: 700;
   color: var(--color-gold);
}

.hero-text p {
   font-size: 20px;
   color: #fff;
}


/* Button */

.hero-btn {

   display: inline-block;
   margin-top: 15px;
   padding: 12px 30px;
   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   color: #000;
   font-weight: 600;
   border-radius: 30px;
   text-decoration: none;

}


/* ================= MOBILE ================= */

@media (max-width:768px) {

   .hero-img {
      height: 80vh;
   }

   .hero-text {
      bottom: 25%;
   }

   .hero-text h1 {
      font-size: 32px;
   }

   .hero-text p {
      font-size: 16px;
   }

}


/* ================= ABOUT SECTION ================= */

.home-about {
   padding: 100px 0;
   background: #0f0f0f;
}


/* Image */

.about-img {
   position: relative;
   overflow: hidden;
   border-radius: 10px;
}

.about-img img {
   width: 100%;
   border-radius: 10px;
   transition: 0.5s;
}

.about-img:hover img {
   transform: scale(1.05);
}


/* Subtitle */

.section-subtitle {
   color: var(--color-gold);
   font-weight: 600;
   letter-spacing: 1px;
   margin-bottom: 10px;
}


/* Title */

.section-title {
   font-size: 40px;
   font-weight: 700;
   color: #fff;
   margin-bottom: 20px;
}


/* Text */

.about-content p {
   color: #ccc;
   line-height: 1.7;
}


/* Button */

.about-btn {

   display: inline-block;
   margin-top: 20px;
   padding: 12px 28px;
   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   color: #000;
   border-radius: 30px;
   font-weight: 600;
   text-decoration: none;

}

.about-btn:hover {

   transform: translateY(-3px);

}

/* ================= CONTINUOUS RUNNING TEXT ================= */

.top-announcement {

   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   overflow: hidden;
   padding: 10px 0;

}

.scroll-wrapper {
   overflow: hidden;
   white-space: nowrap;
}

.scroll-track {

   display: flex;
   width: max-content;
   animation: scrollLoop 18s linear infinite;

}

/* Text */

.scroll-text {

   display: flex;
   gap: 40px;
   padding-right: 40px;

}

.scroll-text span {

   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
   color: #000;

}

.scroll-text i {
   font-size: 18px;
}

/* Animation */

@keyframes scrollLoop {

   0% {
      transform: translateX(0);
   }

   100% {
      transform: translateX(-50%);
   }

}


/* ================= SERVICES ================= */

.services-section {
   padding: 100px 0;
   background: #0f0f0f;
}

/* Title */

.section-subtitle {
   color: var(--color-gold);
   font-weight: 600;
}

.section-title {
   font-size: 40px;
   color: #fff;
   font-weight: 700;
}

/* Card */

.service-card {

   background: #1a1a1a;
   border-radius: 10px;
   overflow: hidden;
   transition: 0.4s;
   border: 1px solid rgba(255, 255, 255, 0.05);

}

/* Image */

.service-img {
   overflow: hidden;
}

.service-img img {
   width: 100%;
   height: 230px;
   object-fit: cover;
   transition: 0.5s;
}

/* Hover Zoom */

.service-card:hover img {
   transform: scale(1.1);
}

/* Content */

.service-content {
   padding: 25px;
   text-align: center;
}

.service-content h4 {
   color: #fff;
   margin-bottom: 10px;
}

.service-content p {
   color: #bbb;
   font-size: 15px;
}

/* Hover */

.service-card:hover {
   transform: translateY(-10px);
   border-color: var(--color-gold);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ================= GALLERY ================= */

.gallery-section {
   padding: 100px 0;
   background: #111;
}

/* Gallery Item */

.gallery-item {

   position: relative;
   display: block;
   overflow: hidden;
   border-radius: 8px;

}

.gallery-item img {

   width: 100%;
   height: 250px;
   object-fit: cover;
   transition: 0.5s;

}

/* Overlay */

.gallery-overlay {

   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.4s;

}

/* Icon */

.gallery-overlay i {

   color: #fff;
   font-size: 30px;
   background: var(--color-gold);
   width: 50px;
   height: 50px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;

}

/* Hover Effects */

.gallery-item:hover img {

   transform: scale(1.1);

}

.gallery-item:hover .gallery-overlay {

   opacity: 1;

}


/* ================= PARALLAX SECTION ================= */

.parallax-section {

   position: relative;
   background: url("./img/bg.png") center/cover no-repeat;
   background-attachment: fixed;
   padding: 120px 0;
   color: #fff;

}

/* Overlay */

.parallax-overlay {

   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.65);

}

/* Content */

.parallax-content {

   position: relative;
   z-index: 2;

}

.parallax-content h2 {

   font-size: 42px;
   font-weight: 700;
   color: var(--color-gold);
   margin-bottom: 15px;

}

.parallax-content p {

   font-size: 18px;
   color: #ddd;
   max-width: 700px;
   margin: auto;

}

/* Button */

.parallax-btn {

   display: inline-block;
   margin-top: 25px;
   padding: 12px 30px;
   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   color: #000;
   font-weight: 600;
   border-radius: 30px;
   text-decoration: none;
   transition: 0.3s;

}

.parallax-btn:hover {

   transform: translateY(-3px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);

}


/* ================= CONTACT SECTION ================= */

.contact-section {
   padding: 100px 0;
   background: #0f0f0f;
}

/* Contact Card */

.contact-info {

   background: #1a1a1a;
   padding: 40px;
   border-radius: 10px;
}

.contact-item {

   display: flex;
   gap: 20px;
   margin-bottom: 25px;
   

}

/* Icon */

.contact-icon {

   width: 50px;
   height: 50px;
   background: var(--color-gold);
   color: #000 !important;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50%;
   font-size: 20px;

}

.contact-item i {
    color: #000 !important;
}

.contact-item h5 {
   color: #fff;
   margin-bottom: 5px;
}

.contact-item p {
   color: #bbb;
   margin: 0;
}

/* Form */

.contact-form {

   background: #1a1a1a;
   padding: 40px;
   border-radius: 10px;

}

.form-control {

   background: #111;
   border: 1px solid #333;
   color: #fff;
   padding: 12px;

}

.form-control:focus {

   border-color: var(--color-gold);
   box-shadow: none;

}

/* Button */

.contact-btn {

   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   border: none;
   padding: 12px 28px;
   border-radius: 30px;
   font-weight: 600;

}


/* ================= FOOTER ================= */

.main-footer {

   background: #0b0b0b;
   color: #bbb;
   padding-top: 70px;

}

/* Logo */

.footer-logo {
   height: 80px;
   margin-bottom: 15px;
}

/* Titles */

.footer-title {

   color: #fff;
   font-size: 20px;
   margin-bottom: 20px;
   position: relative;

}

.footer-title::after {

   content: '';
   display: block;
   width: 40px;
   height: 2px;
   background: var(--color-gold);
   margin-top: 8px;

}

/* Links */

.footer-links {

   list-style: none;
   padding: 0;

}

.footer-links li {

   margin-bottom: 10px;

}

.footer-links a {

   color: #bbb;
   text-decoration: none;
   transition: 0.3s;

}

.footer-links a:hover {

   color: var(--color-gold);
   padding-left: 5px;

}

/* Contact */

.footer-contact {

   list-style: none;
   padding: 0;

}

.footer-contact li {

   margin-bottom: 12px;
   display: flex;
   gap: 10px;

}

.footer-contact i {

   color: var(--color-gold);

}

/* Bottom */

.footer-bottom {

   border-top: 1px solid #222;
   margin-top: 40px;
   padding: 20px 0;
   font-size: 14px;

}

.footer-bottom a {

   color: var(--color-gold);
   text-decoration: none;

}

.footer-bottom a:hover {

   text-decoration: underline;

}

/* ================= SCROLL TOP ================= */

#scrollTopBtn {

   position: fixed;
   bottom: 25px;
   right: 25px;
   width: 50px;
   height: 50px;
   border: none;
   border-radius: 50%;
   background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
   color: #000;
   font-size: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
   opacity: 0;
   visibility: hidden;
   transition: 0.3s;
   z-index: 999;

}

#scrollTopBtn:hover {

   transform: translateY(-3px);

}

/* Show Button */

#scrollTopBtn.show {

   opacity: 1;
   visibility: visible;

}


/* ================= WHATSAPP FLOAT ================= */

.whatsapp-float {

   position: fixed;
   bottom: 90px;
   /* above arrow button */
   right: 25px;
   width: 60px;
   height: 60px;
   background: #25D366;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 30px;
   text-decoration: none;
   z-index: 999;
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
   transition: 0.3s;

}

/* Pulse Animation */

.whatsapp-float::before {

   content: '';
   position: absolute;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: #25D366;
   opacity: 0.6;
   animation: wa-pulse 2s infinite;

}

/* Tooltip */

.wa-tooltip {

   position: absolute;
   right: 75px;
   background: #000;
   color: #fff;
   padding: 6px 12px;
   border-radius: 6px;
   font-size: 13px;
   white-space: nowrap;
   opacity: 0;
   transform: translateX(10px);
   transition: 0.3s;

}

/* Hover */

.whatsapp-float:hover {

   transform: translateY(-5px);

}

.whatsapp-float:hover .wa-tooltip {

   opacity: 1;
   transform: translateX(0);

}

/* Animation */

@keyframes wa-pulse {

   0% {
      transform: scale(1);
      opacity: 0.6;
   }

   70% {
      transform: scale(1.6);
      opacity: 0;
   }

   100% {
      opacity: 0;
   }

}

/* Mobile */

@media(max-width:768px) {

   .wa-tooltip {
      display: none;
   }

}


/* Animation */

@keyframes callPulse {

   0% {
      transform: scale(1);
      opacity: 0.6;
   }

   70% {
      transform: scale(1.6);
      opacity: 0;
   }

   100% {
      opacity: 0;
   }

}

/* Mobile */

@media(max-width:768px) {

   .call-tooltip {
      display: none;
   }

}


/* ================= PAGE HEADER ================= */

.page-header {

   position: relative;
   background: url("./img/g4.jpeg") center/cover no-repeat;
   background-attachment: fixed;
   padding: 190px 0;
   color: #fff;

}

/* Overlay */

.page-overlay {

   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.65);

}

/* Content */

.page-header-content {

   position: relative;
   z-index: 2;

}

/* Title */

.page-header h1 {

   font-size: 50px;
   font-weight: 700;
   color: var(--color-gold);
   margin-bottom: 10px;

}

/* Breadcrumb */

.breadcrumb-box {

   font-size: 16px;
   color: #ddd;

}

.breadcrumb-box a {

   color: #fff;
   text-decoration: none;

}

.breadcrumb-box a:hover {

   color: var(--color-gold);

}

.breadcrumb-box span {

   margin: 0 6px;

}

@media(max-width:768px) {

   .page-header {

      padding: 160px 0;
      background-attachment: scroll;

   }

   .page-header h1 {

      font-size: 32px;

   }

}


/* ================= ABOUT COMPANY ================= */

.about-company {

   padding: 100px 0;
   background: #111;

}

/* Image */

.about-img {

   overflow: hidden;
   border-radius: 10px;

}

.about-img img {

   width: 100%;
   border-radius: 10px;
   transition: 0.5s;

}

.about-img:hover img {

   transform: scale(1.05);

}

/* Title */

.section-subtitle {

   color: var(--color-gold);
   font-weight: 600;
   margin-bottom: 10px;

}

.section-title {

   font-size: 38px;
   color: #fff;
   font-weight: 700;
   margin-bottom: 20px;

}

/* Text */

.about-content p {

   color: #ccc;
   line-height: 1.7;

}

/* Highlights */

.about-highlights {

   margin-top: 20px;

}

.highlight-item {

   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 10px;
   color: #ddd;

}

.highlight-item i {

   color: var(--color-gold);
   font-size: 18px;

}

@media(max-width:768px) {

   .about-company {

      padding: 70px 0;

   }

   .section-title {

      font-size: 28px;

   }

}

/* ================= VISION MISSION ================= */

.vision-mission {

   padding: 100px 0;
   background: #111;

}

/* Card */

.vm-card {

   background: #1a1a1a;
   padding: 40px;
   border-radius: 10px;
   text-align: center;
   transition: 0.4s;
   border: 1px solid rgba(255, 255, 255, 0.05);

}

/* Icon */

.vm-icon {

   font-size: 45px;
   color: var(--color-gold);
   margin-bottom: 15px;

}

/* Title */

.vm-card h3 {

   color: #fff;
   margin-bottom: 15px;

}

/* Text */

.vm-card p {

   color: #ccc;
   line-height: 1.6;

}

/* Hover */

.vm-card:hover {

   transform: translateY(-10px);
   border-color: var(--color-gold);
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);

}

/* ================= SERVICES PAGE ================= */

.services-page{

padding:100px 0;
background:#111;

}

/* Card */

.service-box{

background:#1a1a1a;
border-radius:10px;
overflow:hidden;
transition:0.4s;
border:1px solid rgba(255,255,255,0.05);

}

/* Image */

.service-box img{

width:100%;
height:220px;
object-fit:cover;
transition:0.5s;

}

/* Content */

.service-content{

padding:25px;
text-align:center;

}

.service-content h4{

color:#fff;
margin-bottom:10px;

}

.service-content p{

color:#bbb;
font-size:14px;

}

/* Hover */

.service-box:hover{

transform:translateY(-10px);
border-color:var(--color-gold);
box-shadow:0 10px 30px rgba(0,0,0,0.6);

}

.service-box:hover img{

transform:scale(1.1);

}


/* ================= CONTACT ================= */

.contact-section{
padding:100px 0;
background:#111;
}

/* Contact Info */

.contact-info{
background:#1a1a1a;
padding:30px;
border-radius:10px;
}

.contact-info h3{
color:#fff;
margin-bottom:20px;
}

/* Contact Item */

.contact-item{
display:flex;
gap:15px;
margin-bottom:20px;
}

.contact-item i{
font-size:22px;
color:var(--color-gold);
}

.contact-item h6{
color:#fff;
margin:0;
}

.contact-item p{
color:#bbb;
margin:0;
font-size:14px;
}

/* Contact Form */

.contact-form{
background:#1a1a1a;
padding:30px;
border-radius:10px;
}

.contact-form h3{
color:#fff;
margin-bottom:20px;
}

.form-control{
background:#111;
border:1px solid #333;
color:#fff;
padding:12px;
}

.form-control:focus{
border-color:var(--color-gold);
box-shadow:none;
}

/* Button */

.contact-btn{
background:linear-gradient(135deg,var(--color-gold),var(--color-gold-light));
border:none;
padding:12px 28px;
border-radius:30px;
font-weight:600;
}

.map-responsive{

overflow:hidden;
padding-bottom:400px;
position:relative;
height:0;

}

.map-responsive iframe{

left:0;
top:0;
height:100%;
width:100%;
position:absolute;

}


/* ================= CALL PANEL ================= */

.call-panel{

position:fixed;
left:25px;   /* changed from right */
bottom:40px;
display:flex;
flex-direction:column;
gap:12px;
z-index:999;

}

/* Call Button */

.call-btn{

display:flex;
align-items:center;
gap:10px;
background:linear-gradient(135deg,#ff4d4d,#ff0000);
color:#fff;
padding:12px 18px;
border-radius:40px;
text-decoration:none;
font-weight:600;
box-shadow:0 10px 25px rgba(0,0,0,0.4);
transition:0.3s;
position:relative;

}

/* Icon */

.call-btn i{

width:40px;
height:40px;
background:#fff;
color:#ff0000;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;

}

/* Hover */

.call-btn:hover{

transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,0.5);

}

/* Ring Animation */

.call-btn::before{

content:'';
position:absolute;
width:100%;
height:100%;
border-radius:40px;
background:rgba(255,0,0,0.4);
z-index:-1;
animation:ring 2s infinite;

}

@keyframes ring{

0%{
transform:scale(1);
opacity:0.5;
}

70%{
transform:scale(1.4);
opacity:0;
}

100%{
opacity:0;
}

}

/* Mobile */

@media(max-width:768px){

.call-btn span{
display:none;
}

.call-btn{
padding:12px;
border-radius:50%;
}

}