/*
Theme Name: Sk Themes
Theme URI: https://digitalvishnu.net/
Author: Shiva Mishra
Author URI: https://digitalvishnu.net/author/shivamishra
Description: Shiva Mishra

Requires PHP: 7.0
Version: 0.0.1
Text Domain: skthemes
Tags: 
*/


/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

/*@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700;900&display=swap');*/

    :root
    {
      --primary: #1ABC9C;
      --primary-light: #A7D8D0;
       --primary-light-skyblue: #f7f9fc;
      --text-color: #463E55;
       --header-color: #fff;
       --bg-color:  #ffffff;
      --heading-color: #121422;
      --input-border: #BEC2CE;
      --white-color:#fff;
    }
    body
    {
      font-family: 'Roboto', sans-serif;
      color: var(--text-color);
      font-weight: 400;
      background-color: var(--bg-color);
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }



    header, .header {
      display: flex;
      justify-content: center;
      padding: 10px 20px;
      background:  var(--header-color);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    
    .header-container{
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 100%;
      width: 80%;
    }

    .logo {
      display:flex;
      font-size: 1.5rem;
      font-weight: bold;
      color: #2C3E50;
       gap: 3px;
    }

    .menu {
      display: flex;
      gap: 20px;
    }

    .menu a {
      text-decoration: none;
      color: #2C3E50;
      font-size: 1.3rem;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: var(--primary);
    }

    .auth-buttons {
      display: flex;
      gap: 10px;
    }

    .auth-buttons button {
      padding: 10px 15px;
      border: none;
      border-radius: 5px;
      font-size: 1.3rem;
      cursor: pointer;
      transition: box-shadow 0.3s;
    }

    .auth-buttons .login {
      background: var(--primary);
      color: #fff;
    }

    .auth-buttons .signup {
      background: #fff;
      color: var(--primary);
      border: 1px solid var(--primary);
    }

    .auth-buttons button:hover {
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    }

    .drawer {
      position: fixed;
      top: 0;
      left: -250px;
      width: 250px;
      height: 100%;
      background: #fff;
      color: #2C3E50;
      padding: 20px;
      box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
      transition: left 0.3s;
      z-index: 1001;
    }

    .drawer.active {
      left: 0;
    }

    .drawer a {
      display: block;
      text-decoration: none;
      color: #2C3E50;
      font-size: 1.3rem;
      margin: 15px 0;
      border-bottom: 1px solid #ddd;
      padding-bottom: 5px;
      transition: color 0.3s;
    }

    .drawer a:hover {
      color: var(--primary);
    }

    .drawer-toggle {
     font-size: 1.5rem;
      cursor: pointer;
      color: #2C3E50;
    }

    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none;
      z-index: 1000;
    }

    .overlay.active {
      display: block;
    }
    
      @media (max-width: 768px) {
      .menu {
        display: none;
      }

      .drawer-toggle {
        display: block;
      }
      .header-container{
          width:100%;
      }
    }

    @media (min-width: 769px) {
      .drawer-toggle {
        display: none;
      }
    }
    
    
    /* Profile Box */
    .profile-box {
      position: relative;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .profile-box img {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      object-fit: cover;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .profile-box img:hover {
      transform: scale(1.1);
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

  

    /* Dropdown Menu */
    .dropdown-menu {
      position: absolute;
      top: 65px;
      right: 0;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      width: 220px;
      display: none;
      animation: fadeIn 0.3s ease forwards;
      z-index: 1000;
    }

    .dropdown-menu ul {
      list-style: none;
    }

    .dropdown-menu ul li {
      border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu ul li:last-child {
      border-bottom: none;
    }

    .dropdown-menu ul li a {
      display: block;
      padding: 15px 20px;
      text-decoration: none;
      color: #333;
      font-size: 15px;
      font-weight: 500;
      transition: background 0.3s ease, color 0.3s ease;
    }

    .dropdown-menu ul li a:hover {
      background: #f5f5f5;
      color: #007BFF;
    }

    /* Animation for Dropdown */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Show Dropdown */
    .profile-box.active .dropdown-menu {
      display: block;
    }

    /* Responsive Navbar */
    @media (max-width: 768px) {

      .profile-box span {
        display: none; /* Hide username for smaller screens */
      }
    }
    
/*-----------------------------------*\
  #Footer
\*-----------------------------------*/
  /* Footer Styles */
    .footer {
        background-color: #fff;
        color: #333;
        padding: 30px 0;
        font-family: Arial, sans-serif;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Box shadow for modern look */
        position: relative;
        z-index: 10;
    }

    .footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }

    /* Links Section */
    .footer-links {
        margin-bottom: 20px;
    }

    .footer-links a {
        color: #333;
        text-decoration: none;
        margin: 0 15px;
        font-size: 16px;
        font-weight: bold;
        transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-links a:hover {
        color: #1ABC9C;
        transform: translateY(-5px); /* Hover effect */
    }


    /* Footer Text Section */
    .footer-text p {
        font-size: 14px;
        color: #666;
    }

    /* Mobile Responsiveness */
    @media (max-width: 768px) {
        .footer-links {
            margin-bottom: 20px;
        }

        .footer-links a {
            display: inline-block;
            margin: 0 10px;
        }

        .footer-text p {
            font-size: 12px;
        }
    }
/*-----------------------------------*\
  #Pre Used CSS
\*-----------------------------------*/
.wt-80  {
    width:80px;
}
.wt-280{
    width:280px;
}
.wt-380{
    width:380px;
}
.maxW-600{
	max-width: 600px;
	}
.maxW-900{
   max-width: 900px; 
}
.maxW-1200{
max-width: 1200px;
}
.maxW-1600{
	max-width: 1600px;
	}


.w-40{
    width:40%;
}
.w-80{
    width:80%;
}
.w-100{
    width:100%;
}

.h-40{
	height: 40%;
}
.h-80{
	height: 80%;
}
.h-100{
	height: 100%;
}
.ht-280{
	height: 280px;
}

.ht-300{
	height: 300px;
}
.mt-15{
    margin-top: 15px;
}
.mt-25{
    margin-top: 25px;
}
.mt-35{
    margin-top: 35px;
}
.mr-15{
    margin-right: 15px;
}
.mr-25{
    margin-right: 25px;
}
.mr-35{
    margin-right: 35px;
}
.m-at{
	margin: auto;
}

.p-15{
    padding: 15px;
}
.p-20{
    padding: 20px;
}

.bd-redius-8{
border-radius: 8px;
}
.bd-redius-15{
border-radius: 15px;
}

.primary-border, .primary-hr{
    border: 3px solid #1abc9c;
}
.primary-border-t{
    border-top: 4px solid #1abc9c;
}
.primary-border-b{
    border-bottom: 4px solid #1abc9c;
}
.primary-border-r{
    border-right: 4px solid #1abc9c;
}
.primary-border-l{
    border-left: 4px solid #1abc9c;
}

.bold{
    font-weight: bold;
}

.border-none{
    outline:none;
    border:none;
}
.center{
    justify-content:center;
    text-align:center;
    align-items:center;
}
.wrap{
	flex-wrap:wrap;
}

 .fb-clr{
 background-color:  #0165E1;
 color: #fff;
}
.ig-clr{
	background-color: #E4405F;
	color: #fff;
}
.twt-clr{
	background-color:  #1D9BF0;
	color: #fff;
}
.bg-clr{
	background: var(--grey);
}
.input-bg{
background-color: #ffffff;
color: #000;
}

.primary-bg{
    background:var(--primary);
}
.primary-text{
    color:var(--primary);
}

.d_bx {
    background: #e3f2fd;
    color: #0d47a1;
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
    text-align: center;
    font-style: italic;
    font-size: 1.1rem;
}

.d_bx h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #01579b;
}
/*-----------------------------------*\
  #COLOR CLR
\*-----------------------------------*/
.lsb {
    background: var(--primary-light-skyblue);
}
/*-----------------------------------*\
  #Line
\*-----------------------------------*/
hr{
   border-bottom: 1px solid #e0e0e0; 
}
/*-----------------------------------*\
  #Button BTN
\*-----------------------------------*/

button, .button, .btn {
            display: inline-block;
            padding: 10px 20px;
            border: 2px solid transparent;
            border-radius: 5px;
            text-decoration: none;
            color: #fff;
            font-size: 16px;
			font-weight: 600;
            cursor: pointer;
            transition: 0.3s ease;
        }
button:hover, .button:hover , .btn:hover{
            opacity: 0.8;
        }

.btnPrimary, .primary-clr {
    background:var(--primary);
    color:#fff;
}

.close-button {
            background: #e74c3c;
        }

.delete-button {
	background-color: #dc3545;
	
}

.delete-button:hover {
	background-color: #c82333;
}
.disabled-btn, .disabled, .disabled-button  {
    background-color: red; /* Change this to your desired color */
    color: white; /* Optional: Change text color for better contrast */
    cursor: not-allowed; /* Optional: Change cursor style */
}        



/*-----------------------------------*\
  #Popup Model CSS
\*-----------------------------------*/

 /* Popup Styling */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            display: none; /* Hidden by default */
        }

        .popup-content {
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .popup-content h1 {
            font-size: 36px;
            color: #e74c3c;
            margin-bottom: 20px;
        }

        .popup-content p {
            font-size: 18px;
            line-height: 1.6;
            color: #555;
        }
           /* Responsive Design */
        @media (max-width: 600px) {
            .popup-content h1 {
                font-size: 28px;
            }

            .popup-content p {
                font-size: 16px;
            }
        }

/*-----------------------------------*\
  #Pagination CSS
\*-----------------------------------*/

.pagination {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.pagination a, .pagination strong {
    margin: 0 5px;
    padding: 8px 12px;
    border: 1px solid #007BFF;
    color: #007BFF;
    text-decoration: none;
    border-radius: 4px;
}

.pagination a:hover {
    background-color: #007BFF;
    color: white;
}

.pagination strong {
    background-color: #007BFF;
    color: white;
    border: none;
}

/*-----------------------------------*\
  #Table CSS
\*-----------------------------------*/
.table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
	background-color: #ffffff;
}
th, td {
	padding: 12px;
	border: 1px solid #dee2e6;
	text-align: center;
}
th {
	background-color: #ffffff;
	color: #000;
}
tr:nth-child(even) {
	background-color: #ffffff;
}
tr:hover {
	background-color: #d1ecf1;
}

/*-----------------------------------*\
  #Section
\*-----------------------------------*/

.section, .sec{
            width: 100%;
            margin: 50px auto;
        }

#section {
            width: 100%;
            max-width: 450px; /* Max width for the form */
            margin: 50px auto;
        }


/*-----------------------------------*\
  #Fieldset
\*-----------------------------------*/

fieldset, .fieldset, .bx {
            border: none;
            background: #fff; /* White background for the form */
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow effect */
            transition: transform 0.3s ease-in-out;
        }

fieldset:hover, .fieldset:hover, .bx:hover {
            transform: translateY(-5px); /* Slight lift effect on hover */
        }

bx , .bx-item{
            background-color: #ffffff;
            padding: 60px 50px;
            margin: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}
   bx h3, .bx-item h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
       bx p, .bx-item p {
            font-size: 1.2rem;
            color: #666;
            line-height: 1.8;
        }

/*-----------------------------------*\
  #Form CSS
\*-----------------------------------*/
  /* STYLES FOR FORM */
form , .form{
      width: 100%;
      display: grid;
      grid-gap: 30px;
  }
  
  /* Flex Container for Form Rows */
.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Spacing between columns */
    margin-bottom: 20px;
}

/* Flex Items for Each Column */
.form-column {
    flex: 1;
    min-width: calc(50.33% - 20px); /* 2 Columns layout with spacing */
    display: flex;
    gap:10px;
}



/* Label Styling */
.form-label {
    display: block;
    font-weight: 600;
    color: #333;
}

/* Flex Column for Single Column on Mobile */
@media (max-width: 768px) {
    .form-column {
        min-width: 100%; /* Full width on mobile screens */
    }
}

  @media screen and (max-width: 480px) {
      /*form , .form {*/
      /*   display: flex !important; */
      /*  flex-wrap: wrap;*/
      /*}*/
  }
  
.form-row-break {
    flex-basis: 100%; /* Forces a new row */
}

.inputGroup, .input-group {
      width: 100%;
      position: relative;
      
  }
.inputGroup input ,.input-group input{
      border: 0;
      outline:none;
  }
.inputGroup label, .input-group label {
            display: block;
            font-weight: bold;
           margin-bottom: 10px; 
           /* color: #333;  Label color */
        }
        
.inputGroup__textfield, .textfield, .inputfield {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      width: 100%;
      font-size: 13px;
      padding: 20px;
      /*border: 0.1px solid #0009;*/
       box-shadow: 0 6px 8px rgba(174, 190, 205, .4);
      /*outline: 1;*/
      border-radius: 7px;
      transition: border 0.3s ease-in-out;
  
  }
 .inputGroup__textfield:focus, .inputGroup__textfield:active ,
.textfield:focus, .textfield:active , .inputfield:focus, .inputfield:active {
        /*border: 1px solid #D9D9D9;*/
         box-shadow: 0 6px 8px rgba(174, 190, 205, .4);
    }

 
 .form textarea, .inputGroup textarea, .input-group textarea {
    border: 0;
    box-shadow: 0 6px 8px rgba(174, 190, 205, .4);
    border-radius: 7px;
    outline: none;
    background:none;
  }
/* Focus styles for textarea in input-group */
.input-group textarea:focus,
.input-group textarea:active,
.inputGroup textarea:focus,
.inputGroup textarea:active {
    box-shadow: 0 6px 8px rgba(174, 190, 205, 0.4); /* Shadow effect */
  /*    border: 1px solid #1abc9c;Optional border highlight */
}


 /* Basic styling for the checkbox group */
.checkbox-group {
    margin-left: 10px;
}

/* Style the label to align items */
.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.5;
}

/* Style the default checkbox */
.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: #007bff; /* For modern browsers, use accent color for native styling */
}

/* Style for the link inside the label */
.checkbox-group a {
    color: #007bff;
    text-decoration: none;
    margin: 4px;
}

/* Change link color on hover */
.checkbox-group a:hover {
    text-decoration: underline;
}

/*-----------------------------------*\
  #OTP VERIFY Container
\*-----------------------------------*/
    .otp-container {
    background-color: #ffffff;
    /*padding: 2em 2.5em;*/
    /*border-radius: 10px;*/
    /*box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.15);*/
    /*max-width: 350px;*/
    text-align: center;
}

 .otp-container h2 {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 0.5em;
    color: #000;
    border-bottom: 2px solid #1ABC9C;
    padding: 10px;
}

 .otp-container  .otp-message {
    color: #555;
    font-size: 0.9em;
    margin-bottom: 1.5em;
}

 .otp-container  .otp-inputs {
    display: flex;
    /*justify-content: space-between;*/
    gap: 0.5em;
    margin:0 auto;
}

 .otp-container  .otp-box {
    width: 40px;
    height: 50px;
    font-size: 1.5em;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-align: center;
    transition: border-color 0.2s ease;
}

 .otp-container  .otp-box:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
}

 .otp-container  #verify-btn {
    /*margin-top: 1.5em;*/
    width: 100%;
    padding: 10px;
    font-size: 1em;
    font-weight: 600;
    color: #ffffff;
    background-color: #ccc;
    border: none;
    border-radius: 5px;
    cursor: not-allowed;
    transition: background-color 0.3s ease;
}

 .otp-container  #verify-btn.enabled {
    background-color: #1ABC9C;
    cursor: pointer;
}

v .note {
    font-size: 0.85em;
    color: #666;
    margin-top: 1em;
}

 .otp-container  .timer {
    margin-top: 0.5em;
    font-size: 0.9em;
    color: #333;
}

 .otp-container .hidden {
    display: none;
}

 .otp-container  #resend-link {
    font-size: 0.9em;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}
 .otp-container  #resend-link:hover {
    text-decoration: underline;
}

/*-----------------------------------*\
  #Loader
\*-----------------------------------*/

 .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: white;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 2000;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0s, opacity 0.3s ease;
    }

    .loader.active {
      visibility: visible;
      opacity: 1;
    }

    .spinner {
      width: 50px;
      height: 50px;
      border: 5px solid #f3f3f3;
      border-top: 5px solid #1ABC9C;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      0% {
        transform: rotate(0deg);
      }
      100% {
        transform: rotate(360deg);
      }
    }


/*-----------------------------------*\
  #Profile Verification CSS
\*-----------------------------------*/

.verified {
            display: inline-flex; /* To center content */
            align-items: center; /* Center vertically */
            justify-content: center; /* Center horizontally */
            width: 24px; /* Circle width */
            height: 24px; /* Circle height */
            border-radius: 50%; /* Make it circular */
           /* background-color: #1DA1F2;  Circle background color */
            color: white; /* Tick color */
            font-size: 13px; /* Tick size */
}

/*-----------------------------------*\
  #Bottom Navigation Bar Section
\*-----------------------------------*/
 .bottom-navbar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: white;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 10px 0;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        .bottom-navbar a {
            display: flex;
            justify-content: center;
            align-items: center;
            color: #1abc9c;
            background-color: white;
            font-size: 40px;
            padding: 10px;
      
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .bottom-navbar a:hover {
            background-color: none;
            color: white;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
             transform: scale(1.95);
            transform: translateY(-3px);
        }


        @media (max-width: 768px) {
            .bottom-navbar a {
                font-size: 24px;
                padding: 12px;
            }
        }
        
        /* Media query to hide the navigation on desktop screens */
        @media (min-width: 768px) {
            .bottom-navbar {
                display: none;
            }
        }
/*-----------------------------------*\
  #HERO Section
\*-----------------------------------*/


 /* Hero Section */
        .hero-section {
            display: flex;
           background-color: #fff;
            justify-content: space-between;
            align-items: center;
            padding: 10px;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 1);
           max-width: 1140px;
        }
      .hero-section .hero-subtitle{
            font-size: 18px;
      }

        /* Left Section: Image */
        .hero-left {
            flex: 1;
            background: url('/assets/img/business.jpg') no-repeat center center/cover;
            height: 400px;
            border-radius: 15px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        /* Right Section: Text */
        .hero-right {
            flex: 1;
            padding-left: 50px;
            max-width: 600px;
        }

        .hero-section h1 {
            font-size: 35px;
            color: #333;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
            text-transform: capitalize;
            letter-spacing: 1px;
        }

        .hero-section p {
            font-size: 16px;
            color: #555;
            margin-bottom: 10px;
            line-height: 1.6;
        }

        .cta-btn {
            background-color: var(--primary);
            color: white;
            padding: 10px 20px;
            font-size: 18px;
            font-weight: 700;
            text-decoration: none;
            border-radius: 10px;
            border: 2px solid #1ABC9C;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background-color: white;
            color:var(--white-color);
            border-color:var(--primary);
            transform: translateY(-3px);
        }

        /* Social Media Icons */
        .social-icons {
            display: flex;
            margin-top: 30px;
        }

        .social-icons a {
          /*  color: white;
            background-color: #1ABC9C;  Primary color for icons */
            padding: 7px;
            width:55px;
            border-radius: 50%;
            margin-right: 20px;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            text-align: center;
        }

        .social-icons a:hover {
            transform: scale(1.1); /* Slightly enlarge on hover */
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
            background-color: #16a085; /* Darker shade on hover */
        }

        .social-icons a i {
            transition: all 0.3s ease;
        }

        .social-icons a:hover i {
            color: white;
            transform: rotate(15deg); /* Rotate icons on hover */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                flex-direction: column;
                text-align: center;
            }

            .hero-left {
                width: 100%;
                height: 250px;
                margin-bottom: 30px;
            }

            .hero-right {
                padding-left: 0;
            }

            .hero-section h1 {
                font-size: 25px;
            }

            .hero-section p {
                font-size: 14px;
            }

            .cta-btn {
                padding: 10px 20px;
                font-size: 16px;
            }

            .social-icons {
                justify-content: center;
                margin-top: 40px;
            }
             .hero-section .hero-subtitle{
            font-size: 14px;
      }
        }
        
/*-----------------------------------*\
  #About Section
\*-----------------------------------*/  
   /* About Section */
    .about-section {
        padding: 100px 20px;
        background-color: #f7f9fc;
    }

    .about-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
    }

    .about-text {
        flex: 1;
        max-width: 600px;
        text-align: left;
    }

    .about-text h2 {
        font-size: 36px;
        color: #1ABC9C;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 18px;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .cta-btn {
        display: inline-block;
        padding: 12px 30px;
        font-size: 18px;
        color: #ffffff;
        background-color: #1ABC9C;
        text-decoration: none;
        border-radius: 10px;
        transition: background-color 0.3s ease;
        margin-top: 20px;
    }

    .cta-btn:hover {
        background-color: #16a085;
    }

    .about-image {
        flex: 1;
        max-width: 600px;
        text-align: center;
    }

    .about-image img {
        width: 100%;
        border-radius: 12px;
        border: 2px solid #1ABC9C;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .about-container {
            flex-direction: column;
            text-align: center;
        }

        .about-text h2 {
            font-size: 28px;
        }

        .about-text p {
            font-size: 16px;
        }

        .cta-btn {
            font-size: 16px;
            padding: 10px 25px;
        }
    }
/*------------- About Us Second ----------------------*\
  
        /* About Us Section */
        .about-us {
            position: relative;
            padding: 80px 20px;
            overflow: hidden;
            background: linear-gradient(135deg, #1ABC9C 50%, #ffffff 50%);
        }

        .about-us-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            gap: 40px;
        }

        /* Left Section: Content */
        .about-us-content {
            flex: 1;
            color: #ffffff;
        }

        .about-us-content h2 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .about-us-content p {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .about-us-content .cta-btn {
            display: inline-block;
            padding: 15px 40px;
 background-color: #ffffff ;
            color: #1ABC9C;
            text-decoration: none;
            font-size: 16px;
            font-weight: bold;
            border-radius: 10px;
            transition: all 0.3s ease-in-out;
            box-shadow: 0px 10px 20px rgba(255, 255, 255, 0.3);
        }

     
        /* Right Section: Image */
        .about-us-image {
            flex: 1;
            position: relative;
        }

        .about-us-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transform: rotate(-5deg);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .about-us-image img:hover {
            transform: rotate(0deg) scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Decorative Elements */
        .about-us-image::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 150px;
            height: 150px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            z-index: -1;
        }

        .about-us-image::after {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            z-index: -1;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-us-container {
                flex-direction: column-reverse;
                text-align: center;
            }

            .about-us-content {
             background: rgba(255, 255, 255, 1);
                color: #1ABC9C;
                padding:20px;
                   border-radius: 10px;
            }

            .about-us-content h2 {
                font-size: 36px;
            }

            .about-us-content p {
                font-size: 16px;
            }

            .about-us-image img {
                max-width: 100%;
            }
              .about-us-content .cta-btn {
 background-color: #1ABC9C;
            color: #ffffff;}
        }

/*-----------------------------------*\
  #Mission Section
\*-----------------------------------*/
 /* Mission Section */
        .mission {
            background-color: #fff;
            padding: 80px 20px;
            text-align: center;
            color: #333;
            box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 60px;
            border-radius: 15px;
        }

        .mission h2 {
            font-size: 36px;
            color: #1ABC9C;
            text-transform: uppercase;
            font-weight: bold;
        }

        .mission p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            margin: 0 auto;
        }

/*-----------------------------------*\
  #Teams Section
\*-----------------------------------*/
   
        /* Team Section */
        .team {
            background-color: none;
            padding: 80px 20px;
            text-align: center;
            color: #333;
            margin-bottom: 60px;
            border-radius: 15px;
        }

        .team .h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: bold;
           
        }
		  .team .p {
            font-size: 18px;
            line-height: 1.8;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
             margin-bottom: 43px;
        }
        .team-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .team-member {
            max-width: 300px;
            width: 100%;
            text-align: center;
            background-color: #fff;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
                border: 1px solid #1abc9c;
            transition: transform 0.3s ease-in-out;
        }

        .team-member:hover {
            transform: translateY(-10px);
        }

        .team-member .memberImg {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            border: 3px solid #1ABC9C;
            margin-bottom: 15px;
        }

        .team-member h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #333;
        }

        .team-member p {
            font-size: 16px;
            color: #555;
            margin-bottom: 25px;
        }

        .social-icon-link {
            margin-top: 5px;
            display: inline-flex;
            align-items: center;
            }

        .social-icon-link a {
            text-decoration: none;
            font-size: 20px;
            color: #333;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .social-icon-link a img{
        width:30px;
        height:30px;
        }

        .social-icon-link a:hover {
            color: #1ABC9C;
        }
    /* Responsive Design */
        @media (max-width: 768px) {
           
        }
/*-----------------------------------*\
  #Pricing Section
\*-----------------------------------*/


.pricing{
     margin: 30px 1%;
}

#price, .pricing-section {
  text-align: center;
   margin: 40px 1%;
}

.pricing-section  .plan {
  display: inline-block;
  margin: 10px 1%;
  font-family: 'Lato', Arial, sans-serif;
}

.pricing-section  .plan-inner {
  background: #fff;
  margin: 0 auto;
  min-width: 280px;
  max-width: 100%;
  position:relative;
  box-shadow:0 4px 6px rgba(174, 190, 205, .3);
  border-radius:8px;
}

.pricing-section  .entry-title {
  background: var(--primary-light);
  height: 140px;
  position: relative;
  text-align: center;
  color: #fff;
  margin-bottom: 30px;
  border-radius:8px;
  
}

.pricing-section  .entry-title>h3 {
  background: var(--primary);
  font-size: 20px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  border-radius:8px;
}

.pricing-section  .entry-title .price {
  position: absolute;
  bottom: -25px;
  background: var(--primary);
  height: 95px;
  width: 95px;
  margin: 0 auto;
  left: 0;
  right: 0;
  overflow: hidden;
  border-radius: 50px;
  border: 5px solid #fff;
  line-height: 80px;
  font-size: 24px;
  font-weight: 700;
}

.pricing-section  .price span {
  position: absolute;
  font-size: 9px;
  bottom: -18px;
  left: 20px;
  font-weight: 400;
}

.pricing-section  .entry-content {
  color: #323232;
}

.pricing-section  .entry-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.pricing-section  .entry-content li {
  border-bottom: 1px solid #E5E5E5;
  padding: 10px 0;
}

.pricing-section  .entry-content li:last-child {
  border: none;
}

.pricing-section  .btn {
  padding: 2em 4em;
  text-align: center;
}

.pricing-section  .btn a {
  background: var(--primary);
  padding: 10px 30px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
    border-radius:8px;
}
.pricing-section  .hot {
    position: absolute;
    top: -7px;
    background: #F80;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 9px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}

.pricing-section  .section-subtitle{
    font-weight:600;
}
/*-----------------------------------*\
  #Review Section
\*-----------------------------------*/
  /* Review Section */
        .reviews {
            padding: 80px 20px;
            text-align: center;
            background-color: #ffffff;
            margin-bottom: 60px;
        }

        .reviews h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
         .reviews p {
            margin-bottom: 40px;
        }

        .review-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .review-item {
            max-width: 500px;
            padding: 40px 20px;
            background-color: #ffffff;
            border-radius: 15px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
            border:3px solid #1abc9c;
            text-align: left;
            position: relative;
            transition: transform 0.3s ease-in-out;
            margin-bottom: 30px;
            max-height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .review-item:hover {
            transform: translateY(-10px);
        }
        

        .review-text {
            font-size: 18px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 30px;
             margin-top: 35px;
            font-style: italic;
        }

        .quote-icon {
            position: absolute;
            top: 20px;
            left: 20px;
            font-size: 40px;
            color: #1ABC9C;
        }

        .review-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .review-author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #1ABC9C;
            margin-right: 15px;
                margin-bottom: 30px;
        }

        .review-author h4 {
            font-size: 18px;
            font-weight: bold;
            color: #333;
        }

        .review-author p {
            font-size: 16px;
            color: #777;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .review-container {
                flex-direction: column;
                align-items: center;
            }

            .review-item {
                max-width: 90%;
            }
        }
/*-----------------------------------*\
  #FAQ Section
\*-----------------------------------*/
        /* FAQ Section */
          .faq-header {
            background-color: #1abc9c;
            color: white;
            padding: 20px;
            text-align: center;
            letter-spacing:1.5px;
        }
        .faq-container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
        }
        .faq-title {
            text-align: center;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }
        .search-bar {
            display: flex;
            justify-content: center;
            margin: 30px auto;
            width:65%;
        }
      
        .faq-item {
            background-color: white;
            margin-bottom: 15px;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        .faq-item h3 {
            background-color: #1abc9c;
            color: white;
            padding: 15px;
            margin: 0;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-item .answer {
            padding: 0px 15px;
            display: none;
            background-color: #ffffff;
            height: 0;
            overflow: hidden;
            transition: height 0.2s ease-in-out;
        }
        .faq-item.active .answer {
            display: block;
            height: auto;
            padding: 15px 15px;
        }
        .faq-item h3:hover {
            background-color: #16a085;
        }
        .faq-item h3 .toggle-icon {
            font-size: 18px;
            transition: transform 0.3s ease;
        }
        .faq-item.active h3 .toggle-icon {
            transform: rotate(180deg);
        }
        .cta-section {
            text-align: center;
            margin-top: 40px;
        }
        .cta-section button {
            padding: 15px 30px;
            background-color: #1abc9c;
            color: white;
            border: none;
            font-size: 16px;
            border-radius: 5px;
            cursor: pointer;
        }
        .cta-section button:hover {
            background-color: #16a085;
        }

        @media (max-width: 768px) {
            .faq-title {
                font-size: 28px;
            }
            .search-bar {
                width: 100%;
            }
        }
/*-----------------------------------*\
  #Contact Section
\*-----------------------------------*/

  /* Contact Section */
    .contact-section {
        padding: 40px 10px;
        background-color: #f7f9fc;
        text-align: center;
        justify-content: center;
        max-width: 100%;
    }
    .contact-section .container {
        width: 80%;
        margin: 0 auto ;
    }
    .section-title {
        font-size: 36px;
        font-weight: bold;
        color: #1ABC9C;
        margin-bottom: 20px;
        text-transform: uppercase;
    }

    .section-description {
        font-size: 18px;
        color: #666;
        margin-bottom: 40px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-content {
        display: flex;
        justify-content: space-between;
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: nowrap; /* By default, make the items align horizontally */
    }

    .contact-form {
        width: 48%;
        background-color: #fff;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-form h3 {
        font-size: 24px;
        margin-bottom: 20px;
    }

 
    /* Social Media Links */
    .contact-links {
        width: 48%;
        padding: 30px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .contact-links h3 {
        font-size: 24px;
        margin-bottom: 20px;
       
    }

    /* Location Map */
    .location-map {
       
        width: 100%;
    }

    .location-map h3 {
        font-size: 24px;
        color: #333;
        margin-bottom: 20px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
                align-items: center;
              
               
            }
    
            .contact-form, .contact-links {
                width: 100%;
                margin-bottom: 30px;
            }
    
            .contact-form {
                margin-bottom: 0;
            }
        
            .contact-section .container {
            width: 100%;
           
        }
    }

        
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
      
 .sm-container {
  display: flex;
  flex-direction: row; /* Side-by-side on large screens */
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Stack buttons on small screens */
  gap: 20px;
 /* width: 80%; */
  margin:20px;

}

/* General Button Styling */
.sm-container .sm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #000;
  width: 40%; /* Buttons take full width on small screens */
  max-width: 100%; /* Limit width for larger screens */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Flex alignment for button text and icons */
.sm-container .sm span {
  display: flex;
  align-items: center;
}

.sm-container .sm i {
  font-size: 24px;
  margin-right: 10px;
}

/* WhatsApp Specific */
.sm-container .whatsapp {
  background-color: #eaffea;
  border: 2px solid #25d366;
  color: #25d366;
}

.sm-container .whatsapp i {
  color: #25d366;
}

.sm-container .whatsapp .join-btn {
  background-color: #25d366;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 16px;
}

/* Telegram Specific */
.sm-container .telegram {
  background-color: #eaf4ff;
  border: 2px solid #0088cc;
  color: #0088cc;
}

.sm-container .telegram i {
  color: #0088cc;
}

.sm-container .telegram .join-btn {
  background-color: #0088cc;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
 .sm-container  .sm-container {
    flex-direction: column; /* Stack buttons vertically on small screens */
  }

.sm-container   .sm {
    width: 100%; /* Buttons span full width on small screens */
    max-width: 100%; /* Ensure no max width */
  }
}
  
        