
* {
  margin: 0;
  padding: 0 ;
  box-sizing: border-box;
  
}

body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: white;
  line-height: 1.5;
  justify-content: center;

}

 .container {
  max-width: 1200px;
  margin: 0 auto; 
  padding: 0 ; 
}
  

h1 {
 font-size: 2.8rem;
 margin-bottom: 20px;
}

h2 {
  font-size: 1.8rem;
}

.btn {
  display: inline-block;        
  border-radius: 5px;         
  text-decoration: none;
  font-weight: 400;
  background: rgb(202, 139, 22); ;
  color: white;    
  cursor: pointer;
  padding: 5px 10px;           
}

.btn:hover {
  color: rgb(220, 161, 13) ;             
  transform: scale(1.05);      
}

.header-box {
  position: fixed;
  top: 20px;                
  left: 50%;
  transform: translateX(-50%); 
  max-width: 1200px;
  width: 100%;
  background:#020202;
  border-radius: 20px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  box-sizing: border-box; 
}

.logo img {
  height: 40px;
  width: auto;
}
.nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
.nav ul li a {
  text-decoration: none;
  color:white;
  font-weight: 500;
}
.nav ul li a:hover {
  color: #e3b025;
}

.menu-icon {
  display: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;         
  height: 100vh;
  background:black;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 10001;
  padding-left: 16px;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
}
.close-btn {
  font-size: 26px;
  color:goldenrod;       
  cursor: pointer;
  line-height: 1;
}


.mobile-nav {
  list-style: none;
  margin-top: 40px;
}

.mobile-nav li {
  margin-bottom: 20px;
}

.mobile-nav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color:white;
  text-decoration: none;
  font-size: 20px;
}

.mobile-nav li a span {
  color: #f4b400;
  font-size: 24px;
  padding-right: 10px;
}

@media (max-width: 768px) {

  .header-box {
    position: fixed;
    top: 6px;
    left: 50%;
    
    width: calc(100% - 20px);

    padding: 10px 16px;
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
  }

  
  .logo {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .logo img {
    height: 22px;
    width: auto;
    display: block;
  }

  .menu-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: goldenrod;
    cursor: pointer;

    flex: 0 0 auto; 
  }
  .nav,
  .button {
    display: none !important;
  }
}

.hero {
  background: #f7f5f5;
  color:black;
  padding-top: 180px;
  padding-bottom: 100px;
  text-align: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-top:40px ;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.4;
}

  .membership-card {
  background: linear-gradient(130deg, #ffffff, #d3d3d4);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(168, 163, 163, 0.06);
  margin: 0;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.text-box {
  flex: 1;
  min-width: 300px;
}

.image-box {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image-box img {
  width: 550px;  
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(138, 136, 136, 0.1);
}


.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.card-header h2 {
  font-size: 26px;
  font-weight: 600;
  color: #25292d;
}

.card-header h2 span {
  color: #9b7c16;
}

.text-box h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #000;
}

.text-box p {
  font-size: 16px;
  color: #100f0f;
  margin-bottom: 20px;
  line-height: 1.6;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
}

.benefits-list li {
  font-size: 16px;
  color: #080808;
  margin-bottom: 10px;
  padding-left: 0;
}

.reviews {
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  padding: 20px;
  text-align: center;
}

.reviews h2 {
  margin:40px 0;
  font-size: 2rem;
}

.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.review-card {
  background: #f0f0f0;
  padding: 40px;
  border-radius: 8px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.review-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.client-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.review-meta {
  text-align: left;
}

.name {
  font-weight: 600;
  margin-bottom: 5px;
}

.stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.review-text {
  font-style: italic;
  color: #333;
}

@media (max-width: 768px) {
  .review-cards {
    flex-direction: column;
    gap: 20px;
  }

  .review-card {
    max-width: 100%;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  .review-card {
    padding: 20px;
  }
}


/* Appointment Card */
section.appointments {
  
  background: #d3d3d4;
  display: flex;
  justify-content: center;
  position: relative;    
  z-index: 1; 
  padding: 20px;            

}

.appointment-box{
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding:20px 20px 0 20px;
  width: 100%;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  position: relative;      
  z-index: 1;              
}


.appointments .person-image {
  flex: 1;
  text-align: center;
}

.appointments .person-image img {
  width: 100%;
  max-width: 350px;      /* smaller max */
  height: auto;
  border-radius: 8px;
}
.appointments .person1-image img {
  width: 100%;
  max-width: 350px;      /* smaller max */
  height: auto;
  border-radius: 8px;
}
.appointments .text-area {
  flex: 2;
  min-width: 300px;
  padding: 20px;
}

.appointments .text-area h2 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.appointments .text-area p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.appointments .text-area strong {
  display: block;
  margin-top: 10px;
}

.appointments .cta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.appointments .phone {
  font-size: 18px;
  color: #333;
}

.appointments h1 {
  text-align: left;
  color: goldenrod;
  width: 100%;
}

/* Footer base */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background:#020202;
  color: #f4f4f4;
  font-family: 'Poppins', sans-serif;
  padding: 20px 20px 20px;
}

.footer a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer a:hover {
  color: #fff;
}

.footer-main-container {
  display: flex;
  justify-content: space-evenly;  
  align-items: flex-start;
  margin: 0 auto;
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
  gap: 80px;  
}

.footer-main-container > div {
  flex: 1;
  min-width: 220px;

}

.footer-logo img {
  max-width: 180px;
}

.footer-services h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: goldenrod;
}

.footer-services ul {
  list-style: none;
  padding: 0;
}

.footer-services ul li {
  margin-bottom: 8px;
}

.footer-contact p {
  margin: 6px 0;
}

.footer-contact .icon {
  font-size: 16px;
  margin-right: 5px;
}

.footer-bottom {
  max-width: 1200px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom h1 {
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
  text-align: left;
}

.footer-bottom .phone {
  font-weight: bold;
  font-size:2rem ;

}

.footer-bottom .cpy {
  display: block;
  font-size: 14px;
  color:white;
  text-align: left;
}


/* Small tablets & large phones (481px – 768px) */
@media (max-width: 768px) {

  body {
    font-size: 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }

  /* Header */
  .header-box {
    padding: 12px 15px;
    border-radius: 15px;
  }

  /* Hero */
  .hero {
    padding: 70px 20px 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  /* Services */
  .service-box {
    width: 100%;
  }

  /* Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Grid layouts */
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .countries-container {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Contact */
  .contact-box-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-box {
    width: 100%;
    max-width: 360px;
    margin: auto;
  }

  /* Squad */
  .squad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
 
}

/* Tablets (iPad, 769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  body {
    font-size: 16px;
  }

  .header-box {
    flex-direction: row;   
    gap: 20px;
    padding: 20px;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 50px 20px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .service-box {
    width: 48%; 
  }

  .review-cards {
    gap: 40px;
  }

  
  .image-box img,
  .appointments .person-image img,
  .membership-box .image img {
    width: 100%;
    max-width: 100%;
    height: auto; 
  }

  .footer-main.container {
    flex-direction: row;
    text-align: left;
  }
  .footer-logo img {
    margin: unset;
  }
}

/* Tablets (iPad, 769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 2.4rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  body {
    font-size: 16px;
  }

  .header-box {
    flex-direction: row;   
    gap: 20px;
    padding: 20px;
  }

  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .hero {
    padding: 140px 20px;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .service-box {
    width: 48%; 
  }

  .review-cards {
    gap: 40px;
  }

  
  .image-box img,
  .appointments .person-image img,
  .membership-box .image img {
    width: 100%;
    max-width: 100%;
    height: auto; 
  }

  .footer-main.container {
    flex-direction: row;
    text-align: left;
  }
  .footer-logo img {
    margin: unset;
  }
}

/* service page*/
.service{
 background-image: url("images/service.jpg"); 
 background-size: cover;
 background-position: center;
 background-repeat: no-repeat;
 background-attachment: fixed;
 padding:  120px 20px ;

}
.service h1{
  margin-top: 30px;
  text-align: center;
  color:#CA8B16;

}
.service-container {
  max-width: 1200px;
  margin:auto;
  padding:  20px;
  
}

.service-box {
  background: rgba(68, 66, 66, 0.5);
  margin: 20px 0;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  color: #eaeef0;
  border: 1px solid rgba(255,255,255,0.2);
  width: 45%; 
}

 

.service-box:nth-child(odd) {
  margin-right: auto;
  text-align: left;
}

.service-box:nth-child(even) {
  margin-left: auto;
  text-align: left;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.service-box h3 {
  margin-bottom: 10px;
  color: #f0d67a;
  font-size: 20px;
}

.service-box h3 a {
  color: #f0d67a;
}

.service-box p {
  font-size: 15px;
  color: #eaeef0;
}

/*hub members page*/
.members-gallery {
  padding: 80px 20px;
  background: #f8f8f8;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.members-gallery h1 {
  font-size: 2.5rem;
  padding:40px;
  margin-bottom: 30px;
  color: black; 
  font-weight: 700;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.member {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.member:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.member img {
  width: 100%;
  max-width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: block;
  border: #c2a026;
}


.member h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 8px;
}

.member p {
  font-size: 1rem;
  color: #555;
  margin: 0;
}
@media (max-width: 480px) {

  .members-gallery {
    padding: 40px 10px;
  }

  .members-gallery h1 {
    font-size: 1.6rem;
    padding: 10px;
    margin-bottom: 20px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .member {
    padding: 15px;
  }

  .member img {
    max-width: 120px;
    height: 120px;
    margin-bottom: 12px;
  }

  .member h3 {
    font-size: 1.05rem;
  }

  .member p {
    font-size: 0.9rem;
  }
}


/*pr -work*/
.pr-details {
  padding-top: 80px; 
  padding-bottom: 80px;
  background: #222;
  margin: 0 auto;     
}

.pr-details h2 {
  font-size: 2.4rem;
  text-align: center;
  margin:40px 0;
  color: #deac36;
}

.pr-details p {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1rem;
  color: #edebeb;
}


.countries-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.country-box {
  background: white;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: flex-start; 
  gap: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;             
  box-sizing: border-box;
  min-width: 160px; 
  flex: 1 1 auto;       
}

.country-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.country-box .fi {
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.country-box .country-name {
  display: inline-block;
  word-wrap: break-word;
  word-break: break-word;       
  white-space: normal;   
}

 /*membership*/
.mem {
  background-color: white;
  margin: 0 auto;
  padding-top: 120px  ; 
  padding-bottom: 20px ;
  border-radius: 10px;
  margin-bottom: 20px;
}

.mem h1 {
  font-size: 2rem;
  text-align: center;
  color: #deac36; 
  font-weight:bold;
  
}

.membership-container {
  margin-top: 40px ;
  padding:20px;
  display: flex;
  gap:40px;
  flex-direction: column;
  background-color: #2c2727;
  border-radius: 12px;
}

.membership-container h1 {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 20px;
  color: #deac36; 
  font-weight: 700;
  
}
.membership-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap:30px;
  padding :25px;
  background:rgba(79, 76, 76, 0.2);
  justify-content: space-around; 
}



.membership-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.membership-box .text,
.membership-box .image {
  flex: 1 1 45%;
}

.membership-box .text h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #cba108;
  text-align:left;
}

.membership-box .text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f8f6f6;
  text-align: justify;
}

.membership-box .image img {
  width: 80%;
  height: auto;
  margin:0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.membership-box .image img:hover {
  transform: scale(1.05);
}

.membership-box:nth-child(odd) {
  flex-direction: row;
}

.membership-box:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .membership-box {
    flex-direction: column;
    text-align: center;
  }

  .membership-box .text,
  .membership-box .image {
    flex: 1 1 100%;
  }
}

/* contact page*/

.contact {
  padding: 150px 20px;
  background: #1a1a1a;
}

.contact-form-container {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding:80px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

.contact-form-container h2 {
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  color: #c2a026;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-button {
  text-align: center; 
  margin-top: 20px;
}

.btn {
  background: #c2a026;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #a8841d;
}

.contact-container {
  text-align: center;
  margin: 60px auto;
  padding: 20px;
}

.contact-container h1 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0a0a0a;
}

.contact-box-wrapper {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-box {
  flex: 0 0 300px;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-row .icon {
  font-size: 20px;
  color: #c2a026;
  min-width: 28px;
}

.contact-row a {
  color: #0a0a0a;
  text-decoration: none;
  font-weight: 500;
}

.contact-row a:hover {
  text-decoration: underline;
}

.btn-contact {
  display: inline-block;        
  border-radius: 5px;         
  text-decoration: none;
  font-weight: 400;
  background: rgb(202, 139, 22); ;
  color: white;    
  cursor: pointer;
  padding: 5px 10px; 
  align-items: center;          
}

.btn-contact:hover {
  color: rgb(220, 161, 13) ;             
  transform: scale(1.05);      
}


/* Responsive Design */
@media (max-width: 768px) {
  .contact {
    padding: 100px 15px;
  }

  .contact-form-container {
    padding: 20px;
  }

  .contact-box-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .contact-box {
    width: 100%;
    max-width: 500px;
  }
}

/*global page*/

.loan {
  padding: 70px 3px;
  background: #f8f8f8;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.loan-detail-container {
  max-width: 1200px;
  padding:50px;
  margin: 0 auto;
}

.loan-detail-container h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: 700;

}

.loan-detail-container p {
  font-size: 1.1rem;
  color: #555;
  padding:20px;
  margin-bottom: 50px;
  line-height: 1.6;
}

.loan-boxes {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap; 
}

.loan-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  flex: 1 1 300px; 
  max-width: 400px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}
.loan-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.loan-box h2 {
  color: #c2a026;
  margin-bottom: 15px;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.loan-box p {
  color: black;
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-style: bold;
  text-align: center;
}

.loan-image {
  padding: 20px;
  background: #fff;
  text-align: center; 
  font-family: 'Poppins', sans-serif;
}

.loan-image-container {
  max-width: 1200px;
  margin: 0 auto;
}

.loan-image img {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.loan-description {
  margin-top: 20px;
}

.loan-description h2 {
  font-size: 1.8rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.loan-description p {
  padding:20px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}


/* virtual office page*/

.office-details {
  background:url("images/virtual\ setup.jpg") no-repeat center center / cover; 
  padding-top:  80px ;
  padding-bottom: 60px; 
  padding-left: 10px;
  padding-right: 10px;;
  border-radius: 6px; 
}

.office-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  top: -30px;
}

.office-container h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color:rgb(152, 114, 18);
}
.office-container p {
  max-width: 800px;
  margin: 0 auto 20px auto; 
  font-size: 1.1rem;
  color: #353434;
  padding-bottom: 40px;
}

.charges-box {
  background: transparent; 
  padding: 20px;
  border-radius: 12px;
  margin:80px auto 40px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(35, 34, 34, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2); 
}

 .charges-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #f0d67a;
}

.charges-box p {
  font-size: 1.1rem;
  margin: 5px 10px;
  color: #f4f4f4;
}

 .contact-button {
  display: inline-block;
  background: #f0d67a;
  padding: 12px 25px;
  border-radius: 6px;
  margin-top: 20px ;
  text-decoration: none;
  font-weight: 600;
  color: #000;
  transition: background 0.3s;
}

.contact-button:hover {
  background: #e0c45c;
}

/*company setup page*/

.set-up-detail {
  width: 100%;
  background: url("images/company-setup.jpg") no-repeat center center/cover;
  padding: 150px 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.setup-container {
  position: relative; 
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.setup-container h1 {
  padding:40px;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color:white;
  font-weight: 700;
}

.setup-container p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #f5f5f5;
}

/* Services List */
.setup-box ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  text-align: left;
  max-width: 500px;
}

.setup-box ul li {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 12px;
  position: relative;
  text-align: center;

}

.contact-button {
  display: inline-block;
  background: #cba108;
  color: #fff;
  padding: 14px 30px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.contact-button:hover {
  background: #e0b63d;
  transform: translateY(-3px);
}

/* OCI page*/
.oci-details {
  background:#020202;
  padding:100px 20px;
}

.oci-container h1 {
  text-align: center;
  color: #c7a719;
  padding:40px;
  font-size: 2.2rem;
}

.oci-box h2 {
   color: #d7ad25;
  margin: 15px 0 5px;
  font-size: 1.6rem;
  text-align: center;
}

.oci-box p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  text-align: center;
}

.oci-box ul {
  list-style: none;          
  padding: 0;
  margin: 0;
  text-align: center;
}

.oci-box li {
  font-size: 1rem;
  padding: 10px 0;
  color:white;
}

.oci-box li:last-child {
  border-bottom: none;        
}

/*privacy page*/
.legal-page.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 40px;
  box-sizing: border-box;
}

.legal-page {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 40px auto;
  color: #222;
  line-height: 1.7;
}

.legal-page h2 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #333;
}

.legal-page p {
  font-size: 1rem;
  color: #444;
}

.legal-page ul {
  margin-left: 1.1rem;
  color: #444;
}

.note {
  margin-top: 18px;
  font-size: 0.95rem;
  color: #666;
}


.sports-hero {
  background: linear-gradient(135deg, #0a1a2f, #102a44);
  padding-top: 150px;
  padding-bottom: 40px;
  background:white;
}

.sports-hero-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.sports-hero-container h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.team-description {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
   color: #666;
}

.team-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}


.team-card {
  width: 350px;
  background: #ffffff;
  color: #000;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-card h3 {
  font-size: 20px;
  color: #0a1a2f;
  margin-bottom: 5px;
}

.team-card p {
  font-size: 16px;
  
}

.contact-btn-wrapper {
  margin-top: 50px;
}

.contact-btn {
  background: #f4b400;
  color: #000;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-btn:hover {
  background: #ffffff;
  color: #0a1a2f;
}

.squad-section {
  padding: 80px 30px;
  text-align: center;
}

.squad-title {
  font-size: 32px;
  margin-bottom: 60px;
}

.squad-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.player-card {
  width: 350px;
  padding: 15px;
  background: #393838;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(39, 38, 38, 0.4);
  transition: 0.3s;
  color: #ffffff;
}


.player-card:hover {
  transform: translateY(-5px);
}

.player-card img {
  width: 180px;            
  height: 180px;
  border-radius: 50%;      
  object-fit: cover;       
  border: 4px solid goldenrod;  
  margin: 0 auto 15px;    
  display: block;
 background:white;  
}
.view-btn {
  text-decoration: none;
  background:goldenrod;
  color: #070707;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background:white;
  transform: translateY(-2px);
}

@media (max-width: 992px) {

  .sports-hero {
    padding-top: 120px;
    padding-bottom: 40px;
  }

  .sports-hero-container h1 {
    font-size: 34px;
  }

  .team-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .team-cards {
    gap: 25px;
  }

  .team-card {
    width: 300px;
  }

  .team-card img {
    width: 160px;
    height: 160px;
  }

  .squad-section {
    padding: 60px 20px;
  }

  .squad-title {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .player-card {
    width: 300px;
  }

  .player-card img {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 576px) {

  .sports-hero {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .sports-hero-container {
    padding-top: 40px;
  }

  .sports-hero-container h1 {
    font-size: 24px;
  }

  .team-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .team-cards {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team-card {
    width: 100%;
    max-width: 320px;
    padding: 18px;
  }

  .team-card img {
    width: 140px;
    height: 140px;
  }

  .team-card h3 {
    font-size: 18px;
  }

  .team-card p {
    font-size: 14px;
  }

  .contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 15px;
  }

  .squad-section {
    padding: 50px 15px;
  }

  .squad-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .squad-grid {
    gap: 25px;
  }

  .player-card {
    width: 100%;
    max-width: 320px;
  }

  .player-card img {
    width: 100px;
    height: 100px;
  }

  .view-btn {
    width: 40%;
    text-align: center;
    padding: 6px;
  }
}

/*players page*/

.player-profile-container {
  max-width: 1200px;
  margin: auto;
  padding-top: 140px;
  padding-bottom: 60px;
}

.profile-container {
  max-width: 1200px;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 80px;
}

.profile-left {
  padding-left: 80px;
}

.player-title {
  font-size: 60px;
  font-weight: bold;
  line-height: 1.1;
}

.player-title span {
  color: #d4af37;
}

.player-subtitle {
  margin-top: 15px;
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.85;
}

.profile-right {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.image-box-reference {
  width: 400px;
  height: 560px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 1) 50%,
    rgba(0, 0, 0, 1) 100%
  );
  border-radius: 26px;
  padding-top: 20px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  box-shadow: 0 25px 50px rgba(52, 52, 52, 0.85);
}

.image-box-reference img {
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.volleyball-journey {
  background: #ffffff;
  padding: 40px 20px;
}

.journey-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 30px;
  align-items: start;
}

.journey-card {
  position: sticky;
  top: 20px;
}

.player-card {
  background: #000;
  color: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.card-photo {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4af37; 
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;

  border: none;
  outline: none;
  box-shadow: none;
  background: none;
  border-radius: 0; 
}

.player-name {
  text-align: center;
  margin-top: 12px;
  font-size: 22px;
}

.player-name .gold {
  color: #d4af37;
}

.subtitle {
  display: block;
  text-align: center;
  margin-bottom: 12px;
  opacity: 0.8;
  font-size: 13px;
}
.stats-table {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #fff;
}

.stats-table .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.stats-table .label {
  background: #d4af37;
  color: #000;
  padding: 8px;
  font-weight: bold;
}

.stats-table .value {
  background: transparent;
  color: #fff;
  padding: 8px;
  border-left: 1px solid #fff;
}

.stats-table .row:not(:last-child) .label,
.stats-table .row:not(:last-child) .value {
  border-bottom: 1px solid #fff;
}

.journey-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.journey-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #222;
}

.player-gallery {
  padding: 50px 20px;
  background: rgb(49, 49, 49);
}

.gallery-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
  color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

@media (max-width: 992px) {


  .player-profile-container {
    padding-top: 180px;
    padding-bottom: 40px;
  }

  .profile-container {
    grid-template-columns: 1fr;
    margin: 60px auto;
    padding-top: 40px;
    text-align: center;
  }

  .profile-left {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .player-title {
    font-size: 44px;
  }

  .player-subtitle {
    font-size: 16px;
  }

  .image-box-reference {
    width: 340px;
    height: 480px;
  }

  .journey-container {
    grid-template-columns: 280px 1fr;
    gap: 25px;
  }

  .journey-content h2 {
    font-size: 28px;
  }

  .journey-content p {
    font-size: 15px;
  }


  .gallery-container {
    grid-template-columns: repeat(2, 1fr); 
    gap: 18px;
  }

  .gallery-item {
    height: auto;         
    aspect-ratio: auto;   
  }

  .gallery-item img {
    width: 100%;
    height: auto;         
    object-fit: contain;  
    display: block;
  }
}

@media (max-width: 576px) {

  .player-profile-container {
    padding-top: 120px;
    padding-bottom: 30px;
  }


  .profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-left {
    order: 1;                
    width: 100%;
    padding-top:4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 5;               
  }

  .player-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 6px;
    color: #000;              
    display: block;
  }

  .player-title span {
    color: #d4af37;
  }

  .player-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
    color: #333;              
    opacity: 1;
    display: block;
  }

  .profile-right {
    order: 2;
    width: 100%;
  }

  .image-box-reference {
    width: 260px;
    height: 380px;
    margin: 0 auto;
  }

  .image-box-reference img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .volleyball-journey {
    overflow: visible;
  }

  .journey-container {
    display: block;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .journey-card {
    position: static;
    width: 100%;
    max-width: 340px;
    margin: 0 auto 40px;
    clear: both;
  }

  .player-card {
    position: static;
    height: auto;
    overflow: visible;
  }

  .card-photo {
    width: 110px;
    height: 110px;
    margin: 0 auto 12px;
  }

  .card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .stats-table {
    width: 100%;
    margin-top: 12px;
    border: 1px solid #d4af37;
  }

  .stats-table .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stats-table .label {
    background: #d4af37;
    color: #000;
    padding: 8px;
    font-size: 14px;
  }

  .stats-table .value {
    background: #000;
    color: #fff;
    padding: 8px;
    font-size: 14px;
  }

  .journey-content {
    position: static;
    clear: both;
    padding-top: 10px;
  }

  .journey-content h2 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .journey-content p {
    font-size: 14px;
    line-height: 1.7;
  }

  .gallery-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .gallery-item {
    height: auto;
  }

  .gallery-item img {
    height: auto;
    object-fit: cover;
  }
}
