@import url('https://fonts.googleapis.com/css2?family=Halant:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yatra+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amita:wght@400;700&display=swap');

/*=========== 1. General CSS (Reset Code) ===========*/
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --primary-green: #177945;
    --secondary-blue: #03428e;
    --glass-bg: rgba(255, 255, 255, 0.12);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #676a81;
    background: #fff;
    max-width: 1920px;
    margin: 0 auto;
    overflow-x: hidden;
    perspective: 1000px;
}

a, a:hover, a:active, a:focus {
    display: inline-block;
    text-decoration: none;
    color: #6a708e;
    font-size: 16px;
}

h1 { margin: 0; color: #43485c; font-size: 16px; font-family: 'Amita', serif; text-transform: capitalize; }
h2 { margin: 0; color: #43485c; font-size: 16px; font-family: 'Yatra One', cursive; text-transform: capitalize; }
h3, h4, h5, h6 { margin: 0; color: #43485c; font-size: 16px; font-family: 'Poppins', sans-serif; text-transform: capitalize; }
p { margin: 0; line-height: 1.8; color: #43485c; font-size: 14px; font-family: 'Poppins', sans-serif; }

img { border: none; max-width: 100%; height: auto; }
ul { padding: 0; margin: 0 auto; list-style: none; }
select, input, textarea, button { box-shadow: none; outline: 0 !important; }
button { background: transparent; border: 0; }

html, body { height: 100%; position: relative; }
.fix { position: relative; clear: both; }

/* Subtle 3D Depth Classes */
.tilt-element {
    transition: transform 0.2s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.2s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

/*=========== 2. Header ===========*/
.top-area { position: relative; z-index: 9999; }
nav.navbar.bootsnav.no-background { background-color: rgba(255, 255, 255, 0.95); border: none; }
nav.navbar.bootsnav {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.78) !important;
    border-bottom: transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/*===============================================
    Live Visitor IP Badge (Terminal Style)
===============================================*/
.ip-badge-container {
    position: fixed;
    top: 20px;
    right: 35px;
    z-index: 10000;
}

.ip-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(15, 23, 42, 0.88);
    border: 1px solid rgba(57, 236, 37, 0.45);
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Poppins', monospace;
    font-size: 14px;
    color: #e2e8f0;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.ip-badge i {
    color: #39ec25;
    font-size: 15px;
}

.ip-badge strong {
    color: #39ec25;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Green Blinking Indicator Dot */
.blink-indicator {
    width: 10px;
    height: 10px;
    background-color: #39ec25;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 12px #39ec25;
    animation: ipBlink 1.5s infinite ease-in-out;
}

@keyframes ipBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(0.85); }
}

/* Responsive adjustment for tablet/mobile screens */
@media (max-width: 991px) {
    .ip-badge-container {
        top: 14px;
        right: 85px; /* Leaves room for the hamburger menu toggle */
    }
    .ip-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .ip-badge span {
        display: inline-block;
    }
}


.navbar-header a.navbar-brand,
.navbar-header a.navbar-brand:hover,
.navbar-header a.navbar-brand:focus {
    display: inline-block;
    color: #03428e;
    font-size: 50px;
    font-weight: 800;
    padding: 20px 0px 30px;
}

nav.navbar.bootsnav ul.nav > li > a {
    font-size: 18px;
    font-weight: 500;
    padding: 20px 30px;
    transition: 0.3s linear;
}

nav.navbar.bootsnav ul.nav > li > a:hover,
nav.navbar.bootsnav ul.nav > li.active > a {
    color: #135442;
    transform: translateY(-2px);
}

.menu-ui-design { overflow-y: auto; }
@media (max-width: 991px) {
    .menu-ui-design { overflow-y: scroll; height: 350px; }
}

nav.navbar.bootsnav .navbar-toggle {
    position: relative;
    background-color: transparent;
    border: 1px solid #2c81f9;
    padding: 10px;
    top: 0;
}
nav.navbar.bootsnav .navbar-toggle i { color: #2c81f9; }

/*=========== 3. Welcome Hero ===========*/
.welcome-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url(assets/images/about/welcome-banner.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    height: 890px;
    background-attachment: fixed; /* Parallax effect */
}

.welcome-hero:before {
    position: absolute;
    content: " ";
    top: 0; left: 0;
    background: rgba(31, 44, 108, 0.65);
    width: 100%; height: 100%;
}

.header-text h2 { color: #fff; font-size: 54px; font-weight: 700; line-height: 1.5; }
.header-text h2 span { color: #d92cf9; }
.header-text p { color: #fff; font-size: 22px; font-weight: 300; margin: 30px 0 60px; letter-spacing: 1px; }

.header-text a {
    font-size: 18px;
    width: 250px;
    height: 60px;
    line-height: 60px;
    border-radius: 15px;
    color: #fff;
    background: rgba(78, 52, 93, 0.37);
    border: 1px solid rgba(148, 54, 255, 0.68);
    box-shadow: 0 20px 25px rgba(38, 173, 117, 0.3);
    transition: 0.3s ease;
    margin: 5px;
}

.header-text a:hover {
    font-size: 20px;
    box-shadow: 0 15px 25px rgba(28, 72, 169, 0.4);
    background: rgba(28, 83, 29, 0.52);
    border: 1px solid rgba(57, 236, 37, 0.55);
}

@media (max-width: 768px) {
    .welcome-hero .header-text a {
        display: block !important;
        width: 85% !important;
        max-width: 300px;
        margin: 10px auto !important;
    }
}

/*=========== 4. About ===========*/
.about { padding: 20px 0 10px; }
.about-content { padding-top: 60px; }
.single-about-txt h3 { font-size: 18px; color: #3c4258; line-height: 1.8; }
.single-about-txt p { font-size: 16px; color: #999fb3; padding: 10px 0 43px; border-bottom: 1px solid #999fb3; }
.single-about-add-info { margin: 15px 0; }
.single-about-add-info h3 { color: #636a82; font-size: 16px; }
.single-about-add-info p { font-weight: 500; margin-top: 1px; }

.single-about-img {
    position: relative;
    box-shadow: 0 10px 20px rgba(16, 47, 83, 0.3);
    animation: floatProfile 6s ease-in-out infinite;
    border-radius: 8px;
    overflow: hidden;
}

@keyframes floatProfile {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.single-about-img:before {
    position: absolute; content: " "; top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(17, 84, 98, 0.13);
}

.single-about-img img { max-width: 500px; height: 468px; }

.about-list-icon {
    display: flex; justify-content: center; align-items: center;
    position: absolute; bottom: 0; left: 0; width: 100%; height: 50px;
    background-image: linear-gradient(to right, rgba(213, 213, 151, 0.6), rgba(244, 234, 235, 0.26), rgba(252, 136, 252, 0.68));
}
.about-list-icon ul { display: flex; }
.about-list-icon ul li a {
    color: #fff; border: 2px solid; margin-left: 20px;
    border-radius: 8px; width: 30px; height: 30px; line-height: 28px; text-align: center;
}

/*=========== 5. Education ===========*/
.education { background: #f9fbfd; padding-top: 30px; }
.education-horizontal-timeline { padding: 20px 0; }
.single-horizontal-timeline {
    background: #fff; padding: 20px; border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); margin-bottom: 20px;
}
.single-horizontal-timeline .timeline-content h5 { margin: 15px 0; }
.single-horizontal-timeline p { color: #999fb3; }
.timeline-horizontal-border { display: flex; align-items: center; padding: 26px 0 30px; }
.timeline-horizontal-border i { font-size: 10px; color: #298936; margin: 10px; }
span.single-timeline-horizontal { display: inline-block; background: #b2c1ce; height: 2px; width: 380px; }
span.single-timeline-horizontal.spacial-horizontal-line { width: 200px; }

/*=========== 6. Skills ===========*/
.skill-content { padding: 50px 0 80px; }
.single-skill-content { padding-top: 100px; }
.section-heading h2 {
    font-size: 24px; font-weight: 600; text-transform: uppercase;
    padding-bottom: 20px; border-bottom: 1px solid #e5ebf2;
}
.single-progress-txt { display: flex; }
.single-progress-txt h3 { width: 10%; color: #0f4229; position: relative; top: 6px; left: 20px; }
.barWrapper { font-weight: 400; font-size: 20px; }
.progress {
    border-radius: 3px; overflow: visible; background: #e6ecf3;
    height: 8px; margin-top: 15px; width: 85%; margin-bottom: 37px;
}
.progress-bar {
    background: #177945; border-radius: 3px;
    box-shadow: 0 0 12px rgba(23, 121, 69, 0.5);
    transition: width 1.5s ease-in-out;
}

/*=========== 7. Experience ===========*/
.experience { font-family: "Yatra One", cursive; padding: 50px 0 100px; border-top: 1px solid #e5ebf2; }
.experience-content { padding-top: 100px; }
.single-timeline-box { margin-bottom: 75px; background: #fff; padding: 20px; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); }
.experience-time h3 { font-size: 16px; font-weight: 300; color: #636a82; margin-top: 14px; }
.main-timeline { position: relative; }
.main-timeline:before {
    content: ""; width: 2px; height: 84%; background: #b2c1ce;
    position: absolute; top: 1.5%; left: 45.8%; z-index: -1;
}
.timeline-content h4.title { font-size: 20px; font-weight: 600; }
.timeline-content h5 { color: #636a82; font-size: 15px; font-weight: 600; margin: 10px 0 20px; }
.main-timeline .description { font-size: 16px; color: #999fb3; }
.experience-duration { position: absolute; right: -80px; top: 0; color: #636a82; font-size: 16px; }
.experience-time-responsive { display: none; }
@media (max-width: 992px) {
    .experience-duration { position: static; text-align: center; margin-top: 10px; }
}

/*=========== 8. Community & Profiles ===========*/
.profiles { padding: 50px 0 100px; border: 1px solid #e5ebf2; }
.profiles-content { padding-top: 50px; }
.profile-txt { display: flex; align-items: center; flex-direction: column; }
.single-profile {
    position: relative; height: 200px; display: flex; justify-content: center;
    align-items: center; border-right: 1px solid #099e45; overflow: hidden;
    transition: background 0.5s linear;
}
.profile-icon-name { color: #174341; font-size: 16px; margin-top: 10px; }
.single-profile.profile-no-border { border-right: transparent; }
.profile-border { border-bottom: 1px solid #174341; }

.single-profile-overlay {
    display: flex; align-items: center; justify-content: center;
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(141, 243, 204, 0.8), rgba(129, 191, 235, 0.8));
    transform: scale(0); transition: 0.3s ease;
}
.single-profile:hover .single-profile-overlay { transform: scale(1); }

/*=========== 9. Portfolio ===========*/
.portfolio { padding: 50px 0 100px; border: 1px solid #e5ebf2; }
.portfolio-content { padding-top: 100px; }
.isotope .item { position: relative; overflow: hidden; margin-bottom: 30px; border-radius: 12px; }
.isotope .item img { width: 100%; height: 100%; transition: 0.5s; }
.isotope .item:hover img { transform: scale(1.1); }
.isotope-overlay {
    position: absolute; height: 100%; width: 100%;
    background: rgba(31, 44, 108, 0.7); display: flex;
    align-items: center; justify-content: center;
    transform: scale(0); transition: 0.3s;
}
.isotope-overlay a { color: #fff; font-size: 14px; }
.isotope .item:hover .isotope-overlay { transform: scale(1); top: 0; }

/*=========== 10. Contact ===========*/
/*===============================================
    11. Contact - Fixed Layout
===============================================*/
/*-------------------------------------
        11. Contact
--------------------------------------*/
.contact {
    background: #f9fbfd;
    padding: 50px 0 100px;
}

.single-contact-box {
    padding-top: 100px;
}

.contact-form .form-group {
    margin-bottom: 20px;

}

.contact-form .form-control {
    padding: 25px;
    font-size: 14px;
    border: 1px solid #fff;
    border-radius: 0px;
    box-shadow: none;
    outline: 0 !important;
    background: #fff;
    color: #636a82;
    resize: none;
}

/*--contct button--*/
.contact-form .single-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-transform: capitalize;
    margin-top: 3px;
    background: #355280;
    border: 1px solid #637cfe;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

.contact-form .single-contact-btn .contact-btn,
.contact-form .single-contact-btn .contact-btn:focus {
    margin-top: 0px;
    outline: 0 !important;
    border: 0;
    color: #fff;
    border-radius: 0px;
    font-size: 14px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;

}

.single-contact-btn:hover {
    background: #19604f;
    border: 2px solid #4eaa62;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .2);
}

/*--contct button--*/

/* contact-adress */
.contact-add-head h3 {
    font-size: 24px;
    color: #3c4258;
}

.contact-add-head p {
    font-size: 16px;
    text-transform: capitalize;
    color: #636a82;
    font-weight: 300;
    margin-top: 6px;
}

/* contact-adress */

/*.contact-add-info */
.contact-add-info {
    margin: 42px 0 52px;
}

.single-contact-add-info h3 {
    color: #636a82;
    font-weight: 500;
}

.single-contact-add-info p {
    color: #999fb3;
    font-size: 16px;
    margin-top: 18px;
}

.single-contact-add-info {
    margin-bottom: 26px;
}


/* Api contact form */

/* Contact form status message */
#email-status {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
    color: #4CAF50;
}

/* Disable button while sending */
.contact-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


/*.contact-add-info */

/*hm-foot-icon*/
.hm-foot-icon {
    /* float: left; */
}

.hm-foot-icon ul li {
    float: left;
}

.hm-foot-icon ul li>a {
    color: #1d4796;
    margin-right: 58px;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.hm-foot-icon ul li>a:hover {
    transform: scale(2);
    transition-duration: 200ms;
    color: #177945;
}

/*hm-foot-icon*/

.hm-footer-copyright p {
    color: #888ea5;
    text-transform: capitalize;
    padding: 38px 0;
}

.hm-footer-copyright p a {
    color: #888ea5;
}


/*===============================
    Scroll Top
===============================*/
#scroll-Top .return-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: none;
    width: 40px;
    line-height: 40px;
    height: 40px;
    text-align: center;
    font-size: 20px;
    cursor: pointer;
    color: #fff;
    background: #b636ff;
    border: 1px solid #b636ff;
    border-radius: 50%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    z-index: 2;
}

#scroll-Top .return-to-top:hover {
    background: #fff;
    color: #b636ff;
    border: 1px solid #b636ff;
}

#scroll-Top .return-to-top i {
    position: relative;
    bottom: 0;

}

#scroll-Top .return-to-top i {
    position: relative;
    animation-name: example;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    animation-duration: 1s;
}

@keyframes example {
    0% {
        bottom: 0px;
    }

    100% {
        bottom: 7px;
    }
}

.halant-semibold {
    font-family: "Halant", serif;
    font-weight: 600;
    font-style: normal;
}

.yatra-one-regular {
    font-family: "Yatra One", system-ui;
    font-weight: 400;
    font-style: normal;
}

.amita-bold {
    font-family: "Amita", serif;
    font-weight: 700;
    font-style: normal;
}

/*========================Thank you=================*/

:root{
 --primary-green:#177945;
 --secondary-blue:#03428e;
 --glass-bg:rgba(255,255,255,.12);
}
html{scroll-behavior:smooth;}
nav.navbar.bootsnav{
 backdrop-filter:blur(12px);
 background:rgba(255,255,255,.78)!important;
}
.community-section .badge-grid{
 grid-template-columns:repeat(4,minmax(0,1fr))!important;
 gap:24px!important;
}
.community-section .badge-grid a{
 min-height:180px;
 border-radius:18px;
 transform-style:preserve-3d;
 transition:transform .3s ease, box-shadow .3s ease;
}
.community-section .badge-grid a:hover{
 transform:translateY(-8px) rotateX(5deg) rotateY(5deg);
}
.single-about-img{
 animation:floatProfile 6s ease-in-out infinite;
}
@keyframes floatProfile{
 50%{transform:translateY(-8px)}
}
.progress-bar{
 box-shadow:0 0 12px rgba(23,121,69,.5);
}
