/* components.css - Reusable component styles */
/* Buttons */
.btn {
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    border: 0;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;
}
.btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: #FEC015;
    transform: scaleY(0);
    transform-origin: 50% center;
    opacity: 0;
    visibility: hidden;
    border-radius: 30px;
    transition: 0.3s;
}
.btn:focus::before, .btn:hover::before {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}
.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e67300);
    color: white;
    border: none;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    border: 0;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    font-weight: 600;
    overflow: hidden;
    z-index: 1;

}
.btn-secondary::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: 50% center;
    opacity: 0;
    visibility: hidden;
    border-radius: 50px;
    transition: 0.8s;
}
.btn-secondary:focus::before, .btn-secondary:hover::before {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
}


.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Cards */
.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px 70px;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/*.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}*/

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(47, 49, 147, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Section Headers */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: var(--secondary-color);
}
.section-title span::after, .section-title span::before {
    content: "\f679";
    font-family: "Font Awesome 6 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 36px;
    margin-right: 17px;
    position: relative;
    top: -4px;
}
.section-title span::after {
    margin-right: 0;
    margin-left: 17px;
}
.left-title::after {
    left: 0;
    transform: translateX(0);
}
.small-title{
    font-size: 1.75rem;
    color: var(--secondary-color);
    position: relative;
    display: block;
    margin-bottom: 0;
}

.small-title span::after, .small-title span::before {
    content: "\f679";
    font-family: "Font Awesome 6 Pro";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-size: 24px;
    margin-right: 10px;
    position: relative;
    top: -3px;
}
.small-title span::after {
    margin-right: 0;
    margin-left: 10px;
}



.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.divider-line {
    width: 50px;
    height: 2px;
    background: var(--border-color);
}

.divider-icon {
    margin: 0 15px;
    color: var(--secondary-color);
}

/* Gallery */
.gallery-item {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(47, 49, 147, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes loaderSpin {
    from {transform: rotate(0deg);}
    to {transform: rotate(360deg);}
}
#page-loader img {width: 120px;animation: loaderSpin 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;}

/* Scroll Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-top-btn:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* components.css - For reusable components */

/* ===== HeaderTop Styles ===== */

/* Header Top Bar - Fixed Multi-line Issue */
.header-top-bar {
    background: linear-gradient(135deg, #2f3193 0%, #1a1c66 100%);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    min-height: 30px;
}

.header-top-left, .header-top-right {
    flex-shrink: 0;
}

/* Social Links */
.social-links-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.follow-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    color: var(--bs-white);
    font-size: 14px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-color);
    background: var(--bs-white);
}

/* Contact Links */
.contact-links {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2px 0;
}

.contact-links::-webkit-scrollbar {
    display: none;
}

.contact-link {
    color: var(--bs-white);
    background: rgba(255, 255, 255, 0.1);;
    text-decoration: none;
    font-size: 13px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 5px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    background: var(--bs-white);
}

.contact-link i {
    font-size: 14px;
    min-width: 16px;
}

.contact-text {
    margin-left: 4px;
}

/* Main Navigation */
.main-navigation {
    background: var(--bs-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 5px 0;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.navbar-brand {
    padding: 0;
    margin-right: 0;
}

.brand-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-text {
    text-align: center;
}

.brand-description {
    font-size: 14px;
    font-weight: 600;
    color: #2f3193;
    line-height: 1.4;
    max-width: 200px;
}

/* Navigation Links */
.navbar-nav {
    gap: 5px;
}

.nav-item.dropdown {
    position: relative;
}

.nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    padding: 10px 15px !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--bs-white) !important;
    background: var(--secondary-color);
}

.nav-link.dropdown-toggle::after {
    display: none;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-link.show i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-item {
    color: #2f3193;
    font-weight: 500;
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    color: #f58220;
    background: rgba(245, 130, 32, 0.05);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: #f58220;
    border-radius: 5px;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon i {
    font-size: 22px;
    line-height: 30px;
    font-weight: 400;
}



/* ===== FooterDetails Styles ===== */

/* Footer Styles */
.footer-area {
    background: linear-gradient(135deg, #1a1c66 0%, #2f3193 100%);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

/* Footer Widgets */
.footer-widgets {
    padding: 60px 0 40px;
    background: rgba(0, 0, 0, 0.1);
}

.footer-widget-title {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
}

.footer-widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #f58220;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-nav-link:hover {
    color: #f58220;
    padding-left: 5px;
}

.footer-nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-nav-link:hover i {
    transform: translateX(3px);
}

/* Contact Information */
.footer-contact-info {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1) !important;
    position: relative;
  z-index: 1;
   overflow: hidden;
}
.footer-contact-info::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../media/scamtay3/footer-img.png") bottom center no-repeat;
  opacity: 0.2;
  z-index: -1;
  filter: blur(4px);
      bottom: -2px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(245, 130, 32, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #f58220;
    font-size: 18px;
}

.contact-title {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.5;
}

.contact-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    word-break: break-all;
}

.contact-text a:hover {
    color: #f58220;
}

/* Visitor Statistics */
.footer-visitors {
    background: rgba(0, 0, 0, 0.15);
}

.visitor-stat {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f58220, #ff9e42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    color: white;
    font-size: 20px;
}

.stat-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
}

.stat-number {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}

/* Footer Bottom */
.footer-bottom-image {
    position: relative;
    overflow: hidden;
}

.footer-bottom-image img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: cover;
}

.footer-bottom-content {
    background: rgba(0, 0, 0, 0.2);
}

.footer-social-logos {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.social-logo {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-logo:hover {
    opacity: 1;
    transform: translateY(-3px);
    filter: brightness(0) saturate(100%) invert(75%) sepia(45%) saturate(6476%) hue-rotate(348deg) brightness(100%) contrast(93%);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.footer-policy-links {
    display: inline-flex;
    gap: 20px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #f58220;
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: #f58220;
}

.footer-link:hover::after {
    width: 100%;
}

/*.developed-by {
    display: inline-block;
}

.developed-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.developed-link:hover {
    color: #f58220;
}*/


.powered-by {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.powered-by-text {
    font-size: 12px;
    opacity: 0.8;
}

.powered-by-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
}

    .powered-by-link:hover {
        color: #f58220;
        text-decoration: underline;
    }


/* Responsive Design for Header */
@media (max-width: 1199px) {
    .contact-links {
        gap: 15px;
    }
    .contact-link i {
        font-size: 16px;
    }
    .footer-widget-title {
        cursor: pointer;
        position: relative;
        margin: 0;
        padding: 10px 0;
    }

    .footer-widget-title::after {
        content: "+";
        position: absolute;
        right: -20px;
        top: 0;
        font-size: 18px;
        transition: transform 0.3s ease;
        background: initial;
        left: inherit;
    }

    .footer-widget.active .footer-widget-title::after {
        content: "-";
    }

    .footer-nav {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
    }

    .footer-widget.active .footer-nav {
        max-height: 1000px; 
    }
    .contact-item{
        flex-direction: column;
    }
    .contact-icon{
        margin: 0 0 15px;
    }
}

@media (max-width: 992px) {
    .header-top-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-top-left, .header-top-right {
        width: 100%;
        justify-content: center;
    }
    
    .social-links-wrapper {
        justify-content: center;
    }
    
    .contact-links {
        justify-content: center;
        overflow-x: visible;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .brand-wrapper {
        flex-direction: column;
        gap: 5px;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .brand-description {
        font-size: 12px;
        max-width: 150px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: absolute;
        width: 94%;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 90px;
    }
    
    .dropdown-menu {
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.02);
    }
    .footer-widgets {
        padding: 40px 0 20px;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .border-start.border-end {
        border: none !important;
    }
    .footer-social-logos {
    justify-content: center;
   }
.powered-by {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 767px) {
    .header-top-bar {
        padding: 6px 0;
    }
    
    .follow-text {
        display: none;
    }
    
    .social-link {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .contact-link {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .brand-wrapper {
        flex-direction: row;
        gap: 10px;
    }
    
    .brand-description {
        display: none;
    }
    .footer-bottom-content .row > div {
        margin-bottom: 20px;
    }
    
    .footer-bottom-content .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer-social-logos {
        justify-content: center;
    }
    
    .footer-policy-links {
        gap: 10px;
    }
    
    .visitor-stat {
        padding: 12px 20px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .footer-bottom-content .row > div {
    margin-bottom: 15px;
}

    .footer-bottom-content .row > div:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .contact-links {
        gap: 8px;
    }
    
    .contact-link {
        font-size: 11px;
        padding: 4px 6px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .brand-logo {
        height: 35px;
    }
        .footer-widgets {
        padding: 30px 0 15px;
    }
    
    .visitor-stat {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }
    
    .stat-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
    .navbar-collapse{
      top: 60px;
    }
}

@media (max-width: 400px) {
    .contact-link i {
        font-size: 14px;
    }

    
    .social-links {
        gap: 6px;
    }
    .footer-visitors .col-6{
      width: 100%;
      margin:10px 0;
    }
}