* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background image as IMG */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgb(0 0 0 / 15%);*/
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 20px 60px;
    color: #fff;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.6;
}

.hero-btn {
    margin-top: 30px;
}

.hero-btn a {
    display: inline-block;
    padding: 14px 28px;
    background: #1abc9c;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.hero-btn a:hover {
    background: #16a085;
}
/* WHATSAPP ICON */
.whatsapp {
    position: fixed;
    bottom: 70px;
    right: 20px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 999;
}

.whatsapp img {
    width: 28px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btn a {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 80px 8%;
    background: #fff;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.about-content {
    flex: 1;
}

.about-top {
    color: #1aa39a;
    font-weight: 600;
    font-size: 18px;
}

.about-content h2 {
    font-size: 42px;
    color: #0c2d4a;
    margin: 15px 0;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-list {
    display: flex;
    margin: 25px 0;
}

.about-list ul {
    list-style: none;
    padding: 5px;
}

.about-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.about-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #1aa39a;
    font-weight: bold;
}

.about-btn {
    display: inline-block;
    background: #1aa39a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-image::before {
    content: "";
    position: absolute;
    left: -40px;
    top: 20%;
    width: 60px;
    height: 60%;
    background: #1aa39a;
    z-index: -1;
}

/* MOBILE RESPONSIVE  */

@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
    .about-content h2 {
        font-size: 32px;
    }
    .about-list {
        flex-direction: column;
    }
    .about-image::before {
        display: none;
    }
}

@media (max-width: 768px) {
    /* .about-section {
        padding: 50px 20px;
    } */
    .about-content h2 {
        font-size: 26px;
    }
}

/* COLLECTION SECTION */
.collection {
    background: #f9f9f9;
    padding: 80px 0;
}

.container {
    width: 1200px;
    margin: auto;
}

.collection-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
    /* gap: 60px; */
}

.left {
    width: 48%;
}

.right {
    width: 52%;
}

.subtitle {
    color: #17a2a0;
    font-size: 20px;
    display: block;
    margin-bottom: 15px;
}

.left h2 {
    font-size: 44px;
    color: #0b2c4a;
    line-height: 1.2;
    font-weight: 700;
}

.right p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a5a5a;
    margin-top: 10px;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 22px;
}

.card {
    background: #ffffff;
}

.card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.card-title {
    padding: 18px;
    font-size: 17px;
    color: #0b2c4a;
    /* background: #eeeeee; */
}

.btn-wrap {
    text-align: center;
    margin-top: 55px;
}

.view-btn {
    background: #17a2a0;
    color: #fff;
    padding: 15px 55px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }
    .collection-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .collection-top {
        flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .collection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .left h2 {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .collection {
        padding: 50px 0;
    }
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .left h2 {
        font-size: 26px;
    }
    .subtitle {
        font-size: 16px;
    }
    .right p {
        font-size: 14px;
    }
    .card img {
        height: 120px;
    }
    .view-btn {
        padding: 12px 35px;
    }
}

/* SECTION */
.certifications-section {
    width: 100%;
    background: #0f1113;
    padding: 0;
}

.certifications-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: stretch;
}

.cert-left {
    flex: 1;
}

.cert-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cert-right {
    flex: 1;
    padding: 60px 50px;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cert-right::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url('../img/dots.png');
    opacity: 0.1;
    z-index: 0;
}

.cert-right * {
    position: relative;
    z-index: 1;
}

.cert-right .tag {
    color: #00c4b4;
    font-size: 18px;
    margin-bottom: 10px;
    display: inline-block;
}

.cert-right h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cert-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #cfcfcf;
    margin-bottom: 30px;
}

.cert-logos {
    display: flex;
    gap: 25px;
    align-items: center;
    margin-bottom: 30px;
}

.cert-logos img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
}

.btn {
    display: inline-block;
    background: #00c4b4;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 3px;
    transition: 0.3s;
    width: fit-content;   
}

.btn:hover {
    background: #00a89b;
}

/* RESPONSIVE DESIGN */

@media (max-width: 992px) {
    .certifications-section .container {
        flex-direction: column;
    }
    .cert-left {
        height: 300px;
    }
    .cert-right {
        padding: 40px 25px;
    }
    .cert-right h2 {
        font-size: 28px;
    }
    .cert-logos {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .cert-logos img {
        width: 100px;
        height: 100px;
    }
}

/* INSTAGRAM STYLES */
.insta-wrapper {
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.insta-container {
    width: 100%;
    max-width: 1000px;
    padding: 0 15px;
}

/* HEADER */
.insta-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 25px;
}

.insta-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.insta-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #e1306c;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff; 
}

.insta-avatar img {
    width: 75%;
    height: 75%;
    object-fit: contain;
}

.insta-user h4 {
    margin: 0;
}

.insta-user p {
    margin: 3px 0 0;
    font-size: 14px;
    color: #555;
}

.insta-follow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #0095f6;
    color: #fff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.insta-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.insta-card img {
    width: 100%;
    max-width: 100%;
    height: 300px;
    object-fit: cover;
}

.insta-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70px; 
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    transition: 0.4s ease;
}

.overlay-content {
    padding: 10px;
}

.insta-card:hover .insta-overlay {
    height: 120px;
}

.full-content {
    opacity: 0;
    max-height: 0;
    transition: 0.3s ease;
    font-size: 12px;
}

.insta-card.active .insta-overlay {
    height: 100%;
}

.insta-card.active .full-content {
    opacity: 1;
    max-height: 200px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .insta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 768px) {
    .insta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insta-header {
        flex-direction: column;
    }
    .insta-follow {
        position: static;
        transform: none;
    }
}
@media (max-width: 480px) {
    .insta-grid {
        grid-template-columns: 1fr;
    }
}

/* CONTACT STYLES */
.container-contact {
  max-width: 1200px;
  margin: 80px auto;
  display: flex;
  gap: 50px;
  padding: 20px;
  align-items: center;
}

.left {
  flex: 1;
}

.left h4 {
  color: #1bb5a7;
  font-size: 18px;
  margin-bottom: 20px;
}

.left h1 {
  font-size: 44px;
  color: #163b5c;
  margin-bottom: 20px;
}

.left p {
  color: #444;
  line-height: 1.8;
  max-width: 500px;
}

.contact-info {
  margin-top: 30px;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #163b5c;
  font-weight: 500;
}

.contact-info span {
  margin-left: 10px;
}

.right-contact {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.form-group {
  margin-bottom: 15px;
}

.row {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  background: #1bb5a7;
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #159c90;
}

/* Responsive */
@media (max-width: 768px) {
  .container-contact {
    flex-direction: column;
    /* margin: 20px 10px;   */
    padding: 10px;
  }
  .row {
    flex-direction: column;
  }
  .right-contact {
    width: 100%;
  }
  .left h1 {
    font-size: 32px;
  }
}

/* CONTACT STYLES */
.container-contact-all {
  background: url('../img/black.jpg') no-repeat center center/cover;
  /* max-width: 1200px; */
  /* margin: 80px auto; */
  display: flex;
  gap: 50px;
  padding: 60px;
  align-items: center;
}

.left-all {
  flex: 1;
}

.left h4 {
  color: #1bb5a7;
  font-size: 18px;
  margin-bottom: 20px;
}

.left h1 {
  font-size: 44px;
  color: #163b5c;
  margin-bottom: 20px;
}

.left p {
  color: #444;
  line-height: 1.8;
  max-width: 500px;
}

.contact-info-all {
  margin-top: 30px;
}

.contact-info div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #163b5c;
  font-weight: 500;
}

.contact-info span {
  margin-left: 10px;
}

.right-contact-all {
  flex: 1;
  background: #ffffff;
  padding: 30px;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.form-group-all {
  margin-bottom: 15px;
}

.row-all {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

input, select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

textarea {
  height: 120px;
  resize: none;
}

button {
  background: #1bb5a7;
  color: #fff;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 16px;
}

button:hover {
  background: #159c90;
}

/* Responsive */
@media (max-width: 768px) {
  .container-contact-all {
    flex-direction: column;
    /* margin: 20px 10px;   */
    padding: 20px;
  }
  .row-all {
    flex-direction: column;
  }
  .right-contact-all {
    width: 100%;
  }
  .left h1 {
    font-size: 32px;
  }
}

/* ABOUT STYLES */
.hero-about {
    position: relative;
    width: 100%;
    height: 330px;
    background: url('../img/black.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    /* padding: 20px 60px; */
}

.hero-content h1 {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 22px;
    align-items: center;
}

.arrow {
    color: #00b894;
    font-weight: bold;
}

@media (max-width: 768px) {
    .hero {
        height: 250px;
    }
    .hero-content h1 {
        font-size: 42px;
    }
    .breadcrumb {
        font-size: 18px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero {
        height: 200px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .breadcrumb {
        font-size: 16px;
        gap: 6px;
    }
}

.story-section {
    max-width: 1400px;
    margin: auto;
    padding: 50px 40px;
}

.top-layout {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.left-content {
    flex: 1;
}

.left-content h4 {
    color: #10b5b5;
    font-size: 34px;
    margin-bottom: 20px;
}

.left-content h1 {
    font-size: 24px;
    line-height: 1.2;
    color: #032b5a;
    margin-bottom: 30px;
}

.left-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #333;
}

.right-image {
    flex: 1;
    position: relative;
}

.cyan-strip {
    position: absolute;
    width: 80px;
    height: 80%;
    background: #10b5b5;
    left: -35px;
    top: 80px;
    z-index: 0;
}

.right-image img {
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
    display: block;
}

.bottom-content {
    margin-top: 40px;
}

.bottom-content p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* MOBILE VIEW */
@media (max-width: 768px) {
    /* .about-section {
        padding: 20px 15px;
    } */
    .top-layout {
        display: block;
    }
    .left-content h1 {
        font-size: 28px;
    }
    .left-content p,
    .bottom-content p {
        font-size: 16px;
        line-height: 1.6;
    }
    .right-image {
        margin: 20px 0;
    }
    .cyan-strip {
        width: 100%;
        height: 35px;
        left: 0;
        top: -10px;
    }
    .right-image img {
        max-width: 100%;
    }
}

.team-section {
  position: relative;
  min-height: 100vh;
  padding: 80px 20px;
  background: url("../img/black.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.team-wrapper {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: auto;
  text-align: center;
  color: white;
}

.sub-title {
  color: #00cfd0;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.team-wrapper h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.description {
  max-width: 900px;
  margin: auto;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 80px;
}

.team-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-card {
  position: relative;
}

.card-image-wrap {
  background: #00cfd0;
  padding: 14px;
}

.card-image-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.card-content {
  width: 88%;
  /* margin: -45px auto 0; */
  background: white;
  padding: 32px 20px 45px;
  text-align: center;
  position: relative;
  z-index: 2;
  border-bottom: 4px solid #00cfd0;
}

.card-content h3 {
  font-size: 22px;
  color: #00487a;
  margin-bottom: 25px;
}

.card-content p {
  color: #444;
  font-size: 17px;
}

/* MOBILE */
@media (max-width: 768px) {
  .team-wrapper h1 {
    font-size: 34px;
  }
  .description {
    font-size: 18px;
    margin-bottom: 50px;
  }
  .team-cards {
    grid-template-columns: 1fr;
    gap: 50px;
    justify-items: center;
  }
  .team-card {
    max-width: 360px;
    width: 100%;
  }
  .card-image-wrap img {
    height: 360px;
  }
}

.values-section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  text-align: center;
}

.section small {
  display: block;
  color: #0ea5a4;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 12px; 
}

.section h1 {
  font-size: 44px;
  color: #183b56;
  margin-bottom: 20px; 
}

.desc {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #5f6b7a;
  line-height: 1.8;
  font-size: 16px;
}

.cards-story {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card-story {
  background: #ffffff;
  padding: 45px 30px;
  /* border-radius: 10px; */
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
}

.card-story::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background: #032733;
  transition: 0.4s ease;
  z-index: 0;
}

.card-story:hover::before {
  bottom: 0;
}

.card-story * {
  position: relative;
  z-index: 1;
  transition: 0.3s;
}

.card-story:hover h3,
.card-story:hover p {
  color: #fff;
}

.icon {
  width: 60px;
  height: 60px;
  border: 2px solid #0ea5a4;
  border-radius: 12px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
}

.values-section .icon i {
    font-size: 32px;   /* increase icon size */
    color: #00b3b3;    /* your color */
}

.card-story:hover .icon,
.card-story:hover .icon::before {
  border-color: #fff;
}

.card-story h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #183b56;
}

.card-story p {
  font-size: 15px;
  line-height: 1.8;
  color: #5f6b7a;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cards-story {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .section h1 {
    font-size: 30px;
  }
  .cards-story {
    grid-template-columns: 1fr;
  }
  .card-story {
    padding: 35px 25px;
  }
}


/* Banner content positioned at center-bottom */
.hero {
    position: relative;
}

.hero-content {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    text-align: center;
    width: 95%;          /* Increased width */
    max-width: 1200px;   /* Increased max-width */
    z-index: 2;
}

.hero-content h1 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Mobile View */
@media (max-width: 768px) {
    .hero-content {
        bottom: 10px;
        width: 95%;      /* Increased mobile width */
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 20px;
    }
    .top-gallery .top-img {
        width: 100%;
        max-width: 200px !important;
        height: auto;
        object-fit: contain;
    }
}
/* Left side fixed call button */
.side-call-btn{
  position: fixed;
  left: 15px;
  bottom: 0px;
  transform: translateY(-50%);
  background: #0d6efd; /* change color if needed */
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);

  animation: zoomPulse 1.8s infinite;
}

/* Zoom In – Zoom Out Animation */
@keyframes zoomPulse{
  0%{
    transform: translateY(-50%) scale(1);
  }
  50%{
    transform: translateY(-50%) scale(1.15);
  }
  100%{
    transform: translateY(-50%) scale(1);
  }
}

/* Hover effect */
.side-call-btn:hover{
  background:#b8000f;
  color:#fff;
}
.rotate-icon{
  transform: rotate(90deg);
}

/* Scroll Up Button */
.scroll-top-btn{
  position: fixed;
  right: 20px;
  bottom: 10px;
  background: linear-gradient(135deg, #494949, #1bb5a7);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);

  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
}
/* Show button */
.scroll-top-btn.show{
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover{
  background:#b8000f;
  color:#fff;
}

/* =========================================
   FULLSCREEN LOADER
========================================= */
#site-loader {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at top right, rgba(16, 181, 181, 0.06), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0, 0, 0, 0.06), transparent 45%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#site-loader.hide {
  opacity: 0;
  visibility: hidden;
}

/* =========================================
   MAIN WRAPPER
========================================= */
.loader-wrapper {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =========================================
   OUTER ROTATING RING (REDUCED SIZE)
========================================= */
.outer-ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 2px solid rgba(16, 181, 181, 0.12);
  border-top-color: #10b5b5;
  border-right-color: #000000;
  border-bottom-color: #10b5b5;
  border-left-color: rgba(0, 0, 0, 0.15);
  animation: spinRing 4s linear infinite;
}

@keyframes spinRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* =========================================
   TILE STACK
========================================= */
.tile-stack {
  position: absolute;
  width: 90px;
  height: 90px;
  animation: tileRotate 3s ease-in-out infinite;
}

@keyframes tileRotate {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
}

.tile {
  position: absolute;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, #10b5b5, #000000);
  box-shadow:
    0 8px 20px rgba(16, 181, 181, 0.25),
    inset 0 2px 4px rgba(255, 255, 255, 0.45);
}

.tile1 { top: 0; left: 0; }
.tile2 { top: 0; right: 0; }
.tile3 { bottom: 0; left: 0; }
.tile4 { bottom: 0; right: 0; }

/* =========================================
   CENTER LOGO
========================================= */
.loader-logo {
  position: absolute;
  width: 95px;
  height: 95px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.loader-logo::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px solid rgba(16, 181, 181, 0.12);
}

.loader-logo img {
  width: 65px;
  height: auto;
  position: relative;
  z-index: 2;
}

/* =========================================
   LOADING TEXT
========================================= */
.loader-text {
  position: absolute;
  bottom: -45px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  letter-spacing: 0.5px;
  animation: textPulse 1.5s ease-in-out infinite;
}

.loader-text span {
  color: #10b5b5;
}

@keyframes textPulse {
  0%, 100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */
@media (max-width: 768px) {
  .loader-wrapper {
    width: 200px;
    height: 200px;
  }

  .outer-ring {
    width: 150px;
    height: 150px;
  }

  .tile-stack {
    width: 72px;
    height: 72px;
  }

  .tile {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }

  .loader-logo {
    width: 80px;
    height: 80px;
  }

  .loader-logo img {
    width: 55px;
  }

  .loader-text {
    font-size: 14px;
    bottom: -38px;
  }
}