/* =====================================================
   HS ACCOUNT WEBSITE
   STYLE.CSS - PART 1
=====================================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Root Variables */

:root{

    --primary:#0F4C81;

    --secondary:#1D6FA5;

    --success:#28a745;

    --warning:#ffc107;

    --danger:#dc3545;

    --light:#f8f9fa;

    --dark:#212529;

    --text:#555;

    --white:#ffffff;

    --radius:12px;

    --shadow:0 10px 30px rgba(0,0,0,.08);

}

/* Body */

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    color:var(--text);

    background:#fff;

    line-height:1.8;

    overflow-x:hidden;

}

/* Images */

img{

    max-width:100%;

    height:auto;

}

/* Links */

a{

    text-decoration:none;

    transition:.3s;

}

/* Section */

section{

    padding:80px 0;

}

/* Headings */

h1,h2,h3,h4,h5,h6{

    color:var(--dark);

    font-weight:700;

    line-height:1.3;

}

p{

    color:var(--text);

}

/* Container */

.container{

    max-width:1200px;

}

/* =====================================================
NAVBAR
===================================================== */

.navbar{

    background:#fff;

    box-shadow:0 2px 15px rgba(0,0,0,.08);

    padding:15px 0;

    transition:.3s;

}

.navbar-brand{

    font-size:28px;

    font-weight:700;

    color:var(--primary)!important;

}

.navbar-brand i{

    margin-right:8px;

}

.navbar-nav .nav-link{

    font-weight:500;

    color:#444;

    margin-left:20px;

    transition:.3s;

}

.navbar-nav .nav-link:hover{

    color:var(--primary);

}

/* Sticky Navbar */

.sticky-top{

    z-index:999;

}

/* =====================================================
BUTTONS
===================================================== */

.btn{

    border-radius:50px;

    padding:12px 28px;

    font-weight:600;

    transition:.3s;

}

.btn-primary{

    background:var(--primary);

    border:1px solid var(--primary);

}

.btn-primary:hover{

    background:#0b3a61;

    border-color:#0b3a61;

}

.btn-success{

    background:var(--success);

    border:1px solid var(--success);

}

.btn-success:hover{

    background:#1f8b39;

    border-color:#1f8b39;

}

.btn-outline-primary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

}

/* =====================================================
BADGES
===================================================== */

.badge{

    font-size:14px;

    letter-spacing:1px;

    border-radius:30px;

    padding:10px 18px;

}

/* =====================================================
CARDS
===================================================== */

.card{

    border:none;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    transition:.35s;

}

.card:hover{

    transform:translateY(-8px);

}

/* =====================================================
UTILITY CLASSES
===================================================== */

.text-primary{

    color:var(--primary)!important;

}

.text-success{

    color:var(--success)!important;

}

.bg-primary{

    background:var(--primary)!important;

}

.bg-light{

    background:#f8f9fa!important;

}

.shadow-sm{

    box-shadow:0 8px 20px rgba(0,0,0,.08)!important;

}/* =====================================================
   STYLE.CSS - PART 2
   HERO & ABOUT SECTION
=====================================================*/

/* ===========================
HERO SECTION
=========================== */

.hero-section{

    background:linear-gradient(135deg,#f8fbff,#eef5ff);

    padding:100px 0;

}

.hero-section h1{

    font-size:52px;

    font-weight:700;

    color:#222;

    line-height:1.2;

}

.hero-section .lead{

    font-size:20px;

    color:#555;

    margin-bottom:25px;

}

.hero-section p{

    color:#666;

    margin-bottom:20px;

}

.hero-section .btn{

    margin-top:10px;

}

.hero-section img{

    max-width:100%;

    animation:floatImage 4s ease-in-out infinite;

}

/* Statistics */

.hero-section .col-4{

    margin-top:25px;

}

.hero-section h2{

    font-size:36px;

    font-weight:700;

}

.hero-section .col-4 p{

    font-size:15px;

    color:#777;

}

/* ===========================
ABOUT SECTION
=========================== */

#about{

    background:#ffffff;

}

#about img{

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

#about h2{

    font-size:40px;

    font-weight:700;

    margin-bottom:20px;

}

#about p{

    color:#666;

    line-height:1.9;

}

#about ul{

    margin-top:20px;

}

#about ul li{

    margin-bottom:15px;

    font-size:16px;

    color:#555;

}

#about ul li i{

    color:#28a745;

    margin-right:10px;

}

/* About Buttons */

#about .btn{

    margin-top:15px;

}

/* ===========================
BADGE
=========================== */

.badge{

    font-size:14px;

    font-weight:600;

    letter-spacing:1px;

}

/* ===========================
ANIMATION
=========================== */

@keyframes floatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* ===========================
RESPONSIVE
=========================== */

@media(max-width:991px){

.hero-section{

padding:70px 0;

text-align:center;

}

.hero-section h1{

font-size:40px;

}

.hero-section img{

margin-top:40px;

}

#about{

text-align:center;

}

#about img{

margin-bottom:30px;

}

}

@media(max-width:768px){

.hero-section h1{

font-size:32px;

}

.hero-section .lead{

font-size:18px;

}

.hero-section h2{

font-size:28px;

}

#about h2{

font-size:30px;

}

section{

padding:60px 0;

}

.btn{

width:100%;

margin-bottom:15px;

}

}/* =====================================================
   STYLE.CSS - PART 3
   SERVICES & WHY CHOOSE US
=====================================================*/

/* ===================================
   SERVICES SECTION
=================================== */

#services{

    background:#f8f9fa;

}

#services .service-card{

    background:#ffffff;

    border-radius:15px;

    padding:30px;

    transition:.35s;

    overflow:hidden;

}

#services .service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

#services .service-card i{

    transition:.3s;

}

#services .service-card:hover i{

    transform:scale(1.15);

}

#services h2{

    font-size:40px;

    margin-bottom:15px;

}

#services h4{

    margin:20px 0;

    font-weight:600;

}

#services p{

    color:#666;

    line-height:1.8;

}

/* ===================================
   WHY CHOOSE US
=================================== */

#why-choose-us{

    background:#ffffff;

}

#why-choose-us .card{

    padding:30px 20px;

    border-radius:15px;

    transition:.35s;

}

#why-choose-us .card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 35px rgba(0,0,0,.12);

}

#why-choose-us i{

    margin-bottom:20px;

    transition:.3s;

}

#why-choose-us .card:hover i{

    transform:rotate(8deg) scale(1.1);

}

#why-choose-us h5{

    font-weight:600;

    margin-bottom:15px;

}

#why-choose-us p{

    color:#666;

    line-height:1.7;

}

/* ===================================
   SECTION TITLES
=================================== */

#services h2,
#why-choose-us h2{

    font-size:40px;

    font-weight:700;

}

#services .badge,
#why-choose-us .badge{

    font-size:14px;

    letter-spacing:1px;

}

/* ===================================
   ICON COLORS
=================================== */

.text-primary{

    color:#0F4C81 !important;

}

.text-success{

    color:#28a745 !important;

}

.text-warning{

    color:#ffc107 !important;

}

.text-danger{

    color:#dc3545 !important;

}

.text-info{

    color:#17a2b8 !important;

}

.text-secondary{

    color:#6c757d !important;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

#services,
#why-choose-us{

text-align:center;

}

}

@media(max-width:768px){

#services h2,
#why-choose-us h2{

font-size:30px;

}

#services .service-card,
#why-choose-us .card{

padding:25px;

}

#services i,
#why-choose-us i{

font-size:2.5rem !important;

}

}/* =====================================================
   HS ACCOUNT WEBSITE
   STYLE.CSS - PART 4
   Working Process | Testimonials | FAQ
=====================================================*/

/* ===================================
   WORKING PROCESS
=================================== */

#process{

    background:#f8f9fa;

}

#process .card{

    border-radius:15px;

    transition:.35s;

    overflow:hidden;

}

#process .card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

#process .badge{

    width:55px;

    height:55px;

    display:inline-flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

}

#process i{

    transition:.3s;

}

#process .card:hover i{

    transform:scale(1.15);

}

#process h5{

    margin:20px 0 15px;

    font-weight:600;

}

#process p{

    color:#666;

    line-height:1.8;

}


/* ===================================
   TESTIMONIALS
=================================== */

#testimonials{

    background:#ffffff;

}

#testimonials .card{

    border-radius:15px;

    transition:.35s;

}

#testimonials .card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 40px rgba(0,0,0,.12);

}

#testimonials .text-warning{

    font-size:24px;

    letter-spacing:3px;

}

#testimonials h5{

    font-weight:600;

}

#testimonials small{

    color:#888;

}

#testimonials p{

    color:#666;

    line-height:1.8;

}


/* ===================================
   FAQ
=================================== */

#faq{

    background:#f8f9fa;

}

#faq .accordion-item{

    border:none;

    border-radius:12px;

    overflow:hidden;

    margin-bottom:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.06);

}

#faq .accordion-button{

    font-weight:600;

    padding:20px;

    background:#ffffff;

}

#faq .accordion-button:not(.collapsed){

    background:#0F4C81;

    color:#ffffff;

}

#faq .accordion-button:focus{

    box-shadow:none;

}

#faq .accordion-body{

    padding:20px;

    color:#666;

    line-height:1.8;

}


/* ===================================
   CTA BUTTONS
=================================== */

.cta-buttons{

    margin-top:40px;

}

.cta-buttons .btn{

    margin:8px;

}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

#process,
#testimonials,
#faq{

text-align:center;

}

}

@media(max-width:768px){

#process h2,
#testimonials h2,
#faq h2{

font-size:30px;

}

#process .card,
#testimonials .card{

padding:20px;

}

#faq .accordion-button{

font-size:16px;

padding:18px;

}

#faq .accordion-body{

font-size:15px;

}

}/* =====================================================
   HS ACCOUNT WEBSITE
   STYLE.CSS - PART 5
   CONTACT SECTION & FOOTER
=====================================================*/

/* ===================================
   CONTACT SECTION
=================================== */

#contact{

    background:#ffffff;

}

#contact .card{

    border:none;

    border-radius:15px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

#contact h2{

    font-size:40px;

    font-weight:700;

}

#contact h3{

    font-size:28px;

    margin-bottom:20px;

}

#contact p{

    color:#666;

    line-height:1.8;

}

#contact i{

    color:#0F4C81;

    margin-right:10px;

}

/* ==========================
FORM
========================== */

form .form-control,
form .form-select{

    height:55px;

    border-radius:10px;

    border:1px solid #ddd;

    padding:12px 15px;

    box-shadow:none;

    transition:.3s;

}

form textarea.form-control{

    height:auto;

    min-height:150px;

    resize:vertical;

}

form .form-control:focus,
form .form-select:focus{

    border-color:#0F4C81;

    box-shadow:0 0 0 .2rem rgba(15,76,129,.15);

}

form button{

    padding:14px 35px;

    border-radius:50px;

    font-weight:600;

}

/* ==========================
GOOGLE MAP
========================== */

.ratio iframe{

    border:0;

    border-radius:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* ===================================
   FOOTER
=================================== */

footer{

    background:#212529;

    color:#ffffff;

}

footer h4,
footer h5{

    color:#ffffff;

    margin-bottom:20px;

}

footer p{

    color:#d0d0d0;

}

footer ul{

    list-style:none;

    padding-left:0;

}

footer ul li{

    margin-bottom:12px;

}

footer ul li a{

    color:#d0d0d0;

    text-decoration:none;

    transition:.3s;

}

footer ul li a:hover{

    color:#ffffff;

    padding-left:6px;

}

footer hr{

    border-color:rgba(255,255,255,.15);

}

footer .text-center p{

    margin-bottom:0;

}

/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px){

#contact{

text-align:center;

}

#contact .card{

margin-bottom:25px;

}

}

@media(max-width:768px){

#contact h2{

font-size:30px;

}

#contact h3{

font-size:24px;

}

form .btn{

width:100%;

}

footer{

text-align:center;

}

footer ul{

margin-bottom:25px;

}

}/* =====================================================
   HS ACCOUNT WEBSITE
   STYLE.CSS - PART 6
   Floating Buttons | Back To Top | Animations
=====================================================*/

/* ===================================
   FLOATING WHATSAPP BUTTON
=================================== */

.whatsapp-btn{

    position:fixed;

    right:20px;

    bottom:90px;

    width:60px;

    height:60px;

    background:#25D366;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.whatsapp-btn:hover{

    background:#1ebe5d;

    color:#fff;

    transform:scale(1.1);

}


/* ===================================
   FLOATING CALL BUTTON
=================================== */

.call-btn{

    position:fixed;

    right:20px;

    bottom:20px;

    width:60px;

    height:60px;

    background:#0F4C81;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    z-index:999;

    transition:.3s;

}

.call-btn:hover{

    background:#0b3b63;

    color:#fff;

    transform:scale(1.1);

}


/* ===================================
   BACK TO TOP BUTTON
=================================== */

#backToTop{

    position:fixed;

    left:20px;

    bottom:20px;

    width:55px;

    height:55px;

    background:#212529;

    color:#fff;

    border:none;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:999;

}

#backToTop.show{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    background:#0F4C81;

}


/* ===================================
   HOVER EFFECTS
=================================== */

.card{

    transition:all .35s ease;

}

.card:hover{

    transform:translateY(-8px);

}

.btn{

    transition:all .3s ease;

}

.btn:hover{

    transform:translateY(-2px);

}


/* ===================================
   SCROLL ANIMATION
=================================== */

.fade-up{

    opacity:0;

    transform:translateY(30px);

    transition:all .8s ease;

}

.fade-up.active{

    opacity:1;

    transform:translateY(0);

}


/* ===================================
   SMOOTH SCROLL
=================================== */

html{

    scroll-behavior:smooth;

}


/* ===================================
   CUSTOM SCROLLBAR
=================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f1f1f1;

}

::-webkit-scrollbar-thumb{

    background:#0F4C81;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#0b3b63;

}


/* ===================================
   TEXT SELECTION
=================================== */

::selection{

    background:#0F4C81;

    color:#fff;

}


/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:768px){

.whatsapp-btn{

width:55px;

height:55px;

font-size:26px;

right:15px;

bottom:80px;

}

.call-btn{

width:55px;

height:55px;

font-size:22px;

right:15px;

bottom:15px;

}

#backToTop{

left:15px;

bottom:15px;

width:50px;

height:50px;

}

}


/* ===================================
   END OF STYLE.CSS
=================================== */