/* ----------------------------------

Template Name: Ambrox - Personal Portfolio Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Manrope
Main Color   : #5138ee

-------------------------------------

Table of contents
        
    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
        - Accordion
        - Tabs
    02. Preloader
    03 Navbar
        - Navbar Left
        - Nav Sidebar
        - Navbar Mobile
    04. Banner
        - Banner with typed text
    05. Services
        - Serices Grid
        - Services Single (Popup)
	06. Projects / Portfolio / Gallery
        - Project Heading (Including Fun Factor)
        - Grid Colum
        - Project Single (Popup)
    07. About Us
    08. CV / Resume / Personal Information
        - Bingraphy Tab
        - Skills Tab
        - Education Tab
	09. Pricing Table
        - Pricing Offer Banner
        - Pricing Item (Grid)
    10. Companies/Clients/Partner
    11. Available For Freelancer
    12. Blog
        - Blog Grid
        - Blog Single (Popup)
    13. Error 404
    14. Footer
    15. PHP Contact Form
    16. Others

*/

/* Enter your Own CSS Here */

.change-language-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  /* background-color: #5138ee; */
  color: #000;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.change-language-btn:hover {
  background-color: #f1e8a4;
}

.flag-icon {
  margin-right: 5px;
  width: 15px;
  height: 15px;

}

.change-language-btn .flag-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  margin-right: 5px;
}

.horizontal-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* or center/space-around */
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  /* Optional: allows wrapping on smaller screens */
}

.horizontal-list li {
  flex: 1 1 30%;
  /* Responsive width control */
  margin: 10px;
  min-width: 250px;
  /* Ensures reasonable minimum size */
}

.enhanced-paragraphs {
  max-width: 800px;
  margin: 20px auto 20px;
 
 
}

.enhanced-paragraphs p {
  font-size: 1.125rem;
  /* 18px */
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
  text-align: center;
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  max-width: 1200px;
}

.modal-content video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  color: white;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}