/* Custom CSS rules */

/* Increase Header Logo Size */
.header-1 .header-logo img {
    max-height: 60px; /* Adjust this value as needed */
    width: auto; /* Maintain aspect ratio */
}

/* Base styles for main menu links */
.header-1 .header-nav > ul > li > a {
    position: relative; /* Needed for absolute positioning of pseudo-element */
    text-decoration: none; /* Remove default underline */
    display: inline-block; /* Ensure proper positioning */
    padding-bottom: 5px; /* Add some space for the underline */
    background: none; /* Ensure no background interferes */
    color: inherit; /* Ensure text color is consistent */
}

/* Base style for the underline pseudo-element - ONLY for non-dropdown links */
.header-1 .header-nav > ul > li:not(.dropdown-nav) > a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px; /* Underline thickness */
    display: block;
    margin-top: 2px; /* Space between text and underline */
    right: 0; /* Start animation from right */
    background: linear-gradient(to right, #35afde, #27aa5e); /* Gradient background */
    transition: width .3s ease; /* Animation speed */
    -webkit-transition: width .3s ease;
}

/* Underline animation on hover - ONLY for non-dropdown links */
.header-1 .header-nav > ul > li:not(.dropdown-nav) > a:hover::after {
    width: 100%;
    left: 0; /* End animation at left */
}

/* Removed the specific override for .dropdown-nav:hover::after as it's no longer needed */

/* Typing Effect Styles */
#typing-target {
    border-right: 2px solid rgba(0, 0, 0, .75); /* Cursor */
    white-space: nowrap;
    overflow: hidden;
    display: inline-block; /* Or block if it should take full width */
    vertical-align: bottom; /* Align cursor properly */
    animation: blinkCursor .75s step-end infinite;
}

/* Cursor Blinking Animation */
@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: rgba(0, 0, 0, .75); } /* Adjust cursor color if needed */
}

/* Basic Slide Animations (JS will toggle these) */
.slide-out {
    animation: slideOut 0.5s forwards;
}

.slide-in {
    animation: slideIn 0.5s forwards;
}

@keyframes slideOut {
    from { transform: translateY(0); opacity: 1; }
    to { transform: translateY(-20px); opacity: 0; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Removed the conflicting custom select styling block */

/* Keep specific border-radius adjustment if needed */
.faq-contact-form .form-select{
  border-radius: 10px;
  color: #8a8c8d;
}

/* Note: This rule might be too aggressive, affecting other inputs. Consider refining selector if needed. */
.faq-contact-form input,
.faq-contact-form textarea {
  padding: 0 !important;
}

/* Gradient color for form icons */
.faq-contact-form .input-group-text .material-symbols-outlined {
  background: linear-gradient(to right, #35afde, #28ab5e); /* Your gradient colors */
  -webkit-background-clip: text; /* Clip background to text */
  background-clip: text;
  color: transparent; /* Make original text color transparent */
  /* Optional: Adjust icon size if needed */
  /* font-size: 1.2em; */
}

/* Style for FAQ form submit button */
.faq-contact-form .theme-btn-2 {
  background: linear-gradient(to right, #1e8cb3, #1e8cb3); /* Blue gradient */
  color: #fff; /* White text for contrast */
  border: none; /* Remove default border if any */
  /* Add other styles like padding, border-radius if needed, but they might be inherited */
}

/* Optional: Style for hover state */
.faq-contact-form .theme-btn-2:hover {
  background: linear-gradient(to right, #1e8cb3, #4cae4c); /* Darker blue/green gradient on hover */
  color: #fff;
}


/* Style for package form submit button */
.faq-contact-form .theme-btn-5 {
  background: linear-gradient(to right, #4cae4c, #1e8cb3); /* Blue gradient */
  color: #fff; /* White text for contrast */
  border: none; /* Remove default border if any */
  /* Add other styles like padding, border-radius if needed, but they might be inherited */
}

/* Optional: Style for hover state */
.faq-contact-form .theme-btn-5:hover {
  background: linear-gradient(to right, #1e8cb3, #4cae4c); /* Darker blue/green gradient on hover */
  color: #fff;
}

/* Add gap between section titles and subsequent paragraphs */
.section-title + p {
    margin-top: 15px; /* Adjust value as needed */
}

/* New Testimonial Styles */
.pmt_testimonials {
  text-align: center;
  padding: 50px 20px; /* Consider adjusting if using section-padding class */
  font-family: 'Segoe UI', sans-serif; /* May conflict with existing body font */
  background: #fff; /* May conflict with existing section backgrounds */
}

.pmt_subtitle {
  color: #cc2e4a;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.pmt_title {
  color: #0c1b33;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 40px;
}

.pmt_cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* gap: 20px; Removed gap again */
}

.pmt_card {
  width: 300px; /* Consider making responsive (e.g., using flex-basis or media queries) */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  transition: transform 0.3s ease;
  margin: 10px; /* Add margin for spacing if gap is removed */
}

.pmt_card:hover {
  transform: translateY(-5px);
}

.pmt_bg-light {
  background-color: #f0f8ff; /* AliceBlue */
}

.pmt_bg-white {
  background-color: #ffffff;
}

.pmt_profile {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
}

.pmt_profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.pmt_name {
  /* font-size: 16px; */
  font-weight: bold;
  color: #25ace3; /* Dark Pink */
  margin: 0;
  text-align: left; /* Align name left */
}

.pmt_role {
  font-size: 14px;
  color: #333;
  margin: 0;
  text-align: left; /* Align role left */
}

.pmt_text {
  /* font-size: 14px; */
  color: #444;
  text-align: left;
  line-height: 1.6;
}

/* Styling for contact form inputs (e.g., in who-we-are.html) */
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    background-color: transparent !important; /* Remove background */
    border: none !important; /* Remove all borders */
    border-bottom: 3px solid #7e7e7e !important; /* Add only bottom border (adjust color #ccc as needed) */
    border-radius: 0 !important; /* Remove border-radius */
    box-shadow: none !important; /* Remove any box-shadow */
    /* Consider adjusting padding if the default is removed by other styles */
    /* padding-left: 0 !important; */
    /* padding-right: 0 !important; */
}

/* Optional: Style for focus state */
.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-bottom-color: #27aa5e !important; /* Change bottom border color on focus (adjust color #27aa5e as needed) */
    box-shadow: none !important; /* Ensure no shadow on focus */
    outline: none !important; /* Remove default outline */
}
.news {
  padding: 4.8px 0 9.6px 0;
  text-align: center;
}

.news-heading {
  font-size: 44px;
  line-height: 1.4;

  color: #333;
}

.news p {
  font-size: 18px;
  margin-bottom: 16px;
  margin-top: 12px;
  line-height: 1.8;
}

.news input[type="email"] {
  display: inline-block;
  width: 60%;
  padding: 18px 36px;
  margin: 8px 0;
  border: 1px solid #ccc;
  box-sizing: border-box;
  height: 70px;
  margin-top: 18px;
  border-radius: 20px;
  border: none;
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.08);
}

.news input,
.news input::-webkit-input-placeholder {
  font-size: 16px;
  line-height: 3;
}

.news .bt {
  margin-left: -160px;
  font-size: 16px;
  display: inline-block;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 20px;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  background-color: #25ace3;
  color: #fff;
}




/* Portfolio Gallery Isotope Styles */
.gallery-filter {
  margin-bottom: 30px;
}

.gallery-filter button {
  background: transparent;
  border: none;
  margin: 0 10px;
  padding: 8px 15px;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.gallery-filter button::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(to right, #35afde, #27aa5e);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.gallery-filter button:hover {
  color: #333;
}

.gallery-filter button:hover::after {
  width: 70%;
}

.gallery-filter button.active {
  color: #25ace3;
}

.gallery-filter button.active::after {
  width: 80%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-content {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 85%;
  padding: 12px 25px;
  background: linear-gradient(135deg, rgba(46, 153, 193, 0.95), rgba(39, 153, 80, 0.95));
  color: #ffffff;
  border-radius: 0 4px 4px 0;
  transform: translateY(0);
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 2;
}

/* .gallery-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 25px 25px;
  border-color: transparent transparent transparent rgba(39, 153, 80, 0.95);
  transform: translateY(-100%);
}

.gallery-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 0 25px;
  border-color: transparent transparent transparent rgba(39, 153, 80, 0.95);
  transform: translateY(100%);
} */

.gallery-content h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.5px;
}

.gallery-item:hover .gallery-content {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Transitions for isotope filtering */
.gallery-container {
  transition: height 0.5s ease;
}

/* Top Header Styles */
.top-header {
    background: linear-gradient(90deg, rgba(37,172,227,1) 0%, rgba(20,167,80,1) 100%); 
    padding: 10px 0;
    font-size: 14px;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: nowrap;
}

.top-header .contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.top-header .contact-info a:hover {
    color: #cce2ff;
}

.top-header .contact-info i {
    margin-right: 5px;
}

.top-header .flag-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.top-header .flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-header .social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.top-header .social-icons a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-header .social-icons a:hover {
    color: #cce2ff;
}

.top-header .social-icons i {
    font-size: 16px;
}

/* Responsive styles */
@media (max-width: 768px) {
    .top-header .row {
        justify-content: center;
        text-align: center;
    }
    
    .top-header .col-md-6,
    .top-header .col-md-8,
    .top-header .col-md-4 {
        width: 100%;
        text-align: center;
        margin: 5px 0;
        display: flex;
        justify-content: center;
    }
    
    .top-header .contact-info {
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .top-header .contact-info a {
        margin: 0;
        justify-content: center;
    }
    
    .top-header .social-icons {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin-top: 10px;
        text-align: center;
    }
    
    .top-header .social-icons a {
        margin: 0;
    }
}




.service-btn {
  background: linear-gradient(to right, #4cae4c, #1e8cb3); 
  color: #fff; 
  border: none;
  font-size:16px;
}

.service-btn:hover {
  background: linear-gradient(to right, #1e8cb3, #4cae4c); 
  color: #fff;
}


.service2-btn {
  background: linear-gradient(to right, #1e8cb3, #4cae4c); 
  color: #fff; 
  border: none;
  font-size:16px;
}

.service2-btn:hover {
  background: linear-gradient(to right, #4cae4c, #1e8cb3); 
  color: #fff;
}

.service-heading {
   color: #05f0fb; 
 background-image: linear-gradient(45deg, #1e8cb3 , #4cae4c 100%); 
 background-clip: text; 
 -webkit-background-clip: text; 
 -webkit-text-fill-color: transparent; 

}

.inter-link {
  color: #25ace3; 
}

.inter-link:hover {
  color: #14a750;
}