/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

    /* ====== Header ====== */
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      background: #183f84;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }
    .logo img {
      height: 100px;
    }
    #nav-list {
      list-style: none;
      display: flex;
      margin: 0;
      padding: 0;
    }
    #nav-list li {
      margin-left: 25px;
    }
    #nav-list a {
      text-decoration: none;
      color: #bfae6e;
      font-weight: 600;
      transition: color 0.3s;
      font-size: 18px;
    }
    #nav-list a:hover {
      color: #ffffff;
      text-decoration: underline;
    }
    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      padding-bottom: 20px;
    }

    /* ====== Responsive Nav ====== */
    @media (max-width: 768px) {
      #nav-list {
        display: none;
        flex-direction: column;
        background: #1d503a;
        position: absolute;
        top: 70px;
        right: 0;
        width: 250px;
        padding: 15px;
      }
      #nav-list li {
        margin: 15px 0;
      }
      #nav-list a {
        color: white;
      }
      .menu-toggle {
        display: block;
      }
      #nav-list.active {
        display: flex;
      }
    }



       /* _+++++++++++++++++================ Carousel ==================== */
    .carousel {
      width: 100%;
      position: relative;
      overflow: hidden;
    }
    .carousel-img {
      width: 100%;
      height: 600px;
      overflow: hidden;
    }
    .carousel-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
       /* opacity: 0.60;  */
    }

    .img-text {
  position: absolute;
  top: 50%;         /* move down 50% */
  left: 50%;        /* move right 50% */
  transform: translate(-50%, -50%); /* center perfectly */
  color: white;
  font-size: 28px;
  font-weight: bold;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent background */
  padding: 10px 20px;
  border-radius: 8px;
  text-align: center;
}
   
    /* Owl nav */
    .owl-nav button {
      position: absolute;
      top: 45%;
      transform: translateY(-50%);
      background: rgba(0,0,0,0.5);
      color: #fff;
      border: none;
      padding: 10px 15px;
      border-radius: 50%;
    
       
    }
    .owl-nav .owl-prev { left: 30px; }
    .owl-nav .owl-next { right: 30px; }
    .owl-dots {
      position: absolute;
      bottom: 20px;
      width: 100%;
      text-align: center;
    }
    .owl-next span
    {
      font-size: 60px;
    }
     .owl-prev span
    {
      font-size: 60px;
    }
    .owl-dot span {
      width: 20px;
      height: 20px;
      background: #fff;
      border-radius: 50%;
      margin: 5px;
      display: inline-block;
      font-size: 30px;
    }
    .owl-dot.active span {
      background: #facc15;
    }

    
    


    /* <!-- about-sk-group --> */

   .main {
  display: flex;
  align-items: center;     /* vertical alignment */
  justify-content: center; /* centers content */
  gap: 40px;               /* space between left & right */
  padding: 40px 60px;
}

.left img {
  width: 120%;
  height: 50%;
  max-width: 450px;       /* keeps image responsive */
  border-radius: 10px;    /* optional: rounded corners */
}

.right {
  flex: 1;                /* take remaining space */
}

.text h4 {
  font-size: 1.6rem;
  color: #ED443E;    /* brand green */
  margin-bottom: 12px;
}

.text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #444;
}

.text ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.text ul li {
  margin-bottom: 8px;
}


    

    /* Investment Container */
    .container {
      background: var(--white);
      padding: 15px;
      border-radius: 15px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.3);
      width: 100%;
      max-width: 900px;
      margin: 40px auto;
    }

    .container h2 {
      text-align: center;
      margin-bottom: 30px;
      color: #c59e10;
      font-size:30px;
      margin-right: 20px;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .card {
      background-color:rgb(70, 70, 190);
      color:white;
      padding: 18px;
      text-align: center;
      
      font-size: 1.1rem;
      border-radius: 10px;
      transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      margin-right: 30px;
    }

    .card:hover {
      transform: translateY(-6px);
      background-color:red;
    }



    /* ====== Mobile Version ====== */
@media (max-width: 768px) {
  /* Header Logo */
  .logo img {
    height: 70px;
  }

  /* Carousel height smaller */
  .carousel-img {
    height: 300px;
  }

  .carousel-text h1 {
    font-size: 1.8rem;
  }
  .carousel-text h3 {
    font-size: 1.1rem;
  }
  .carousel-text p {
    font-size: 0.9rem;
  }
  .carousel-btn {
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  /* About Section */
  .main {
    flex-direction: column;   /* stack image & text */
    padding: 20px;
    gap: 20px;
  }

  .left img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0;   /* remove extra margins */
  }

  .right {
    text-align: center;
  }

  .text h4 {
    font-size: 1.3rem;
  }
  .text p, 
  .text ul {
    font-size: 0.95rem;
    line-height: 1.5;
    float: left;
    text-align: justify;
  }

  /* Investment Cards */
  .grid {
    grid-template-columns: 1fr; /* single column */
  }

  .card {
    font-size: 1rem;
    padding: 15px;
  }
}
    






/* *********************  eligible   ****************8 */

.eligible {
  background: #f9f9f9;        /* light background */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 1000px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  border-left: 5px solid #a78b29;
  
  
}

.text1 h3 {
  color: #a78b29;  /* dark green */
  margin-bottom: 15px;
  text-align: center;
    font-size: 30px;
    
}

.para p {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
 
}

.para ul {
  list-style: none;  /* remove default bullets */
  padding: 0;
  margin-bottom: 20px;
}

.para ul li {
  font-size: 18px;
  margin: 8px 0;
  padding-left: 28px;
  position: relative;
  color: #444;
 
}

.para ul li::before {
  content: "✔";             /* checkmark symbol */
  color: green;
 
  position: absolute;
  left: 0;
  top: 0;
}

.para p strong {
  color: #e63946;    /* red highlight for last line */
  font-size: 18px;
}

/* **************************<!-- How Your Investment Works -->************************* */

/* Container */
.eligible1 {
  max-width: 1000px;
  margin: 30px auto;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
  border-left: 5px solid #a78b29;

}

/* Heading */
.text2 h3 {
  margin: 0 0 15px;
  font-size:30px;
  color: #a78b29;
  text-align: center;
}

/* Paragraph */
.para1 p {
  color: #302d2d;
  line-height: 1.6;
  font-size: 20px;
  margin-bottom: 15px;
}

/* Steps List */
.steps {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: grid;
  gap: 16px;
}

.steps li {
  background: #f9fdfb;
  /* border: 1px solid #e0f0ea; */
  padding: 14px 16px;
  border-radius: 10px;
  line-height: 1.5;
  position: relative;
  font-size: 18px;
  
}

.steps li strong {
 color: #e63946;
}

.steps .icon {
  font-size: 1.4rem;
  margin-right: 8px;
}

/* Highlight section */
.highlight {
  margin-top: 20px;
  padding: 14px;
  background: #e8f8f2;
 border-left: 5px solid #a78b29;
  color: red;
}

/* Responsive */
@media (max-width: 600px) {
  .eligible1 {
    padding: 18px;
  }
  .text2 h3 {
    font-size: 1.3rem;
  }
  .steps li {
    font-size: 0.95rem;
  }
}


/* ***************<!-- want to invest --> */


    .invest-button {
      padding: 30px 40px;  
      font-size: 24px;    
      color: white;
      background-color: #0056b3;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      margin-left: 12%;
      margin-bottom: 100px;
      margin-top: 100px;
    }
    .invest-button:hover {
      background-color: blueviolet;
    }


     

      
        .form-container {
            background-color: rgba(255, 228, 196, 0.95); /* slightly transparent */
            padding: 30px 25px;
            border-radius: 10px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
            width: 90%;
            max-width: 600px;
        }

        .form-container h2 {
            margin-bottom: 20px;
            font-size: 30px;
            color: #0033cc;
            text-align: center;
        }

        label {
            display: block;
            margin-bottom: 6px;
            font-weight: bold;
            color: #333;
        }

        input[type="text"],
        input[type="tel"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 16px;
            border: 1px solid #ccc;
            border-radius: 6px;
            font-size: 16px;
        }

        input:focus {
            border-color: #2a5298;
            outline: none;
        }

        button {
            /* width: 100%; */
            padding: 14px;
            background-color: #2a5298;
            border: none;
            color: white;
            font-size: 18px;
            font-weight: bold;
            border-radius: 6px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #1e3c72;
        }

        .required {
            color: red;
        }

        /* Mobile-specific tweaks */
        @media (max-width: 480px) {
            .form-container {
                padding: 20px 15px;
            }

            .form-container h2 {
                font-size: 24px;
            }

            input[type="text"],
            input[type="tel"] {
                font-size: 15px;
            }

            button {
                font-size: 16px;
                padding: 12px;
            }
        }


        /* 
<!-------------------- SK Groups Services--------------- --> */


body {
      font-family: Arial, sans-serif;
      background: #f5f5f5;
      margin: 0;
      
    }

    h2 {
      text-align: center;
      margin-bottom: 50px;
      color: #a78b29;
      font-size: 30px;
    }
   

    /* ************cards---services**************  */

    .container1 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      justify-items: center;
      padding: 20px;
    }

    .card1 {
      background: #183F84;
      border-radius: 15px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      width: 100%;
      max-width: 350px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none; /* remove underline */
    }

    .card1:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .card1 img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card1-body {
      flex: 1;
      padding: 15px;
      text-align: center;
      background-color: #fff;
    }

    .card1-title {
      font-size: 1.2rem;
      margin: 10px 0;
      color: #ED443E;
    }

    .card1-text {
      font-size: 16px;
      color: black;
      line-height: 1.4;
    }

    /* remove underline for links wrapping cards */
    .container1 a {
      text-decoration: none;
      color: inherit; /* keep text color unchanged */
      display: block; /* make the whole card clickable */
    }

    /* 📱 Responsive */
    @media (max-width: 1024px) {
      .container1 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .container1 {
        grid-template-columns: 1fr;
      }

      .card1 img {
        height: 160px;
      }

      .card1-title {
        font-size: 1.1rem;
      }

      .card1-text {
        font-size: 14px;
      }
    }



           /*********************** Section *********************/

    .section {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: center;
      gap: 20px;
      margin-bottom: 20px;
      padding: 20px;
    }

    .section img {
      flex: 1;
      width: 50%;
      max-width: 30%;
      cursor: pointer;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .section img:hover {
      transform: scale(1.04);
    }

    .section-content {
      flex: 1;
      padding: 20px;
      min-width: 100px;
      background:white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 10px;
    
    }

    .section-content h1 {
      font-size: 25px;
      margin-bottom: 10px;
      color: #ED443E;
    }

    .section-content p {
      font-size: 16px;
      margin-bottom: 20px;
      line-height: 1.6;
      color: #333;
  
      
    }
   
    /* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 10px;
  }

  .section img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }

  .section-content {
    padding: 15px;
    text-align: center;
  }

  .section-content h1 {
    font-size: 20px;
  }

  .section-content p {
    font-size: 14px;
    float: left;
    text-align: justify;
  }
}


        /******************* Footer Main ***************/
.footer {
  background: #183F84; /* Dark Blue */
  color: white;
  padding: 60px 20px 30px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Column Titles */
.footer h6 {
  margin-bottom: 20px;
  font-size: 20px;
  color: #BFAE6E; /* Gold */
}

/* Text */
.footer p {
  margin: 8px 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: 0.3s;
}
 
.footer-links a i {
  color: #BFAE6E;
  margin-right: 8px;
}
.phone{
  color: #ffffff;         
  text-decoration: none;
  transition: 0.3s;        
}

.phone:hover {
  color: #BFAE6E;          
}

.footer-links a:hover {
  color: #BFAE6E;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #BFAE6E;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding: 30px;
  text-align: center;       /* centers text inside */
  font-size: 14px;
  color: #fff;
  background-color: #183F84;
  padding-left: 40px;
}

.copyright a {
  color: #BFAE6E;
  text-decoration: none;
  
}

.copyright a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: left;    
  }

  .footer-social {
    margin-top: 15px;
  }
}

@media (max-width: 600px) {
  .copyright {
    text-align: left;      /* left align only for mobile */
  }
}


  
    /* Popup overlay-- submite--form-- want invest--- */
    .popup {
        display: none; 
        position: fixed;
        z-index: 1000;
        left: 0; 
        top: 0;
        width: 100%; 
        height: auto;
        background: rgba(0,0,0,0.5); /* dim background */
        justify-content: center; 
       
    }

    /*submitee---form--------------/
  
    /* Popup overlay */
    .popup {
        display: none; 
        position: fixed;
        z-index: 1000;
        left: 0; 
        top: 0;
        width: 100%; 
        height: auto;
        background: rgba(0,0,0,0.5); /* dim background */
        justify-content: center; 
       
    }

    /* Popup box */
    .popup-content {
        background: #fff;
        padding: 20px 30px;
        border-radius: 10px;
        text-align: center;
        max-width: 400px;
        width: 90%;
        box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
        position: relative;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Message text */
    .popup-content p {
        font-size: 18px;
        font-weight: bold;
        color: #333;
        margin: 0;
    }

    /* Close button */
    .close-btn {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 22px;
        font-weight: bold;
        cursor: pointer;
        color: #888;
    }

    .close-btn:hover {
        color: #000;
    }

    /* Animation */
    @keyframes fadeIn {
        from { opacity: 0; transform: scale(0.9); }
        to { opacity: 1; transform: scale(1); }
    }
  


        /* ------------Popup overlay-- submite--form-- want invest--end----------------- */